@import url("https://fonts.googleapis.com/css2?family=Dosis");

* {
    font-family: "Dosis", sans-serif;
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
}

body:not(.admin-body) {
    font-family: Arial, Helvetica, sans-serif;
    background: radial-gradient(rgb(0, 0, 0) 15%, transparent 16%) 0px 0px /
            16px 16px fixed,
        radial-gradient(rgb(0, 0, 0) 15%, transparent 16%) 8px 8px,
        radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%) 0px 1px,
        radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%) 8px 9px
            rgb(40, 40, 40);
    color: #0a0a0a;
    margin: 0;
    background-size: 16px 16px;
    background-attachment: fixed;
    line-height: inherit;
}

.navbar-loca {
    border-radius: 0;
    transition: background-color 0.3s ease, padding 0.3s ease, top 0.3s ease;
    background-color: transparent;
    position: fixed;
    width: 100%;
    height: 84px !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

/* Ajuste do navbar quando há banner - será feito via JavaScript */

.navbar-loca.scrolled {
    background-color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body:not(.admin-body) {
    padding-top: 84px;
}

@media (max-width: 991.98px) {
    .navbar-loca {
        padding-top: 8px;
        padding-bottom: 8px;
        height: 84px;
    }

    .mobile-nav-bar {
        height: 100%;
    }

    .mobile-menu-wrapper {
        position: fixed;
        top: 70px;
        z-index: 1029;
    }
}

@media (min-width: 992px) {
    .mobile-menu-wrapper {
        right: 2rem;
        left: auto;
        width: 300px;
        top: 70px;
    }
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 1.2rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #f58220;
}

.navbar-loca .nav-link i {
    margin-right: 6px;
}

.btn-loca-orange {
    background-color: #f58220;
    border-color: #f58220;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 2rem;
}

.btn-loca-orange:hover,
.btn-loca-orange:focus {
    background-color: #d9701c;
    border-color: #d9701c;
    color: #ffffff;
}

.text-loca-orange {
    color: #f58220 !important;
}

.bg-loca-orange {
    background-color: #f58220 !important;
}

.cart-badge {
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #1a1a1a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
    top: -5px !important;
    right: -5px !important;
}

.mobile-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent; /* FUNDO TRANSPARENTE APLICADO */
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #d8601c;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    padding: 0;
    transition: all 0.2s ease-in-out;
}

/* REGRA DE 'GAP' MOVIDA PARA FORA DO @media (APLICA EM TUDO) */
.nav-icons-group {
    gap: 0.2rem;
}

.nav-icons-group button.mobile-nav-icon {
    margin-left: 0.75rem;
}

@media (min-width: 992px) {
    .mobile-nav-bar {
        justify-content: flex-end !important;
        padding-right: 2rem !important;
    }
    
    .mobile-nav-bar > div:first-child {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    
    .mobile-nav-bar > div:last-child {
        margin-left: 0 !important;
    }

    /* REGRA DE 'GAP' REMOVIDA DAQUI */

    

    .mobile-nav-user-name {
        font-size: 1.2rem;
        margin-left: 1rem;
    }

    .mobile-nav-user-name {
        font-size: 1.2rem;
        margin-left: 1rem;
    }
}

.mobile-nav-img-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.mobile-nav-icon.whatsapp-icon {
    background-color: #25d366;
    color: #ffffff;
    font-size: 1.5rem !important;
    margin-left: 2rem;
}

@media (max-width: 991.98px) {
    .mobile-nav-icon.whatsapp-icon {
        margin-left: 0 !important;
    }
}

.mobile-nav-icon:hover {
    color: #000000;
    opacity: 0.85;
    transform: scale(1.05);
}

.mobile-nav-icon.dropdown-toggle::after {
    display: none;
}

.user-dropdown-menu {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #f58220;
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    margin-top: 0.5rem;
}

.user-dropdown-menu .dropdown-item {
    color: #ffffff;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.user-dropdown-menu .dropdown-item:hover {
    background: rgba(245, 130, 32, 0.2);
    color: #f58220;
}

.user-dropdown-menu .dropdown-item.text-danger {
    color: #ef4444 !important;
}

.user-dropdown-menu .dropdown-item.text-danger:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444 !important;
}

.user-dropdown-menu .dropdown-divider {
    border-color: #444;
    margin: 0.5rem 0;
}

.user-dropdown-menu .dropdown-item i {
    font-size: 1rem;
    width: 20px;
}

.header-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .header-logo {
        max-height: 35px;
    }
}

.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.navbar-loca .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (max-width: 991.98px) {
    .navbar-loca .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .mobile-nav-bar {
        justify-content: space-between !important;
        align-items: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
    }
    
    .mobile-nav-bar > div:first-child {
        margin-right: 0 !important;
        margin-left: 0 !important;
        flex-shrink: 0;
        padding-left: 0;
    }
    
    .mobile-nav-bar > div:last-child {
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-shrink: 0;
        padding-right: 0;
    }
    
    .mobile-nav-user-name {
        text-decoration: underline !important;
    }
    
    .mobile-nav-user-name.dropdown-toggle {
        text-decoration: underline !important;
    }
    
    .mobile-nav-bar > div:last-child .mobile-nav-user-name[style*="visibility: hidden"] {
        margin: 0 !important;
        padding: 0 !important;
    }
}

.mobile-nav-user-name {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-user-name:hover {
    color: #f58220;
}

.mobile-nav-user-name.dropdown-toggle {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-user-name.dropdown-toggle:hover {
    color: #f58220;
}

.mobile-nav-user-name.dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: 0.2em;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-bottom: 0;
    border-left: 0.35em solid transparent;
}

.mobile-nav-user-name.auth-link {
    color: #f58220;
    font-weight: 500;
}

.mobile-nav-user-name.auth-link:hover {
    color: #d9701c;
}

.btn-auth-header {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #f58220 0%, #d9701c 100%);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-auth-header:hover {
    background: linear-gradient(135deg, #d9701c 0%, #c05f0f 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-auth-header:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(245, 130, 32, 0.3);
}

.btn-auth-header i {
    font-size: 1.1rem;
}

.mobile-nav-icon.whatsapp-icon:hover {
    color: #ffffff;
    opacity: 0.85;
}

.mobile-menu-wrapper {
    position: fixed;
    top: 84px;
    right: 1rem;
    left: auto;
    z-index: 1029;
    width: auto;
    min-width: 250px;
    max-width: 300px;
}

.mobile-links-list .nav-link {
    color: #ffffff;
    padding: 12px 15px;
    font-size: 1.1rem;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.mobile-links-list .nav-link:hover,
.mobile-links-list .nav-link:focus {
    color: #f58220;
    background-color: rgba(245, 130, 32, 0.1);
    padding-left: 20px;
}

.mobile-links-list .nav-item:last-child .nav-link {
    border-bottom: none;
}

@media (min-width: 992px) {
    .mobile-links-list {
        max-width: 300px;
        margin-left: auto;
    }

    .mobile-links-list .nav-link {
        font-size: 1.2rem;
        text-align: left;
    }

    .mobile-links-list .nav-link i {
        margin-right: 10px;
    }
}

.carousel-caption {
    bottom: auto;
    right: auto;
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
    text-align: left;
    display: block !important;
}

.carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.carousel-caption p {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: 2rem;
}
.carousel-control-next {
    right: 2rem;
}

/* SETAS MOVIDAS PARA O RODAPÉ */
#heroCarousel .carousel-control-next,
#heroCarousel .carousel-control-prev {
    top: auto;
    bottom: 5rem;
    z-index: 3;
}

/* INDICADORES MOVIDOS PARA FORA/ABAIXO */
#heroCarousel .carousel-indicators {
    position: static;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 1rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-caption {
        left: 5%;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
    }

    .carousel-caption h2 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}

.carousel-item img {
    object-fit: cover;
    height: 450px;
    border-radius: 3px;
}

.speech-bubble {
    position: relative;
    background: #ff0000;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 800;
    max-width: 180px;
}

.speech-bubble::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #ff0000;
}

.about-header {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.about-header p {
    font-size: 1.5rem !important;
}

.about-header h1 {
    color: #ffffff;
    font-weight: 700;
    font-size: 2.5rem;
}

.about-header p {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0.5rem auto 0;
}

/* Estilos para os cards da página "Sobre" */
.about-card {
    display: flex;
    align-items: flex-start;
    /* Este é o fundo escuro e semi-transparente que você pediu */
    background-color: rgba(0, 0, 0, 0.35);
    /* Esta é a borda laranja */
    border: 1px solid #f58220;
    border-radius: 0.5rem; /* 8px */
    padding: 1.5rem; /* 24px */
    width: 100%; /* Garante que o card ocupe o espaço da coluna */
    transition: all 0.3s ease;
}

.about-card:hover {
    background-color: rgba(0, 0, 0, 0.5);
    /* Efeito sutil de brilho laranja no hover */
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.15);
}

.about-card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1a1a1a; /* Fundo sólido escuro para o ícone */
    border: 2px solid #f58220; /* Borda laranja no ícone */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f58220; /* Cor laranja para o ícone */
    font-size: 1.5rem; /* 24px */
    margin-right: 1rem; /* 16px */
}

.about-card-body {
    flex-grow: 1;
}

.about-card-body section p {
    margin-bottom: 20px; /* Aumenta o espaçamento entre os parágrafos */
    text-align: justify;
    line-height: 1.7; /* Melhora a legibilidade */
    color: #c0c0c0; /* Cor do texto principal (cinza claro) */
}

/* Estilo para os títulos principais (ex: 1. Do Objeto) */
.about-card-body section h2 {
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 25px; /* Espaçamento abaixo do título */
    border-bottom: 1px solid #444; /* Linha sutil de separação */
    padding-bottom: 10px;
    font-size: 1.6rem;
    font-weight: 600;
}

/* Estilo para os números dos sub-itens (ex: 2.1) */
.about-card-body .sub-item {
    color: #8f8f8f; /* Cor mais suave para o número */
    font-weight: 600; /* Deixa o número em negrito */
    margin-right: 10px; /* Espaçamento entre o número e o texto */
}

/* Caixa de informações da empresa */
.about-card-body .company-info {
    background-color: #2c2c2c; /* Fundo cinza escuro */
    border-left: 5px solid #555;
    padding: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #ccc;
    border-radius: 4px;
}

/* Caixa de aviso de aceite */
.about-card-body .acceptance-warning {
    font-weight: bold;
    color: #ffc9c9; /* Texto vermelho claro */
    background-color: #4d1a1a; /* Fundo vermelho escuro */
    border: 1px solid #8b2c2c;
    padding: 20px;
    border-radius: 4px;
}

.about-card-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem; /* 20px */
    margin-bottom: 0.5rem;
}

.about-card-body p,
.about-card-body li {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.6;
}

.about-card-body p {
    margin-bottom: 0;
}

.about-card-body ul {
    color: #cccccc;
    padding-left: 1.2rem;
    margin: 0.5rem 0 0 0;
    list-style-position: outside;
}

.cta-section {
    text-align: center;
    padding: 3.5rem 1.5rem;
    border-radius: 0.5rem; /* 8px */

    /*
      MUDANÇA 1: Cor de fundo base.
      Trocado de #2a221b (marrom) para #1c1c1c (cinza bem escuro/quase preto),
      para combinar com o fundo das outras seções da sua imagem.
    */
    background-color: #1c1c1c;

    /*
      As imagens de fundo. A ordem importa!
      1. O "brilho" laranja por cima.
      2. O padrão de pontos por baixo.
    */
    background-image:
        /*
          MUDANÇA 2: O gradiente de "brilho" laranja.
          Ajustei as opacidades para criar um brilho mais sutil
          que se dissipa mais suavemente, como na imagem.
        */ linear-gradient(
            to right,
            rgba(245, 130, 32, 0.2) 0%,
            /* 20% de opacidade na esquerda */ rgba(245, 130, 32, 0.05) 50%,
            /* 5% de opacidade no meio */ transparent 70%
                /* 0% de opacidade em 70% da largura */
        ),
        /* Camada 2: O padrão de pontos (este continua igual) */
            radial-gradient(rgba(245, 130, 32, 0.1) 1px, transparent 1px);

    /* Os tamanhos de cada camada de fundo (na mesma ordem) */
    background-size: cover, /* O gradiente cobre tudo */ 12px 12px; /* O padrão de pontos se repete */
}

.cta-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: #cccccc;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Novo estilo de botão "vazado" (outline)
  Ele usa as mesmas cores e padding do seu .btn-loca-orange
  para manter a consistência.
*/
.btn-loca-outline-orange {
    background-color: transparent;
    border: 1px solid #f58220; /* Cor da borda */
    color: #f58220; /* Cor do texto */
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

/* Efeito :hover que imita o seu botão laranja principal 
  (cor de fundo e texto do seu .btn-loca-orange:hover)
*/
.btn-loca-outline-orange:hover,
.btn-loca-outline-orange:focus {
    background-color: #d9701c;
    border-color: #d9701c;
    color: #ffffff;
}

.welcome-section h2,
.welcome-section h3,
.welcome-section p {
    color: #ffffff;
}

.loca-section-logo {
    max-width: 250px;
    margin-top: 1rem;
}

.loca-card {
    display: block;
    max-width: 170px;
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    background: url("../img/bg-card.webp");
    background-size: 300px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .loca-card {
        max-width: 180px;
    }
}

@media (min-width: 992px) {
    .loca-card {
        max-width: 180px;
    }
}

.loca-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.loca-card-image-area {
    height: 256px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.loca-card-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.loca-card-label {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 0.75rem 0.5rem;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loca-card-label span {
    font-size: 0.875rem;
    line-height: 1.25;
    font-weight: 500;
}

/*
|--------------------------------------------------------------------------
| Estilos da Página "Como Alugar" (COM TRANSPARÊNCIA)
|--------------------------------------------------------------------------
*/

/* Cards de Passos (Horizontais) */
.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%; /* Para alinhar altura na mesma linha (com d-flex no col) */

    /* ESTILO CORRIGIDO: Fundo transparente e borda laranja */
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid #f58220;

    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

/* ESTILO CORRIGIDO: Hover correspondente */
.step-card:hover {
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.15);
}

.step-card-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    /* Garante que o título tenha espaço para crescer */
    min-height: 44px;
    display: flex;
    align-items: center;
}

.step-card p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Card de "Detalhes do Processo" (O card grande) */
.process-details-card {
    /* ESTILO CORRIGIDO: Fundo transparente e borda laranja */
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid #f58220;

    border-radius: 0.5rem;
    padding: 2rem 2.5rem;
}

/* Ajuste de padding para telas menores */
@media (max-width: 768px) {
    .process-details-card {
        padding: 1.5rem;
    }
}

.process-details-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #444; /* Linha divisória sutil */
    padding-bottom: 1rem;
}

/* Cada item da lista de detalhes (ícone + texto) */
.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem; /* Espaçamento entre os itens */
}

.process-item:last-child {
    margin-bottom: 0;
}

/* Reutiliza o estilo de ícone do about-card */
.process-item .about-card-icon {
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.process-item-body {
    flex-grow: 1;
}

/* Reutiliza estilos de texto e lista do about-card */
.process-item-body .about-card-title {
    margin-top: 0;
}

.process-item-body p,
.process-item-body li {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.process-item-body ul {
    color: #cccccc;
    padding-left: 1.2rem;
    margin: 0.5rem 0 0 0;
    list-style-position: outside;
}

.loca-footer {
    background-color: #1a1a1a;
    color: #cccccc;

    padding-top: 4rem;
    padding-bottom: 2rem;
    margin-top: 3rem;
    background-image: none;
}

.loca-footer h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.slogan-text {
    font-size: 0.875rem;
    line-height: 1.6;
}

.loca-footer-links li {
    color: #ffffff;
    font-size: 1.1rem;
    list-style-type: none;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
    margin-left: -30px;
}

.loca-footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 2.2;
    transition: color 0.2s;
}

.loca-footer-links a:hover {
    color: #f58220;
    text-decoration: underline;
}

.loca-footer-contact li {
    color: #cccccc;
    font-size: 0.875rem;
    line-height: 2.2;
    display: flex;
    align-items: flex-start;
}

.loca-footer-contact i {
    color: #f58220;
    margin-right: 12px;
    margin-top: 5px;
    font-size: 1rem;
}

.loca-social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #444;
    border-radius: 50%;
    color: #cccccc;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s;
}

.loca-social-icons .social-icon:hover {
    color: #ffffff;
    background-color: #f58220;
    border-color: #f58220;
}

.footer-divider {
    border-top: 1px solid #444;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #888;
}

.footer-copyright p {
    margin-bottom: 0.5rem;
}

.footer-copyright a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
}

.footer-copyright a:hover {
    color: #f58220;
    text-decoration: underline;
}

.footer-copyright span {
    color: #555;
}

/*
|--------------------------------------------------------------------------
| Estilos da Página de Autenticação (Login/Registro)
|--------------------------------------------------------------------------
*/

.auth-card {
    background-color: #1a1a1a;
    border: 1px solid #f58220;
    border-radius: 0.5rem;
    padding: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Título - Força cor branca sobrescrevendo Bootstrap */
.auth-card h2.auth-title {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 400;
}

/* Labels dos formulários */
.auth-label,
.auth-card .form-label {
    color: #ffffff !important;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Inputs */
.auth-input,
.auth-card .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #444;
    color: #ffffff !important;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.auth-input:focus,
.auth-card .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #f58220;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(245, 130, 32, 0.25);
    outline: none;
}

.auth-input::placeholder,
.auth-card .form-control::placeholder {
    color: #aaa;
}

.auth-input.is-invalid,
.auth-card .form-control.is-invalid {
    border-color: #dc3545;
}

.auth-card .invalid-feedback {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Checkbox */
.auth-checkbox-label,
.auth-card .form-check-label {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 400;
}

.auth-checkbox,
.auth-card .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #444;
}

.auth-checkbox:checked,
.auth-card .form-check-input:checked {
    background-color: #f58220;
    border-color: #f58220;
}

.auth-checkbox:focus,
.auth-card .form-check-input:focus {
    border-color: #f58220;
    box-shadow: 0 0 0 0.2rem rgba(245, 130, 32, 0.25);
}

/* Links */
.auth-link {
    color: #f58220;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #d9701c;
    text-decoration: underline;
}

/* Divisor */
.auth-divider {
    border-top: 1px solid #444;
    margin: 1.5rem 0;
    opacity: 0.5;
}

/* Texto do footer */
.auth-footer-text {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Alerts */
.auth-card .alert {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.auth-card .alert-danger {
    color: #ff6b6b;
    border-color: #dc3545;
}

.auth-card .alert-success {
    color: #51cf66;
    border-color: #51cf66;
}

.auth-card .alert ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.auth-card .alert li {
    color: #ff6b6b;
    font-size: 0.9rem;
}

/* Tabs de Registro */
.register-type-tabs {
    border-bottom: 1px solid #444;
    margin-bottom: 2rem;
}

.register-type-tabs .nav-link {
    background-color: transparent;
    border: none;
    color: #cccccc;
    border-radius: 0;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.register-type-tabs .nav-link:hover {
    color: #f58220;
    background-color: rgba(245, 130, 32, 0.1);
}

.register-type-tabs .nav-link.active {
    color: #f58220;
    background-color: transparent;
    border-bottom: 2px solid #f58220;
}

.tab-content {
    margin-top: 1rem;
}

/* Select nos formulários */
.auth-card select.auth-input,
.auth-card select.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #444;
    color: #ffffff !important;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.auth-card select.auth-input:focus,
.auth-card select.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #f58220;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(245, 130, 32, 0.25);
    outline: none;
}

.auth-card select.auth-input option,
.auth-card select.form-control option {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Inputs de arquivo */
.auth-card input[type="file"] {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #444;
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 0.375rem;
}

.auth-card input[type="file"]:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #f58220;
    box-shadow: 0 0 0 0.2rem rgba(245, 130, 32, 0.25);
    outline: none;
}

.auth-card .form-label.small {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* Seções do formulário */
.form-section {
    border-left: 3px solid #f58220;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.form-section-title {
    color: #f58220;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.form-section-title i {
    font-size: 1.2rem;
}

/* Indicador de campo obrigatório */
.auth-label .text-danger {
    font-size: 0.875rem;
    margin-left: 2px;
}

/* Validação visual */
.auth-input.is-valid {
    border-color: #51cf66 !important;
}

.auth-input.is-invalid {
    border-color: #dc3545 !important;
}

/* Campo de cidade principal (readonly) */
.auth-input[readonly] {
    background-color: rgba(245, 130, 32, 0.1) !important;
    border-color: rgba(245, 130, 32, 0.3) !important;
    color: #f58220 !important;
    cursor: not-allowed !important;
    opacity: 0.9;
}

.auth-input[readonly]:focus {
    background-color: rgba(245, 130, 32, 0.15) !important;
    border-color: rgba(245, 130, 32, 0.4) !important;
    box-shadow: 0 0 0 0.2rem rgba(245, 130, 32, 0.15) !important;
}

/* Texto de ajuda */
.text-muted {
    color: #888 !important;
    font-size: 0.8rem;
}

/* Cards de endereço */
.address-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.address-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #f58220;
}

.address-card p {
    margin-bottom: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.address-card .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

/* Modal customizado */
.modal-content.auth-card {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #f58220;
    border-radius: 12px;
}

.modal-header {
    border-bottom: 1px solid #444;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
}

.address-preview {
    border: 1px solid #444;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Modal de Exclusão - Minimalista */
.delete-modal-dialog {
    max-width: 400px;
    width: 90%;
}

.delete-modal-content {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.delete-modal-body {
    padding: 2.5rem 2rem;
}

.delete-confirm-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.btn-cancel-modal {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-cancel-modal:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-delete-modal {
    background: #dc3545;
    border: 1px solid #dc3545;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-delete-modal:hover {
    background: #bb2d3b;
    border-color: #bb2d3b;
    color: #ffffff;
}

/* Responsivo - Modal de Exclusão */
@media (max-width: 576px) {
    .delete-modal-dialog {
        max-width: 100%;
        width: 95%;
        margin: 1rem auto;
    }
    
    .delete-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .delete-confirm-text {
        font-size: 0.95rem;
    }
    
    .btn-cancel-modal,
    .btn-delete-modal {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        flex: 1;
        min-width: 100px;
    }
    
    .d-flex.gap-2 {
        gap: 0.75rem !important;
    }
}

.modal-body .row {
    margin-left: 0;
    margin-right: 0;
}

/* Banner de Cadastro Incompleto */
.incomplete-profile-banner {
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.25) 0%, rgba(245, 130, 32, 0.15) 100%);
    border-bottom: 2px solid rgba(245, 130, 32, 0.5);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.incomplete-profile-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.banner-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 130, 32, 0.3);
    border-radius: 50%;
    color: #f58220;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(245, 130, 32, 0.3);
}

.banner-content {
    flex: 1;
    min-width: 0;
}

.banner-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.3px;
}

.banner-steps {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #e0e0e0;
    margin-top: 0.2rem;
}

.step-item {
    display: inline-flex;
    align-items: center;
}

.step-item.step-completed {
    color: #28a745;
    font-weight: 500;
}

.step-item.step-completed i {
    color: #28a745;
}

.step-item.step-pending {
    color: #ffc107;
    font-weight: 500;
}

.step-item.step-pending i {
    color: #ffc107;
}

.step-separator {
    color: #666;
    margin: 0 0.25rem;
}

.banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-banner-action {
    background: #f58220;
    border: 1px solid #f58220;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(245, 130, 32, 0.3);
}

.btn-banner-action:hover {
    background: #d9701c;
    border-color: #d9701c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.4);
}

.btn-banner-close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.btn-banner-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: rotate(90deg);
}

/* Banner na página de conta */
.incomplete-profile-banner-card {
    background: rgba(245, 130, 32, 0.1);
    border: 1px solid rgba(245, 130, 32, 0.3);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
}

.banner-icon-small {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 130, 32, 0.2);
    border-radius: 50%;
    color: #f58220;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.banner-title-small {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.banner-steps-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #cccccc;
}

.step-item-small {
    display: inline-flex;
    align-items: center;
}

.step-item-small.step-completed {
    color: #28a745;
}

.step-item-small.step-pending {
    color: #ffc107;
}

.step-separator-small {
    color: #666;
    margin: 0 0.25rem;
}

.banner-actions-small {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-banner-action-small {
    background: #f58220;
    border: 1px solid #f58220;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-banner-action-small:hover {
    background: #d9701c;
    border-color: #d9701c;
    color: #ffffff;
}

/* Responsivo */
@media (max-width: 768px) {
    .incomplete-profile-banner {
        padding: 0.75rem 0;
    }
    
    .incomplete-profile-banner .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .banner-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        flex-shrink: 0;
        margin-top: 0.1rem;
    }
    
    .banner-title {
        font-size: 0.875rem;
        line-height: 1.4;
        font-weight: 600;
        margin-bottom: 0.5rem !important;
    }
    
    .banner-steps {
        font-size: 0.75rem;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 0;
        line-height: 1.5;
    }
    
    .step-item {
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
    }
    
    .step-separator {
        margin: 0 0.3rem;
        color: rgba(255, 255, 255, 0.4);
    }
    
    .banner-actions {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 0.5rem;
        justify-content: flex-start;
    }
    
    .btn-banner-action {
        padding: 0.45rem 0.875rem;
        font-size: 0.8rem;
        flex: 1;
        min-width: 0;
        text-align: center;
        border-radius: 6px;
        font-weight: 600;
    }
    
    .banner-content {
        padding-right: 0;
    }
    
    .incomplete-profile-banner-card {
        padding: 1rem;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 576px) {
    .incomplete-profile-banner {
        padding: 0.7rem 0;
    }
    
    .incomplete-profile-banner .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .banner-icon {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }
    
    .banner-title {
        font-size: 0.8rem;
        margin-bottom: 0.4rem !important;
    }
    
    .banner-steps {
        font-size: 0.7rem;
        gap: 0.4rem;
    }
    
    .btn-banner-action {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
}

.modal-body .row > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.modal-body .row + .row {
    margin-top: 1rem;
}

.modal-body .form-label {
    margin-bottom: 0.5rem;
    margin-top: 0;
    display: block;
}

.modal-body .form-control,
.modal-body select.form-control {
    width: 100%;
    margin-bottom: 0;
}

/* Toast Moderno - Estilo Next.js */
.toast-container-modern {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast-modern {
    position: relative;
    min-width: 320px;
    max-width: 420px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    overflow: hidden;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-modern.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-modern.hide {
    opacity: 0;
    transform: translateX(400px);
}

.toast-modern-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    position: relative;
    z-index: 2;
}

.toast-modern-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.toast-modern.toast-success .toast-modern-icon {
    color: #10b981;
}

.toast-modern.toast-error .toast-modern-icon {
    color: #ef4444;
}

.toast-modern-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #1f2937;
    font-weight: 400;
}

.toast-modern-message strong {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.toast-modern-message ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.25rem;
    list-style: disc;
}

.toast-modern-message li {
    margin-bottom: 0.25rem;
    font-size: 13px;
}

.toast-modern-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    padding: 0;
    transition: color 0.2s;
    margin-top: 2px;
}

.toast-modern-close:hover {
    color: #1f2937;
}

.toast-modern-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #f58220 0%, #d9701c 100%);
    width: 100%;
    transform-origin: left;
    animation: toast-progress 5s linear forwards;
}

.toast-modern.toast-error .toast-modern-progress {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

@keyframes toast-progress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .toast-container-modern {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .toast-modern {
        min-width: auto;
        max-width: 100%;
    }
    .auth-card {
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .auth-card h2.auth-title {
        font-size: 1.5rem;
    }

    .register-type-tabs .nav-link {
        font-size: 0.875rem;
        padding: 0.5rem;
    }
}

/* Cards de Equipamentos */
.equipment-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid #444 !important;
    border-radius: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.equipment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.2);
    border-color: #f58220 !important;
}

.equipment-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
}

.equipment-placeholder {
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem 0.5rem 0 0;
}

.equipment-placeholder i {
    font-size: 3rem;
    color: #666;
}

.equipment-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.equipment-card .card-text {
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Paginação */
.pagination {
    margin-bottom: 0;
    gap: 0.25rem;
}

.pagination .page-link {
    background-color: #1e1e1e;
    border: 1px solid #555;
    color: #ffffff;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
    border-radius: 0.375rem;
}

.pagination .page-link:hover {
    background-color: rgba(245, 130, 32, 0.3);
    border-color: #f58220;
    color: #ffffff;
    transform: translateY(-1px);
}

.pagination .page-item.active .page-link {
    background-color: #f58220;
    border-color: #f58220;
    color: #ffffff;
    font-weight: 600;
}

.pagination .page-item.disabled .page-link {
    background-color: #0f0f0f;
    border-color: #333;
    color: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 130, 32, 0.25);
    outline: none;
}

/* Informações de texto da paginação */
.pagination-info {
    display: block;
    font-size: 0.875rem;
}

.pagination .showing,
.pagination .results {
    display: none !important;
}

/* Garantir que apenas a lista de paginação seja exibida */
nav .pagination {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Remover espaçamento extra entre elementos */
.pagination .page-item {
    margin: 0;
}

/* Responsividade para equipamentos */
@media (max-width: 1400px) {
    .equipment-card .card-img-top,
    .equipment-placeholder {
        height: 180px;
    }
}

@media (max-width: 1200px) {
    .equipment-card .card-img-top,
    .equipment-placeholder {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .equipment-card .card-img-top,
    .equipment-placeholder {
        height: 200px;
    }
    
    .pagination .page-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.875rem;
    }
}

/* Modal de Subcategorias */
#subcategoriesModal .modal-content {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid #f58220;
}

#subcategoriesModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#subcategoriesModal .modal-title {
    color: #ffffff !important;
}

#subcategoriesModal .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.subcategory-btn {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid #444 !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.subcategory-btn:hover {
    background-color: rgba(245, 130, 32, 0.2) !important;
    border-color: #f58220 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 130, 32, 0.2);
}

.subcategory-btn:active,
.subcategory-btn:focus {
    background-color: rgba(245, 130, 32, 0.3) !important;
    border-color: #f58220 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(245, 130, 32, 0.25);
}

.category-card {
    cursor: pointer;
}

/* Página de Busca */
.search-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.search-sidebar .auth-title {
    color: #ffffff !important;
}

/* Título da página de busca */
main .auth-title {
    color: #ffffff !important;
}

.search-equipment-card {
    background: #1e1e1e !important;
    border: 1px solid #444 !important;
    border-radius: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.search-equipment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 130, 32, 0.4);
    border-color: #f58220 !important;
    background: #252525 !important;
}

.search-equipment-card .card-img-top {
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
}

.search-equipment-placeholder {
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem 0.5rem 0 0;
}

/* Reduzir altura dos cards no mobile */
@media (max-width: 767.98px) {
    .search-equipment-card .card-img-top {
        height: 180px;
    }
    
    .search-equipment-placeholder {
        height: 180px;
    }
    
    .search-equipment-card .card-body {
        padding: 0.75rem !important;
    }
    
    .search-equipment-card .card-title {
        margin-bottom: 0.5rem !important;
        min-height: 2.2rem !important;
    }
    
    .search-equipment-card .card-text {
        margin-bottom: 0.5rem !important;
        min-height: 1.8rem !important;
    }
    
    .search-equipment-card .equipment-price {
        padding: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
}

.search-equipment-placeholder i {
    font-size: 3rem;
    color: #666;
}

.search-equipment-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
}

.search-equipment-card .card-text {
    color: #cccccc !important;
}

.equipment-price {
    padding: 0.75rem;
    background: rgba(245, 130, 32, 0.1);
    border: 1px solid rgba(245, 130, 32, 0.3);
    border-radius: 0.375rem;
}

.equipment-price .price-label {
    display: block;
    font-size: 0.75rem;
    color: #ccc;
    margin-bottom: 0.25rem;
}

.equipment-price .price-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f58220;
}

@media (max-width: 991.98px) {
    .search-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }
}

/* Página de Detalhes do Equipamento */
.equipment-price-detail {
    padding: 0.75rem;
    background: rgba(245, 130, 32, 0.1);
    border: 1px solid rgba(245, 130, 32, 0.3);
    border-radius: 0.375rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.equipment-price-detail:hover {
    background: rgba(245, 130, 32, 0.2);
    border-color: rgba(245, 130, 32, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 130, 32, 0.2);
}

.equipment-price-detail.selected {
    background: rgba(245, 130, 32, 0.3);
    border-color: #f58220;
    border-width: 2px;
    box-shadow: 0 0 0 0.2rem rgba(245, 130, 32, 0.25);
}

.equipment-price-detail:active {
    transform: translateY(0);
}

.price-label-detail {
    display: block;
    font-size: 0.75rem;
    color: #ccc;
    margin-bottom: 0.25rem;
}

.price-value-detail {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f58220;
}

/* Botão Voltar na página de detalhes */
main .btn-outline-secondary {
    background: #1e1e1e !important;
    border-color: #555 !important;
    color: #ffffff !important;
}

main .btn-outline-secondary:hover {
    background: #2a2a2a !important;
    border-color: #666 !important;
    color: #ffffff !important;
}

/* Backoffice Styles */
body.admin-body {
    background: #0a0a0a;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    padding-top: 0 !important;
}

.admin-sidebar {
    background: #1a1a1a;
    border-right: 1px solid #f58220;
    min-height: calc(100vh - 70px);
    padding: 1.5rem 0;
}

.admin-nav-link {
    color: #cccccc;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.admin-nav-link:hover {
    color: #f58220;
    background: rgba(245, 130, 32, 0.1);
    border-left-color: #f58220;
}

.admin-nav-link.active {
    color: #f58220;
    background: rgba(245, 130, 32, 0.15);
    border-left-color: #f58220;
}

.admin-header {
    background: #1a1a1a !important;
    border-bottom: 1px solid #f58220;
    padding: 1rem 0;
    width: 100%;
    position: relative;
    top: 0;
    margin: 0;
}

.admin-header * {
    background: transparent !important;
}

.admin-header h4,
.admin-header a,
.admin-header span,
.admin-header button {
    background: transparent !important;
}

.admin-header .text-white {
    color: #ffffff !important;
}

.admin-header .text-muted {
    color: #888 !important;
}

.admin-header .btn-outline-secondary {
    background: transparent !important;
    border-color: #555 !important;
    color: #ffffff !important;
}

.admin-header .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #666 !important;
    color: #ffffff !important;
}

.admin-body .table {
    background: transparent !important;
    border-color: #444 !important;
    color: #cccccc !important;
}

.admin-body .table thead {
    background: rgba(245, 130, 32, 0.1) !important;
}

.admin-body .table thead th {
    border-bottom: 1px solid #444 !important;
    border-top: none !important;
    color: #f58220 !important;
    font-weight: 600;
    padding: 1rem;
    background: transparent !important;
}

.admin-body .table tbody {
    background: transparent !important;
}

.admin-body .table tbody tr {
    border-bottom: 1px solid #333 !important;
    background: transparent !important;
}

.admin-body .table tbody tr:hover {
    background: rgba(245, 130, 32, 0.05) !important;
}

.admin-body .table td {
    color: #cccccc !important;
    padding: 1rem;
    background: transparent !important;
    border-color: #333 !important;
}

.admin-body .table th {
    padding: 1rem;
    background: transparent !important;
    border-color: #444 !important;
}

.admin-body .table > :not(caption) > * > * {
    border-color: #333 !important;
    background: transparent !important;
}

.admin-body .text-muted {
    color: #888 !important;
}

/* Paginação no backoffice - usa os mesmos estilos da plataforma */
.admin-body .pagination {
    margin-bottom: 0;
    gap: 0.25rem;
}

.admin-body .pagination .page-link {
    background-color: #1e1e1e;
    border: 1px solid #555;
    color: #ffffff;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
    border-radius: 0.375rem;
}

.admin-body .pagination .page-link:hover {
    background-color: rgba(245, 130, 32, 0.3);
    border-color: #f58220;
    color: #ffffff;
    transform: translateY(-1px);
}

.admin-body .pagination .page-item.active .page-link {
    background-color: #f58220;
    border-color: #f58220;
    color: #ffffff;
    font-weight: 600;
}

.admin-body .pagination .page-item.disabled .page-link {
    background-color: #0f0f0f;
    border-color: #333;
    color: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.admin-body .pagination .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 130, 32, 0.25);
    outline: none;
}

/* Garantir que apenas a lista de paginação seja exibida */
.admin-body nav .pagination {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Remover espaçamento extra entre elementos */
.admin-body .pagination .page-item {
    margin: 0;
}

/* Alerts no backoffice */
.admin-body .alert {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid;
    border-radius: 0.375rem;
}

.admin-body .alert-success {
    background: rgba(81, 207, 102, 0.1) !important;
    border-color: #51cf66 !important;
    color: #51cf66 !important;
}

.admin-body .alert-danger {
    background: rgba(220, 53, 69, 0.1) !important;
    border-color: #dc3545 !important;
    color: #ff6b6b !important;
}

.admin-body .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Formulários no backoffice */
.admin-body .form-control,
.admin-body .form-select {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #444 !important;
    color: #ffffff !important;
}

.admin-body .form-control:focus,
.admin-body .form-select:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #f58220 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(245, 130, 32, 0.25) !important;
}

.admin-body .form-control::placeholder {
    color: #aaa !important;
}

.admin-body .form-select option {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

/* Badges no backoffice */
.admin-body .badge {
    padding: 0.35em 0.65em;
    font-weight: 500;
}

/* Botões no backoffice */
.admin-body .btn-outline-primary {
    background: transparent !important;
    border-color: #0d6efd !important;
    color: #0d6efd !important;
}

.admin-body .btn-outline-primary:hover {
    background: rgba(13, 110, 253, 0.2) !important;
    border-color: #0d6efd !important;
    color: #0d6efd !important;
}

.admin-body .btn-outline-success {
    background: transparent !important;
    border-color: #51cf66 !important;
    color: #51cf66 !important;
}

.admin-body .btn-outline-success:hover {
    background: rgba(81, 207, 102, 0.2) !important;
    border-color: #51cf66 !important;
    color: #51cf66 !important;
}

.admin-body .btn-outline-danger {
    background: transparent !important;
    border-color: #dc3545 !important;
    color: #ff6b6b !important;
}

.admin-body .btn-outline-danger:hover {
    background: rgba(220, 53, 69, 0.2) !important;
    border-color: #dc3545 !important;
    color: #ff6b6b !important;
}


/* Responsividade do Backoffice */
@media (max-width: 767.98px) {
    .admin-header {
        padding: 0.75rem 0;
    }

    .admin-header h4 {
        font-size: 1rem !important;
    }

    .admin-header .btn-link {
        text-decoration: none;
        border: none;
        background: transparent;
    }

    .admin-header .btn-link:hover {
        opacity: 0.8;
    }

    .admin-sidebar {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid #f58220;
        margin-bottom: 1rem;
        padding: 1rem 0;
    }

    .admin-nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .admin-body .table {
        font-size: 0.875rem;
    }

    .admin-body .table th,
    .admin-body .table td {
        padding: 0.5rem;
        font-size: 0.875rem;
    }

    .admin-body .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admin-body .btn-group-sm .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }

    .auth-card {
        padding: 1.5rem !important;
    }

    .admin-body .row.g-4 > [class*="col-"] {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .admin-header .d-flex.justify-content-between {
        flex-direction: row;
        align-items: center !important;
        gap: 0.5rem !important;
    }

    .admin-header .gap-2,
    .admin-header .gap-3 {
        gap: 0.5rem !important;
    }

    .admin-body .table th,
    .admin-body .table td {
        padding: 0.4rem 0.3rem;
        font-size: 0.8rem;
    }

    .admin-body .badge {
        font-size: 0.7rem;
        padding: 0.25em 0.5em;
    }

    .auth-card {
        padding: 1rem !important;
    }

    .admin-body .btn {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }

    .admin-body .table th.text-end,
    .admin-body .table td.text-end {
        text-align: center !important;
    }

    .admin-body .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .admin-body .btn-group .btn {
        width: 100%;
        margin-bottom: 0.25rem;
    }

    .admin-body .auth-card img {
        max-width: 100%;
        height: auto;
    }

    .admin-body .table th {
        white-space: nowrap;
    }

    .admin-body .table td {
        word-break: break-word;
    }
}

@media (max-width: 991.98px) {
    .admin-body .row.g-4 > [class*="col-md-"] {
        margin-bottom: 1.5rem;
    }
}

/* Estilos para tabelas nas páginas de conta do usuário */
main .table {
    background: transparent !important;
    border-color: #444 !important;
    color: #cccccc !important;
}

main .table thead {
    background: rgba(245, 130, 32, 0.1) !important;
}

main .table thead th {
    border-bottom: 1px solid #444 !important;
    border-top: none !important;
    color: #f58220 !important;
    font-weight: 600;
    padding: 1rem;
    background: transparent !important;
}

main .table tbody {
    background: transparent !important;
}

main .table tbody tr {
    border-bottom: 1px solid #333 !important;
    background: transparent !important;
}

main .table tbody tr:hover {
    background: rgba(245, 130, 32, 0.05) !important;
}

main .table td {
    color: #cccccc !important;
    padding: 1rem;
    background: transparent !important;
    border-color: #333 !important;
}

main .table th {
    padding: 1rem;
    background: transparent !important;
    border-color: #444 !important;
}

main .table > :not(caption) > * > * {
    border-color: #333 !important;
    background: transparent !important;
}

main .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Carrossel de Equipamentos Mobile */
#equipmentCarousel {
    position: relative;
}

#equipmentCarousel .carousel-control-prev,
#equipmentCarousel .carousel-control-next {
    background-color: rgba(245, 130, 32, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

#equipmentCarousel .carousel-control-prev {
    left: 0.5rem;
}

#equipmentCarousel .carousel-control-next {
    right: 0.5rem;
}

#equipmentCarousel .carousel-control-prev:hover,
#equipmentCarousel .carousel-control-next:hover {
    background-color: rgba(245, 130, 32, 1);
    opacity: 1;
}

#equipmentCarousel .carousel-indicators {
    position: static;
    margin: 1rem 0 0 0;
    justify-content: center;
}

#equipmentCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 0.25rem;
}

#equipmentCarousel .carousel-indicators button.active {
    background-color: #f58220;
}

/* Layout de Fornecedor */
body.supplier-body {
    background: #0a0a0a;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    padding-top: 0 !important;
}

.supplier-header {
    background: #1a1a1a !important;
    border-bottom: 2px solid #f58220;
    padding: 1rem 0;
    width: 100%;
    position: relative;
    top: 0;
    margin: 0;
}

.supplier-header * {
    background: transparent !important;
}

.supplier-sidebar {
    background: #1a1a1a;
    border-right: 1px solid #f58220;
    min-height: calc(100vh - 70px);
    padding: 1.5rem 0;
}

.supplier-nav-link {
    color: #cccccc;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.supplier-nav-link:hover {
    background: rgba(245, 130, 32, 0.1);
    color: #f58220;
    border-left-color: #f58220;
}

.supplier-nav-link.active {
    background: rgba(245, 130, 32, 0.15);
    color: #f58220;
    border-left-color: #f58220;
}

.supplier-body .auth-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2rem;
}

.supplier-body .form-control,
.supplier-body .form-select {
    background: #0f0f0f;
    border-color: #333;
    color: #ffffff;
}

.supplier-body .form-control:focus,
.supplier-body .form-select:focus {
    background: #0f0f0f;
    border-color: #f58220;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(245, 130, 32, 0.25);
}

.supplier-body .form-select option {
    background: #1a1a1a;
    color: #ffffff;
}

.supplier-body .btn-outline-secondary {
    background: transparent;
    border-color: #333;
    color: #cccccc;
}

.supplier-body .btn-outline-secondary:hover {
    background: #333;
    border-color: #333;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .supplier-header .btn-link {
        color: #ffffff !important;
    }
    
    .supplier-sidebar {
        min-height: auto;
    }
}
