/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - AURA OCEAN RESIDENCES
   ========================================================================== */

:root {
    /* Cores Harmoniosas */
    --primary: hsl(194, 67%, 18%);       /* Azul-petróleo profundo */
    --primary-light: hsl(194, 50%, 30%); /* Azul-petróleo médio */
    --primary-dark: hsl(194, 75%, 10%);  /* Azul-petróleo escuro */
    --accent: hsl(38, 30%, 55%);         /* Champagne/Dourado suave */
    --accent-light: hsl(38, 40%, 65%);   /* Champagne claro */
    --accent-glow: rgba(184, 151, 98, 0.25);
    
    /* Fundos */
    --bg-light: hsl(30, 20%, 98%);       /* Off-white ultra suave */
    --bg-pure: hsl(0, 0%, 100%);         /* Branco puro */
    --bg-dark: hsl(210, 25%, 10%);        /* Azul-escuro quase preto */
    --bg-dark-card: hsl(210, 20%, 14%);   /* Cartão escuro */
    
    /* Textos */
    --text-dark: hsl(210, 24%, 16%);     /* Cinza muito escuro para leitura */
    --text-muted: hsl(210, 10%, 45%);    /* Cinza intermediário */
    --text-light: hsl(0, 0%, 96%);       /* Off-white para textos em fundos escuros */
    --text-light-muted: hsl(210, 12%, 75%);
    
    /* Detalhes */
    --border-light: hsl(210, 15%, 92%);
    --border-dark: hsl(210, 20%, 20%);
    --border-accent: hsl(38, 20%, 75%);
    
    /* Tipografia */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Efeitos & Transições */
    --shadow-subtle: 0 8px 30px rgba(0, 0, 0, 0.02);
    --shadow-medium: 0 16px 40px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 24px 64px rgba(18, 25, 33, 0.08);
    --radius-lg: 12px;
    --radius-md: 8px;
    --radius-sm: 4px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES GERAIS
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-pure);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

ul {
    list-style: none;
}

/* ==========================================================================
   ESTILOS DE TIPOGRAFIA & UTILITÁRIOS
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.25;
}

.section-layout {
    padding: 100px 0;
}

.section-layout.dark-bg {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Rótulos pequenos acima de títulos */
.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 15px;
}

.section-tag.light {
    color: var(--accent-light);
}

/* Títulos das seções */
.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

.section-title.light {
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    font-weight: 300;
}

.section-subtitle.light {
    color: var(--text-light-muted);
}

.section-header-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

/* ==========================================================================
   HEADER & NAVBAR FLUTUANTE
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

/* Classe aplicada quando rolar a página para maior destaque */
.navbar.scrolled {
    background: var(--bg-pure);
    box-shadow: var(--shadow-medium);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

.logo-img {
    height: 63px;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-light);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    background-color: var(--primary);
    color: var(--bg-pure);
    border-color: var(--primary);
}

/* Hamburguer para Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   SEÇÃO HERO (DESTAQUE PRINCIPAL)
   ========================================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 110px; /* EspaÃ§o para navbar fixa */
    color: var(--text-light);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1.2s ease-out;
}

.hero-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-light);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.03);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 650px;
    color: var(--text-light-muted);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Botões do Hero */
.btn-primary {
    background-color: var(--accent);
    color: var(--bg-pure);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(184, 151, 98, 0.3);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 151, 98, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

/* Indicador de rolagem animado */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-light);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 2s infinite ease-in-out;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light-muted);
}

/* ==========================================================================
   SEÇÃO O EMPREENDIMENTO (GRID PRINCIPAL)
   ========================================================================== */

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.grid-text-content {
    animation: fadeInLeft 1s ease;
}

.section-paragraph {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 300;
}

/* Estatísticas em Destaque */
.highlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Elemento visual do lado direito */
.grid-visual-content {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    transition: var(--transition-smooth);
}

.visual-card-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.visual-card:hover .visual-card-bg {
    transform: scale(1.05);
}

.visual-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(18, 25, 33, 0.9));
    color: var(--text-light);
}

.visual-card-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.visual-card-overlay p {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    font-weight: 300;
}

/* ==========================================================================
   SEÇÃO DIFERENCIAIS (DARK BG)
   ========================================================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: var(--radius-md);
    background-color: rgba(184, 151, 98, 0.1);
    color: var(--accent-light);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background-color: var(--accent);
    color: var(--bg-pure);
}

.feature-title {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.feature-description {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* ==========================================================================
   SEÇÃO CADASTRO / CAPTURA DE LEADS (CONVERSÃO)
   ========================================================================== */

.contact-section {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    padding-top: 20px;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

.detail-item {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 1 1 calc(50% - 15px);
    min-width: 220px;
}

.detail-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-pure);
    color: var(--primary);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-light);
    flex-shrink: 0;
}

.detail-item h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
}

.detail-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-wpp-link {
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.contact-wpp-link:hover {
    transform: translateY(-2px);
}

.contact-wpp-link:hover .detail-icon {
    background-color: #25d366;
    color: #fff;
    border-color: #25d366;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.contact-wpp-link:hover h4 {
    color: #20ba5a;
}

/* Cartão do Formulário */
.form-wrapper {
    position: relative;
}

.form-card {
    background-color: var(--bg-pure);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-large);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.form-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    font-weight: 300;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.form-group input, 
.form-group select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus {
    border-color: var(--accent);
    background-color: var(--bg-pure);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' width='18' height='18' stroke='currentColor' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

/* Botão de Envio */
.btn-submit {
    width: 100%;
    height: 55px;
    background-color: var(--primary);
    color: var(--bg-pure);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(15, 61, 76, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-submit:hover:not(:disabled) {
    background-color: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15, 61, 76, 0.35);
}

.btn-submit:disabled {
    background-color: var(--text-muted);
    opacity: 0.7;
    cursor: not-allowed;
}

/* Feedback Messages */
.feedback-message {
    text-align: center;
    padding: 30px 10px;
    animation: fadeInUp 0.5s ease forwards;
}

.feedback-message svg {
    margin-bottom: 20px;
}

.feedback-message.success svg {
    color: #2e7d32;
}

.feedback-message.error svg {
    color: #c62828;
}

.feedback-message h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.feedback-message p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* Spinner Loader */
.loader {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--bg-pure);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */

.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-top: 1px solid var(--border-dark);
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 60px;
    padding: 80px 0 60px;
}

.footer-logo .logo {
    color: var(--text-light);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo p {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    font-weight: 300;
    max-width: 250px;
}

.footer-links h4,
.footer-legal h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-legal p {
    font-size: 0.8rem;
    color: var(--text-light-muted);
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 300;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--border-dark);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-light-muted);
    font-weight: 300;
}

/* ==========================================================================
   ANIMAÇÕES CSS
   ========================================================================== */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollMouse {
    0% { opacity: 0; top: 6px; }
    30% { opacity: 1; }
    80% { opacity: 0; top: 22px; }
    100% { opacity: 0; top: 6px; }
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-legal {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section-layout {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    /* Navbar Mobile */
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 110px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 110px);
        background-color: var(--bg-pure);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        transition: var(--transition-smooth);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-btn {
        width: 80%;
        text-align: center;
    }

    /* Grids Mobile */
    .section-grid, 
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .grid-visual-content {
        order: -1; /* Imagem do empreendimento vai para cima no celular */
    }

    .visual-card {
        height: 380px;
    }

    .highlight-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn-primary, 
    .hero-actions .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    
    .form-card {
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   GALERIA DE IMAGENS REALISTA
   ========================================================================== */
.gallery-section {
    background-color: var(--bg-pure);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(18, 25, 33, 0.7));
    color: var(--text-light);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-family: var(--font-serif);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .gallery-item {
        height: 250px;
        grid-column: span 1 !important;
    }
}

/* ==========================================================================
   BANNER DE POSICIONAMENTO
   ========================================================================== */
.positioning-banner {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.positioning-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--primary);
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
    font-weight: 400;
    padding: 0 20px;
}

/* ==========================================================================
   GRID DE DESTAQUES (8 BLOCOS)
   ========================================================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.highlight-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.highlight-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.highlight-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: rgba(184, 151, 98, 0.1);
    color: var(--accent-light);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-icon {
    background-color: var(--accent);
    color: var(--bg-pure);
}

.highlight-card h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 0.85rem;
    color: var(--text-light-muted);
    line-height: 1.5;
    font-weight: 300;
}

/* ==========================================================================
   GRID DE TIPOLOGIAS (PLANTAS)
   ========================================================================== */
.bg-light-gray {
    background-color: var(--bg-light);
}

.typology-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.typology-card {
    background-color: var(--bg-pure);
    border: 1px solid var(--border-light);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.typology-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent);
}

.typology-header {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

.typology-header h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.typology-size {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.typology-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.pricing-callout {
    text-align: center;
    margin-top: 40px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ==========================================================================
   LAZER E SERVIÇOS (CARDS COM IMAGEM)
   ========================================================================== */
.lazer-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.lazer-detail-card {
    background-color: var(--bg-pure);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.lazer-detail-card:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-4px);
}

.lazer-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.lazer-detail-card:hover .lazer-card-img {
    transform: scale(1.03);
}

.lazer-card-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lazer-card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.lazer-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* ==========================================================================
   DIFERENCIAIS TÉCNICOS & SUSTENTABILIDADE
   ========================================================================== */
.tech-item {
    margin-bottom: 30px;
}

.tech-item h4 {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--accent-light);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.tech-item h4::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.tech-item p {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    line-height: 1.6;
    font-weight: 300;
    padding-left: 20px;
}

/* ==========================================================================
   INVESTIMENTO & CONDIÇÕES (COM DEPOIMENTO SOCIAL)
   ========================================================================== */
.conditions-box {
    background-color: var(--bg-pure);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--accent);
    padding: 25px 30px;
    border-radius: var(--radius-sm);
    margin: 30px 0 20px;
}

.conditions-box h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.conditions-box ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.conditions-box li {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.fine-print {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Card de Prova Social */
.proof-social-card {
    background-color: var(--bg-pure);
    border: 1px solid var(--border-light);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-large);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--accent-light);
    opacity: 0.3;
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 40px;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--primary-light);
    margin-bottom: 30px;
    position: relative;
    font-style: italic;
}

.quote-author h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.quote-author p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   FAQ SECTOR (CSS ACCORDION INTERATIVO)
   ========================================================================== */
.faq-section {
    background-color: var(--bg-pure);
    border-top: 1px solid var(--border-light);
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--bg-light);
    transition: var(--transition-smooth);
}

.accordion-input {
    display: none;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--primary);
    cursor: pointer;
    font-weight: 400;
    transition: var(--transition-fast);
}

.accordion-title::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent);
    transition: var(--transition-fast);
}

.accordion-item:hover {
    border-color: var(--accent);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: var(--bg-pure);
}

.accordion-content p {
    padding: 20px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
    border-top: 1px solid var(--border-light);
}

/* Estado Ativado via CSS Checkbox Hack */
.accordion-input:checked ~ .accordion-title {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.accordion-input:checked ~ .accordion-title::after {
    content: '-';
    transform: rotate(180deg);
}

.accordion-input:checked ~ .accordion-content {
    max-height: 500px;
    transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Ajuste do formulário para textarea e select */
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-size: 0.95rem;
    outline: none;
    resize: none;
    transition: var(--transition-fast);
}

.form-group textarea:focus {
    border-color: var(--accent);
    background-color: var(--bg-pure);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ==========================================================================
   RESPONSIVIDADE DAS NOVAS SEÇÕES
   ========================================================================== */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .typology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lazer-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .typology-grid {
        grid-template-columns: 1fr;
    }
    .lazer-details-grid {
        grid-template-columns: 1fr;
    }
    .positioning-text {
        font-size: 1.25rem;
    }
    .accordion-title {
        padding: 16px 20px;
        font-size: 1.05rem;
    }
    .accordion-content {
        padding: 0 20px;
    }
    .proof-social-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}



/* ==========================================================================
   CUSTOMIZAÃ‡Ã•ES DE LAYOUT (COLUNA ÃšNICA PARA SEÃ‡ÃƒO DE INVESTIMENTO)
   ========================================================================== */
.section-grid.single-column {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-grid.single-column .grid-text-content {
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.section-grid.single-column .conditions-box {
    text-align: left;
    max-width: 600px;
    margin: 30px auto 30px auto;
}

/* ==========================================================================
   MODAL DE DETALHES DA TIPOLOGIA
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 25, 33, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-container {
    background: var(--bg-pure);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    box-shadow: var(--shadow-large);
    position: relative;
    animation: fadeInUp 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--primary);
}

.modal-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 10px;
}

#modalTitle {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.modal-price-box {
    background: var(--bg-light);
    border-left: 3px solid var(--accent);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.price-value {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.2;
}

.price-obs {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 5px;
    font-style: italic;
}

.modal-details-list {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
}

.modal-detail-item {
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.modal-detail-item strong {
    font-weight: 500;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-actions .btn-primary {
    text-align: center;
    width: 100%;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: #fff;
}

/* Cursor pointer para os cards e ajuste da Galeria */
.typology-card {
    cursor: pointer;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
}

/* ==========================================================================
   BOTAO FLUTUANTE DO WHATSAPP DUPLO (CONVERSAO RAPIDA)
   ========================================================================== */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.whatsapp-trigger-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    outline: none;
}

.whatsapp-trigger-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

/* Hover no Desktop e classe ativa no Mobile/Geral */
.whatsapp-float-container:hover .whatsapp-menu,
.whatsapp-float-container.active .whatsapp-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.whatsapp-float-container.active .whatsapp-icon {
    display: none !important;
}

.whatsapp-float-container.active .close-icon {
    display: block !important;
}

.whatsapp-float-container.active .whatsapp-trigger-btn {
    background-color: #e53935;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.whatsapp-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.whatsapp-menu-label {
    background-color: var(--bg-pure);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
    white-space: nowrap;
    transition: all 0.3s ease;
    opacity: 0.95;
}

.whatsapp-menu-icon {
    width: 45px;
    height: 45px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.whatsapp-menu-item:hover .whatsapp-menu-label {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    transform: translateX(-3px);
}

.whatsapp-menu-item:hover .whatsapp-menu-icon {
    background-color: #20ba5a;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float-container {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }
    
    .whatsapp-trigger-btn {
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-menu-label {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .whatsapp-menu-icon {
        width: 40px;
        height: 40px;
    }
}