/* ===========================
   RESET E VARIÁVEIS
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgb(30, 136, 229);
    --secondary-color: #1A1F3A;
    --light-bg: #F5F6FA;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --border-color: #E8E8E8;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   HEADER / NAVEGAÇÃO
   =========================== */

.header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
}

.logo-icon {
    font-size: 24px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.btn-contato {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-contato:hover {
    background-color: var(--primary-color);
}

/* Esconder elementos específicos por padrão */
.menu-toggle, .mobile-only {
    display: none;
}

/* ===========================
   RESPONSIVIDADE (MOBILE)
   =========================== */

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    /* Botão Hambúrguer */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 101;
    }

    .menu-toggle .bar {
        width: 100%;
        height: 3px;
        background-color: var(--secondary-color);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    /* Animação do Hambúrguer para X */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Menu Mobile */
    .nav {
        position: fixed;
        top: 0;
        right: -100%; /* Escondido fora da tela */
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding: 80px 30px;
        z-index: 100;
    }

    .nav.active {
        right: 0; /* Mostra o menu */
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        font-size: 18px;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-list .btn-contato {
        width: 100%;
        margin-top: 20px;
    }
}

/* ===========================
   POP-UP (ESTILOS BÁSICOS)
   =========================== */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.popup-conteudo {
    background-color: var(--white);
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.fechar {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

.info-contato {
    margin-top: 20px;
}

.item-contato {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}


/* ===========================
   HERO SECTION
   =========================== */

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"%3E%3Cdefs%3E%3ClinearGradient id="grad" x1="0%25" y1="0%25" x2="100%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%232C3E50;stop-opacity:0.9" /%3E%3Cstop offset="100%25" style="stop-color:%23485563;stop-opacity:0.9" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width="1200" height="600" fill="url(%23grad)"%3E%3C/rect%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    opacity: 0.95;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
    animation: slideInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(30, 136, 229, 1);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ===========================
   BOTÕES
   =========================== */

.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: rgb(30, 136, 229);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
/* Container para alinhar os botões lado a lado */
.localizacao-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Nova classe exclusiva para seus links de mapa */
.btn-map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
    /* Estética: Fundo transparente e apenas o texto visível */
    background-color: transparent;
    border: none;
    padding: 8px 12px;
    
    /* Tipografia */
    color: #1d1d1f; /* Ajuste para a cor desejada do texto */
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: sans-serif;
    
    /* Suavidade */
    transition: opacity 0.2s ease;
    cursor: pointer;
}

/* Efeito sutil ao passar o mouse para o usuário saber que é clicável */
.btn-map-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* ESTILOS DO POP-UP */
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.popup-conteudo {
    background-color: white;
    margin: 15% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

.fechar {
    color: #999;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

.fechar:hover {
    color: #333;
}

.popup-conteudo h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.popup-conteudo p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.info-contato {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item-contato {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.icone {
    font-size: 24px;
    margin-right: 15px;
    min-width: 40px;
}

.texto strong {
    display: block;
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
}

.texto span {
    color: #4CA5B0;
    font-size: 18px;
    font-weight: 500;
}

/* ===========================
   SEÇÕES
   =========================== */

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 20px;
}

.link-mapa {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-mapa:hover {
    color: rgb(30, 136, 229);
}

/* ===========================
   DIFERENCIAIS
   =========================== */

.diferenciais {
    background-color: var(--light-bg);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: rgb(30, 136, 229);
}

/* ===========================
   informacoes do predio
   =========================== */
.predio-info p {
    text-align: center; /* Troque justify por center */
    line-height: 1.6; /* Dá um respiro entre as linhas */
    color: #555;      /* Um cinza escuro é mais suave que o preto total */
}


/* ===========================
   LOCALIZAÇÃO
   =========================== */

.localizacao {
    background-color: var(--white);
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.localizacao-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.localizacao-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.localizacao-buttons {
    display: flex;
    gap: 15px;
}

.localizacao-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 350px;
}

.localizacao-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===========================
   FEATURES
   =========================== */

.por-que-escolher {
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
} 
.feature-icon i {
    font-size: 45px; /* Tamanho do ícone */
    color: #2563eb;  /* A cor azul do seu site */
    display: inline-block;
    margin-bottom: 10px;
}

/* ===========================
   FAQ
   =========================== */

.faq {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.ativo {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.faq-item.ativo .faq-question {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.faq-question:hover {
    background-color: var(--light-bg);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.ativo .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.ativo .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
}

.footer-section h5 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.footer-section p {
    text-align: justify;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-image {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    height: 100px;
}

.footer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--primary-color);
}
/* ===========================
   FOOTER - SEÇÃO DE HORÁRIOS ESTILIZADA
   =========================== */

/* Box de horários com fundo semi-transparente */
.horario-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.horario-box:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Cada linha do horário */
.horario-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.horario-line:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.horario-line:first-child {
    padding-top: 0;
}

/* Nome do dia da semana */
.horario-line span:first-child {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}

/* Horário de funcionamento */
.horario-time {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

/* Quando está fechado (Domingo) */
.horario-closed {
    color: rgb(245, 6, 6);
    font-weight: 700;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .horario-box {
        padding: 12px 16px;
    }
    
    .horario-line {
        padding: 8px 0;
    }
    
    .horario-line span:first-child {
        font-size: 13px;
    }
    
    .horario-time {
        font-size: 13px;
    }
}
/* ========== BOTÃO "FALE CONOSCO" ========== */
.btn-fale-conosco {
    background: rgb(212, 24, 24);
    color: var(--dark-bg);
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    letter-spacing: 0.5px;
    /* NOVAS PROPRIEDADES - CENTRALIZAR E ESPAÇAR */
    display: block;
    margin: 10px auto 0 auto;  /* 20px em cima, auto nas laterais, 0 embaixo */
}

.btn-fale-conosco:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    
}

/* ===========================
   PORTAL DE UNIDADES
   =========================== */

.portal-unidades {
    background-color: var(--light-bg);
    padding: 40px 0;
}

.breadcrumb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: rgb(30, 136, 229);
}

.breadcrumb-text {
    color: var(--text-light);
    font-size: 14px;
}

/* ===========================
   FILTROS - VERSÃO CORRIGIDA
   =========================== */

.filtros-container {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.filtro-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 14px;
}

.filtros-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filtros-andar {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.filtro-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background-color: var(--white);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filtro-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filtro-btn.filtro-ativo {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.filtro-dropdown {
    position: relative;
}

#btn-andar {
    padding-right: 35px;
    position: relative;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

#btn-andar[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 180px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: none;
}

.dropdown-menu.open {
    display: block;
}

.dropdown-item {
    width: 100%;
    padding: 12px 20px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* Filtro de tamanho */
.filtro-tamanho {
    margin-left: auto;
}

.select-tamanho {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--white);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    min-width: 160px;
}

.select-tamanho:hover,
.select-tamanho:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .filtros-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .filtros-andar {
        justify-content: space-between;
        width: 100%;
    }
    
    .filtro-btn {
        flex: 1;
        text-align: center;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .filtro-dropdown {
        flex: 1;
    }
    
    #btn-andar {
        width: 100%;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }
    
    .dropdown-menu {
        position: fixed;
        top: auto;
        left: 20px;
        right: 20px;
        width: auto;
        max-width: calc(100% - 40px);
        bottom: auto;
        z-index: 2000;
    }
    
    .filtro-tamanho {
        margin-left: 0;
        width: 100%;
    }
    
    .select-tamanho {
        width: 100%;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .filtros-andar {
        flex-direction: column;
        gap: 10px;
    }
    
    .filtro-btn {
        width: 100%;
    }
    
    .filtro-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
}

/* ===========================
   GRID DE SALAS
   =========================== */

.salas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.sala-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out;
}

.sala-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.sala-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.sala-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sala-card:hover .sala-image img {
    transform: scale(1.05);
}

.sala-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.sala-badge.destaque {
    background-color: rgb(30, 136, 229);
}

.sala-badge.terreo {
    background-color: #3498DB;
}

.sala-badge.primeiro {
    background-color: #9B59B6;
}

.sala-badge.segundo {
    background-color: #E74C3C;
}

.sala-badge.subsolo {
    background-color: #34495E;
}

.sala-content {
    padding: 25px;
}

.sala-titulo {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.sala-descricao {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.sala-features {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.sala-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
}

.sala-feature-icon {
    font-size: 18px;
}

.sala-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.sala-btn:hover {
    background-color: var(--primary-color);
}

/* ===========================
   MENSAGEM NÃO ENCONTRADO
   =========================== */

.nao-encontrado {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.nao-encontrado p {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.link-consultor {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-consultor:hover {
    color: rgb(30, 136, 229);
}

/* ===========================
   ANIMAÇÕES
   =========================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===========================
   RESPONSIVO
   =========================== */

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .salas-grid {
        grid-template-columns: 1fr;
    }

    .breadcrumb {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .nav-list {
        gap: 10px;
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .cards-grid {
        gap: 15px;
    }

    .card {
        padding: 20px;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 14px;
    }

    .footer-section p {
        font-size: 12px;
    }

    .filtro-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .salas-grid {
        gap: 20px;
    }
}

/* ===========================
   PRÉDIO SHOWCASE
   =========================== */

.predio-showcase {
    background-color: var(--white);
    padding: 80px 0;
}

.predio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.predio-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeIn 0.5s ease-out;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
    object-fit: cover;
}

.thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--primary-color);
}

.predio-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.predio-info > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.predio-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #EAEEF5;
    transform: translateY(-5px);
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   DETALHES DA SALA
   =========================== */

.sala-detalhes {
    background-color: var(--light-bg);
    padding: 40px 0;
    min-height: 100vh;
}

.sala-detalhes-container {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sala-detalhes-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.sala-detalhes-galeria {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sala-detalhes-imagem-principal {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.sala-detalhes-imagem-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sala-detalhes-miniaturas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.sala-detalhes-miniatura {
    width: 100%;
    height: 80px;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    object-fit: cover;
}

.sala-detalhes-miniatura:hover,
.sala-detalhes-miniatura.active {
    border-color: var(--primary-color);
}

.sala-detalhes-info h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.sala-detalhes-andar {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sala-detalhes-descricao {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.sala-detalhes-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-icon {
    font-size: 28px;
}

.spec-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.spec-info p {
    font-size: 13px;
    color: var(--text-light);
}

.sala-detalhes-cta {
    display: flex;
    gap: 15px;
}

.sala-detalhes-cta .btn {
    flex: 1;
    padding: 15px;
    font-size: 16px;
}

.sala-detalhes-voltar {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sala-detalhes-voltar:hover {
    color: rgb(30, 136, 229);
}

/* ===========================
   RESPONSIVO - PRÉDIO
   =========================== */

@media (max-width: 768px) {
    .predio-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-main {
        height: 300px;
    }

    .predio-features {
        grid-template-columns: 1fr;
    }

    .sala-detalhes-header {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .sala-detalhes-imagem-principal {
        height: 300px;
    }

    .sala-detalhes-info h1 {
        font-size: 24px;
    }

    .sala-detalhes-specs {
        grid-template-columns: 1fr;
    }

    .sala-detalhes-cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .predio-info h3 {
        font-size: 22px;
    }

    .sala-detalhes-imagem-principal {
        height: 200px;
    }

    .sala-detalhes-info h1 {
        font-size: 20px;
    }

    .sala-detalhes-miniaturas {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* POP-UP AGENDAMENTO DE VISITA */

}
/* Estilos para o container principal do popup de agendamento */
#popup-agendar.popup {
    display: none; /* Escondido por padrão */
    position: fixed; /* Posição fixa na tela */
    z-index: 9999; /* Acima de outros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* Fundo semi-transparente */
    overflow: auto; /* Adiciona scroll se o conteúdo for muito grande */
}

/* Conteúdo do popup de agendamento */
#popup-agendar .popup-conteudo {
    background-color: white;
    margin: 15% auto; /* Centraliza vertical e horizontalmente */
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); /* Sombra suave */
    position: relative;
}

/* Botão de fechar dentro do popup de agendamento */
#popup-agendar .fechar {
    color: #999; /* Cor cinza */
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

#popup-agendar .fechar:hover {
    color: #333; /* Cor cinza mais escura ao passar o mouse */
}

/* Títulos dentro do popup de agendamento */
#popup-agendar h2 {
    color: #333; /* Cor preta */
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0; /* Linha divisória */
    padding-bottom: 15px;
}

/* Parágrafos dentro do popup de agendamento */
#popup-agendar p {
    color: #666; /* Cor cinza escura */
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Estilos para o cabeçalho do agendamento */
#popup-agendar .agendar-header h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: none; /* Remover borda se não for desejada aqui */
    padding-bottom: 0;
}

#popup-agendar .agendar-header p {
    color: #666;
    margin-bottom: 20px;
}

/* Horários disponíveis */
#popup-agendar .horarios-disponiveis h3 {
    color: #333;
    margin-bottom: 15px;
}

#popup-agendar .horario-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

#popup-agendar .horario-item {
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 8px;
    color: #666;
    font-size: 15px;
}

#popup-agendar .horario-item strong {
    color: #333;
}

/* Seção de agendamento via WhatsApp */
#popup-agendar .agendar-whatsapp {
    text-align: center;
    margin-bottom: 25px;
}

#popup-agendar .agendar-whatsapp p {
    color: #666;
    margin-bottom: 15px;
}

#popup-agendar .btn-whatsapp-agendar {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: #25D366; /* Cor verde do WhatsApp */
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 211, 102, 0.3);
}

#popup-agendar .btn-whatsapp-agendar:hover {
    background-color: #1DA851;
}

#popup-agendar .btn-whatsapp-agendar span:first-child {
    font-size: 18px;
    margin-bottom: 5px;
}

#popup-agendar .btn-whatsapp-agendar span:last-child {
    font-size: 14px;
    opacity: 0.9;
}

/* Rodapé do agendamento */
#popup-agendar .agendar-footer p {
    color: #666;
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

/* Estilo para o botão de agendar visita */
.btn-fale-conosco {
    
    color: white;
    
    
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    background: rgb(212, 24, 24);
    color: var(--dark-bg);
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
}

.btn-fale-conosco:hover {
    background-color: #45a049;
}