/* ===================================
   RESET & BASE STYLES
   =================================== */

:root {
    /* Color Palette */
    --primary: #2D3E50;
    --secondary: #4A5F7F;
    --accent: #E67E22;
    --neutral-dark: #1A1A1A;
    --neutral-light: #F8F9FA;
    --success: #27AE60;
    --warning: #F39C12;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

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

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

/* ===================================
   BARRA STICKY DE URGÊNCIA
   =================================== */

.urgency-bar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #FF5722;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
    height: auto;
    min-height: 40px;
}

.urgency-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 8px var(--spacing-md);
    flex-wrap: nowrap;
    max-width: 100%;
    overflow: hidden;
}

.urgency-text {
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.urgency-btn {
    background: var(--white);
    color: #FF5722;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 0.2px;
}

.urgency-btn:hover {
    background: #FF5722;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.urgency-btn:active {
    transform: translateY(0);
}

/* ===================================
   NAVBAR
   =================================== */

.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(45, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
    height: auto;
}

/* Estado ao rolar - fundo azul escuro sólido (mesma cor do footer) */
.navbar.scrolled {
    background: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    top: 40px;
}

/* Logo sempre branco em ambos os estados */
.navbar.scrolled .logo-image {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Textos do menu sempre brancos */
.navbar.scrolled .navbar-menu a {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Sublinhado branco ao hover */
.navbar.scrolled .navbar-menu a::after {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Menu hambúrguer sempre branco */
.navbar.scrolled .mobile-menu-toggle span {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    background: transparent;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 700;
}

.logo-image {
    height: 52.5px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Logo sempre visível em mobile com navbar azul */
@media (max-width: 768px) {
    .logo-image {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.navbar-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: var(--spacing-xs) 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-menu a:hover::after,
.navbar-menu a:focus::after {
    width: 100%;
}

.navbar-menu .btn {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.875rem;
    white-space: nowrap;
    position: relative;
}

.navbar-menu .btn::after {
    display: none;
}

.navbar-menu .btn-whatsapp {
    color: var(--white) !important;
}

.navbar-menu .btn-whatsapp svg {
    color: var(--white) !important;
    fill: currentColor !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .mobile-menu-toggle span {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Botão hambúrguer sempre branco em mobile com navbar azul */
@media (max-width: 768px) {
    .mobile-menu-toggle span {
        background: var(--white);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: 0;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: #3a4d6b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-success:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    white-space: nowrap;
}

.btn-consulta {
    background: var(--primary);
    color: var(--white);
}

.btn-consulta:hover {
    background: #1a2838;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp svg {
    flex-shrink: 0;
    color: var(--white);
    fill: currentColor;
}

.btn-ghost {
    background: transparent;
    border: 2px solid currentColor;
}

.btn-small {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.875rem;
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* ===================================
   BADGES
   =================================== */

.badge {
    display: inline-block;
    padding: 0.375rem var(--spacing-sm);
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-lancamento {
    background: var(--accent);
    color: var(--white);
}

.badge-success {
    background: var(--success);
    color: var(--white);
}

.badge-warning {
    background: var(--warning);
    color: var(--white);
}

.badge-danger {
    background: #DC3545;
    color: var(--white);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
    margin-top: 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 100%;
    padding-top: 80px;
    margin-top: 0;
}

.hero-content-left {
    text-align: left;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: var(--spacing-xl);
}

.hero-text-group {
    flex: 1;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-title-left {
    text-align: left;
    max-width: 100%;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.95;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle-left {
    text-align: left;
    max-width: 100%;
}

.hero-cta-card {
    background: var(--white);
    border-radius: 0;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
    min-width: 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    overflow: visible;
    box-sizing: border-box;
}

.cta-card-badge {
    background: #E3F2FD;
    color: var(--primary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.cta-card-features {
    display: flex;
    justify-content: space-around;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) 0;
    border-top: 1px solid var(--neutral-light);
    border-bottom: 1px solid var(--neutral-light);
}

@media (max-width: 480px) {
    /* Barra Sticky Mobile Pequeno */
    .urgency-bar {
        min-height: auto;
    }
    
    .urgency-bar-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 6px;
        padding: 6px 10px;
        flex-wrap: nowrap;
    }
    
    .urgency-text {
        font-size: 0.65rem;
        min-width: 0;
        flex: 1;
        text-align: left;
        line-height: 1.2;
        padding-right: 6px;
        letter-spacing: 0.1px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    
    .urgency-btn {
        font-size: 0.6rem;
        padding: 5px 8px;
        white-space: nowrap;
        flex-shrink: 0;
        letter-spacing: 0;
    }
    
    .cta-card-features {
        gap: 4px;
        padding: var(--spacing-xs) 0;
        flex-wrap: nowrap;
    }
    
    .cta-feature-item {
        flex: 1;
        min-width: 0;
    }
}

.cta-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    flex: 1;
}

.cta-feature-item svg {
    color: var(--primary);
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.cta-feature-item span {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 500;
    text-align: center;
    margin-top: 2px;
    line-height: 1.2;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cta-card-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.btn-cta-primary {
    background: var(--primary);
    color: var(--white);
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 0;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: var(--transition);
    border: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.btn-cta-primary:hover {
    background: #1a2838;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cta-whatsapp {
    background: var(--white);
    color: var(--primary);
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 0;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    white-space: normal;
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.btn-cta-whatsapp svg {
    color: #25D366;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.btn-cta-whatsapp .btn-text-mobile {
    display: none;
}

@media (max-width: 480px) {
    .btn-cta-whatsapp .btn-text-full {
        display: none;
    }
    
    .btn-cta-whatsapp .btn-text-mobile {
        display: inline;
    }
}

.btn-cta-whatsapp:hover {
    background: var(--neutral-light);
    border-color: #25D366;
    color: #25D366;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cta-whatsapp:hover svg {
    color: #25D366;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.hero-cta .btn {
    min-width: 200px;
}

/* ===================================
   SECTIONS
   =================================== */

section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   BIKE ELÉTRICA DESTAQUE
   =================================== */

@media (max-width: 768px) {
    section[style*="grid-template-columns: 1fr 1fr"] > div > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    section[style*="grid-template-columns: 1fr 1fr"] > div > div > div[style*="order: 1"] {
        order: 2 !important;
    }
    
    section[style*="grid-template-columns: 1fr 1fr"] > div > div > div[style*="order: 2"] {
        order: 1 !important;
    }
    
    section[style*="grid-template-columns: 1fr 1fr"] h2 {
        font-size: 1.75rem !important;
    }
    
    section[style*="grid-template-columns: 1fr 1fr"] p {
        font-size: 1rem !important;
    }
}

/* ===================================
   CONTEÚDO / LINKS INTERNOS (SEO)
   =================================== */

.section-conteudo {
    background: var(--white);
}

.content-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.content-card {
    display: block;
    background: var(--neutral-light);
    padding: var(--spacing-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.content-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.content-card p {
    color: var(--secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.content-card-cta {
    display: inline-block;
    font-weight: 700;
    color: var(--accent);
}

/* ===================================
   INVESTIR - SPLIT (Infra + Imagem)
   =================================== */

.infra-split {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem;
    align-items: stretch;
}

.infra-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.infra-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
}

.infra-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-weight: 700;
}

.infra-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
}

.infra-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.infra-list li strong {
    color: var(--primary);
}

.estadio-card {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2a3a 100%);
    color: white;
    padding: 1.75rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(45, 62, 80, 0.15);
}

.estadio-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.estadio-content {
    flex: 1;
}

.estadio-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.estadio-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

.infra-media {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    align-items: stretch;
}

.infra-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    min-height: 400px;
}

/* ===================================
   BIKE ELÉTRICA DESTAQUE
   =================================== */

.bike-section {
    background: white;
}

.bike-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.bike-image {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.bike-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.bike-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bike-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: var(--primary);
}

.bike-description {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: var(--text-primary);
}

.bike-description strong {
    color: var(--primary);
    font-weight: 600;
}

.bike-features {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.bike-features-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--primary);
}

.bike-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.bike-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.bike-features-list li svg {
    flex-shrink: 0;
    color: var(--primary);
}

.bike-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 62, 80, 0.2);
    width: fit-content;
}

.bike-cta:hover {
    background: #1a2a3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 62, 80, 0.3);
}

.bike-cta svg {
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .bike-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 900px;
    }

    .bike-image {
        order: -1;
    }

    .bike-image img {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .bike-grid {
        gap: 1.5rem;
    }

    .bike-title {
        font-size: 1.5rem;
    }

    .bike-description {
        font-size: 0.95rem;
    }

    .bike-features {
        padding: 1.25rem;
    }

    .bike-features-title {
        font-size: 1rem;
    }

    .bike-features-list li {
        font-size: 0.9rem;
    }

    .bike-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .bike-title {
        font-size: 1.3rem;
    }

    .bike-description {
        font-size: 0.9rem;
    }

    .bike-features {
        padding: 1rem;
    }

    .bike-features-list li {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .bike-features-list li svg {
        width: 16px;
        height: 16px;
    }
    
    /* Infra Split Mobile Pequeno */
    .infra-split {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        margin: 1.5rem auto 0;
        padding: 0;
    }
    
    .infra-media {
        order: -1;
        width: 100%;
    }
    
    .infra-media img {
        width: 100%;
        height: auto;
        min-height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }
    
    .infra-card {
        padding: 1.25rem;
        width: 100%;
    }
    
    .infra-title {
        font-size: 1.2rem;
    }

    .infra-list li {
        font-size: 0.85rem;
    }
    
    .estadio-card {
        padding: 1.25rem;
        width: 100%;
    }
    
    .estadio-title {
        font-size: 1.1rem;
    }
    
    .estadio-text {
        font-size: 0.9rem;
    }

    .bike-cta {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
    }
}

@media (max-width: 1024px) {
    .infra-split {
        grid-template-columns: 1fr;
        max-width: 900px;
        gap: 2rem;
    }

    .infra-media {
        order: -1;
    }

    .infra-media img {
        min-height: 300px;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .infra-split {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin: 2rem auto 0;
        padding: 0;
    }
    
    .infra-media {
        order: -1;
        width: 100%;
    }
    
    .infra-media img {
        width: 100%;
        height: auto;
        min-height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .infra-card {
        padding: 1.5rem;
        width: 100%;
    }
    
    .infra-content {
        width: 100%;
    }
    
    .estadio-card {
        width: 100%;
    }

    .infra-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .infra-list li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .estadio-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .estadio-icon {
        font-size: 2.5rem;
    }

    .estadio-title {
        font-size: 1.15rem;
    }

    .estadio-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .infra-card {
        padding: 1.25rem;
    }

    .infra-title {
        font-size: 1.2rem;
    }

    .infra-list li {
        font-size: 0.85rem;
    }

    .estadio-card {
        padding: 1.25rem;
    }
}

/* ===================================
   FAQ
   =================================== */

.section-faq {
    background: var(--neutral-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-md);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--secondary);
    font-weight: 800;
}

.faq-item[open] summary::after {
    content: '–';
}

.faq-item p {
    margin-top: var(--spacing-sm);
    color: var(--secondary);
    line-height: 1.8;
}

.faq-item a {
    color: var(--accent);
    text-decoration: underline;
}

/* ===================================
   CONTATO
   =================================== */

/* ===================================
   PROVA SOCIAL
   =================================== */

.social-proof-bar {
    background: #f0f8ff;
    padding: 20px 0;
    border-left: 4px solid #1a73e8;
    margin: 0;
    width: 100%;
}

.social-proof-content {
    text-align: center;
    padding: 0 var(--spacing-md);
}

.social-proof-stars {
    font-size: 1.5rem;
    margin-bottom: 8px;
    line-height: 1;
}

.social-proof-main {
    font-size: 1.125rem;
    color: var(--primary);
    margin: 8px 0;
    font-weight: 600;
}

.social-proof-main strong {
    font-weight: 700;
    color: var(--primary);
}

.social-proof-sub {
    font-size: 0.95rem;
    color: #666;
    margin: 4px 0 0 0;
    font-style: italic;
}

.social-proof-sub em {
    font-style: italic;
    color: #666;
}

.section-contato {
    background: var(--white);
}

.section-contato .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    background: var(--neutral-light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-lg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info p {
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 400px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* ===================================
   RESPONSIVE - EXTRA
   =================================== */

@media (max-width: 1024px) {
    .content-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .contact-actions {
        width: 100%;
        max-width: 100%;
        align-items: center;
        justify-content: center;
    }
}

/* ===================================
   PÁGINAS INTERNAS (MINI HERO)
   =================================== */

.page-hero {
    position: relative;
    width: 100%;
    min-height: 32vh;
    max-height: 420px;
    display: flex;
    align-items: flex-end;
    padding: 0;
    overflow: hidden;
    margin-top: 0;
    padding-top: 120px; /* 40px (barra sticky) + 80px (navbar) */
}

.page-hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: calc(var(--spacing-xxl) + 1rem) 0 var(--spacing-lg);
    color: var(--white);
}

.page-hero-title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    max-width: 900px;
}

.page-hero-subtitle {
    margin-top: var(--spacing-sm);
    max-width: 900px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 26vh;
        max-height: 320px;
        padding-top: 110px; /* 40px (barra sticky) + 70px (navbar) */
    }
    
    .page-hero-content {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }
    
    /* Garantir que o menu mobile não sobreponha o conteúdo */
    body {
        padding-top: 0;
    }
    
    /* Quando o menu mobile está aberto, adicionar espaço extra */
    .navbar-menu.active ~ * {
        position: relative;
        z-index: 1;
    }
}

/* ===================================
   DESTAQUE SECTION
   =================================== */

.section-destaque {
    background: var(--neutral-light);
    padding: var(--spacing-lg) 0 var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

.badge-lancamento {
    display: block;
    width: fit-content;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.destaque-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.destaque-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    min-width: 0;
}

.gallery-main {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    display: block;
}

.gallery-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    pointer-events: none;
}

.gallery-main:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
    visibility: visible;
}

.gallery-overlay svg {
    width: 32px;
    height: 32px;
}

.gallery-thumbnails {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 0.5rem !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    grid-auto-rows: 1fr !important;
    box-sizing: border-box !important;
}

.gallery-thumbnails > * {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.gallery-thumb {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1 !important;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f5f5f5;
    width: 100% !important;
    min-width: 0;
    max-width: 100% !important;
    display: block !important;
}

.gallery-thumb:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 62, 80, 0.2);
}

.gallery-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
}

.gallery-thumb:hover img {
    transform: scale(1.1);
}

.gallery-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 62, 80, 0);
    transition: background 0.3s ease;
}

.gallery-thumb:hover::after {
    background: rgba(45, 62, 80, 0.1);
}

/* Regra extra para garantir que o grid funcione */
.destaque-gallery .gallery-thumbnails {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
}

.destaque-gallery .gallery-thumbnails .gallery-thumb {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.destaque-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
    min-width: 0;
}

.destaque-subtitle {
    font-size: 1.25rem;
    color: var(--secondary);
    font-weight: 400;
}

.destaque-location {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--secondary);
    font-size: 0.95rem;
}

.destaque-price {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.price-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.price-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.btn-price {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.875rem;
    white-space: nowrap;
}

.price-label {
    font-size: 0.875rem;
    color: var(--secondary);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.95rem;
    color: var(--primary);
}

.feature-item svg {
    color: var(--success);
    flex-shrink: 0;
}

.destaque-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

/* ===================================
   LANÇAMENTOS SECTION
   =================================== */

.lancamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.property-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.property-image img,
.property-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-placeholder {
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.property-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
}

.property-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.property-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.property-location {
    color: var(--secondary);
    font-size: 0.95rem;
}

.property-features {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--secondary);
}

.property-price {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--neutral-light);
}

.property-price span {
    font-size: 0.875rem;
    color: var(--secondary);
}

.property-price strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.property-sold {
    opacity: 0.6;
}

.property-sold:hover {
    transform: none;
}

.property-upcoming {
    border: 2px dashed var(--secondary);
}

/* ===================================
   INVESTIR SECTION
   =================================== */

.investir-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.investir-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--neutral-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.investir-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.investir-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.investir-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
}

.investir-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.investir-text {
    color: var(--secondary);
    font-size: 0.95rem;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--primary);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links,
.footer-contact,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
    padding-left: var(--spacing-xs);
}

.footer-contact li,
.footer-legal li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ===================================
   LIGHTBOX
   =================================== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
    color: var(--accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
    color: var(--accent);
}

.lightbox-prev {
    left: var(--spacing-lg);
}

.lightbox-next {
    right: var(--spacing-lg);
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */

@media (min-width: 1025px) {
    .infra-split {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */

/* ===================================
   RESPONSIVE - TABLET PORTRAIT (iPad vertical)
   =================================== */

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .navbar {
        padding: var(--spacing-xs) var(--spacing-md);
        height: auto;
        min-height: 70px;
        max-height: 80px;
    }
    
    .navbar-content {
        padding: var(--spacing-xs) 0;
        min-height: 70px;
    }
    
    .logo-image {
        max-height: 40px;
        height: auto;
    }
    
    .navbar-menu {
        gap: var(--spacing-xs);
    }
    
    .navbar-menu a {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    
    .btn-whatsapp {
        font-size: 0.8rem;
        padding: 6px 12px;
        white-space: nowrap;
    }
    
    .hero {
        min-height: 70vh;
        max-height: 85vh;
        padding: 0;
        margin-top: 0;
    }
    
    .hero-content {
        padding-top: 140px !important;
        padding-bottom: var(--spacing-xl);
        margin-top: 0;
    }
    
    .hero-background {
        top: 0;
    }
    
    .hero-overlay {
        top: 0;
    }
    
    .hero-content-left {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        max-width: 100%;
        margin-top: var(--spacing-sm);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 4.5vw, 1.9rem) !important;
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
        margin-top: 0;
    }
    
    .hero-title-left {
        font-size: clamp(1.5rem, 4.5vw, 1.9rem) !important;
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
        margin-top: 0;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 2.2vw, 1rem) !important;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-subtitle-left {
        font-size: clamp(0.9rem, 2.2vw, 1rem) !important;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-cta-card {
        margin-top: var(--spacing-md);
        margin-bottom: var(--spacing-sm);
    }
}

/* ===================================
   RESPONSIVE - TABLET (768px - 1024px)
   =================================== */

@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        min-height: 500px;
        max-height: 550px;
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .hero-content {
        padding-top: 90px !important;
    }
    
    .hero-content-left {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        max-width: 100%;
    }
    
    .hero-cta-card {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        margin: 0 auto;
        padding: var(--spacing-md);
    }
    
    .cta-card-features {
        gap: 0.5rem;
        padding: var(--spacing-sm) 0;
        flex-wrap: nowrap;
    }
    
    .cta-feature-item {
        flex: 1;
        min-width: 0;
    }
    
    .cta-feature-item span {
        font-size: 0.7rem;
        padding: 0 2px;
        word-wrap: break-word;
    }
    
    .cta-feature-item svg {
        width: 24px;
        height: 24px;
    }
    
    .destaque-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        display: grid;
    }
    
    .destaque-gallery {
        order: -1;
        width: 100%;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 0.5rem;
        display: grid !important;
    }
    
    .gallery-overlay {
        font-size: 0.9rem;
    }
    
    .gallery-overlay svg {
        width: 28px;
        height: 28px;
    }
    
    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .bike-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .bike-image {
        order: -1;
    }
    
    .bike-image img {
        aspect-ratio: 16 / 9;
        width: 100%;
    }
    
    .infra-split {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    .infra-media {
        order: -1;
    }
    
    .infra-media img {
        aspect-ratio: 16 / 9;
        min-height: 300px;
        width: 100%;
    }
    
    .content-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .investir-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .lancamentos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    /* Ajustes para elementos com grid inline */
    section[id="plantas-visual"] > div > div[style*="grid-template-columns"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    /* Ajustes para tabelas */
    table {
        font-size: 0.9rem;
    }
    
    table th,
    table td {
        padding: 12px 8px !important;
    }
    
    /* Ajustes para seções com padding */
    section {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
    
    .container {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
    
    /* Ajustes para botões */
    .btn-consulta,
    .btn-whatsapp {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-width: auto;
    }
    
    /* Ajustes para cards de FAQ */
    .faq-item {
        padding: var(--spacing-md);
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    /* Ajustes para navbar */
    .navbar {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .navbar-menu {
        gap: var(--spacing-sm);
    }
    
    .navbar-menu a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    /* Ajustes para títulos de seção */
    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        margin-bottom: var(--spacing-md);
    }
    
    .section-subtitle {
        font-size: clamp(1rem, 2vw, 1.1rem);
        margin-bottom: var(--spacing-lg);
    }
    
    /* Ajustes para texto geral */
    p {
        font-size: clamp(0.95rem, 1.5vw, 1rem);
        line-height: 1.7;
    }
    
    /* Ajustes para cards de plantas */
    section[id="plantas-visual"] > div > div[style*="grid-template-columns"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    section[id="plantas-visual"] > div > div > div {
        min-width: 0;
        width: 100%;
    }
    
    /* Ajustes para mapa */
    .section-mapa {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    #map-luzes {
        height: 400px;
    }
    
    /* Ajustes para footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    /* Garantir que imagens não ultrapassem o container */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ajustes para overflow */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 450px;
        max-height: 500px;
    }
    
    .hero-content {
        padding-top: 90px !important;
    }
    
    .hero-content-left {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-cta-card {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
    
    .destaque-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        display: grid;
    }
    
    .destaque-gallery {
        order: -1;
        width: 100%;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 0.4rem;
        display: grid !important;
    }
    
    .gallery-overlay {
        font-size: 0.85rem;
    }
    
    .gallery-overlay svg {
        width: 28px;
        height: 28px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.35rem;
        display: grid !important;
    }
    
    .gallery-overlay {
        font-size: 0.75rem;
    }
    
    .gallery-overlay svg {
        width: 20px;
        height: 20px;
    }
    
    .gallery-overlay span {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.3rem;
        display: grid !important;
    }
    
    .gallery-main img {
        aspect-ratio: 4 / 3;
    }
    
    .destaque-cta {
        flex-direction: column;
    }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */

@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Barra Sticky Mobile */
    .urgency-bar {
        min-height: auto;
    }
    
    .urgency-bar-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 8px 12px;
        flex-wrap: nowrap;
    }
    
    .urgency-text {
        font-size: 0.7rem;
        min-width: 0;
        flex: 1;
        text-align: left;
        line-height: 1.3;
        padding-right: 8px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    
    .urgency-btn {
        font-size: 0.65rem;
        padding: 6px 10px;
        white-space: nowrap;
        flex-shrink: 0;
        max-width: none;
        width: auto;
    }
    
    .navbar {
        top: 40px; /* Abaixo da barra sticky */
        position: fixed;
        width: 100%;
        background: var(--primary) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }
    
    .navbar.scrolled {
        top: 40px; /* Abaixo da barra sticky */
        position: fixed;
        width: 100%;
        background: var(--primary) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }
    
    .hero {
        margin-top: 0;
    }
    
    /* Menu mobile posicionado abaixo da barra sticky e navbar */
    .navbar-menu {
        top: 100px !important; /* 40px (barra sticky) + 60px (navbar) */
    }
    
    /* Prova Social Mobile */
    .social-proof-stars {
        font-size: 1.2rem;
    }
    
    .social-proof-main {
        font-size: 1rem;
    }
    
    .social-proof-sub {
        font-size: 0.85rem;
    }
    
    .section-contato .container {
        align-items: center;
        justify-content: center;
    }
    
    .contact-card {
        width: 100%;
        margin: 0 auto;
        padding: var(--spacing-md);
    }
    
    .contact-actions {
        width: 100%;
        max-width: 100%;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-menu {
        position: fixed;
        top: 100px; /* 40px (barra sticky) + 60px (navbar) */
        left: 0;
        right: 0;
        background: var(--primary) !important;
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        display: none;
        gap: var(--spacing-sm);
        z-index: 1001;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Links do menu mobile sempre brancos */
    .navbar-menu a {
        color: var(--white) !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: 4px;
        transition: background-color 0.2s;
    }
    
    .navbar-menu a:hover,
    .navbar-menu a:focus {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .navbar-menu.active {
        display: flex !important;
        background: var(--primary) !important;
    }
    
    /* Garantir que o menu mobile tenha fundo azul sempre */
    .navbar-menu,
    .navbar-menu.active,
    .navbar .navbar-menu {
        background: var(--primary) !important;
        background-color: var(--primary) !important;
    }
    
    .navbar-menu .btn {
        width: 100%;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        min-width: auto;
    }
    
    .hero {
        min-height: 100vh;
        max-height: none;
        padding-top: 80px;
        padding-bottom: var(--spacing-lg);
    }
    
    .hero-content {
        padding-top: 60px;
    }
    
    .hero-content-left {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .hero-text-group {
        width: 100%;
        padding-right: 0;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-cta-card {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        margin: 0 auto;
        padding: var(--spacing-md);
        box-sizing: border-box;
    }
    
    .cta-card-badge {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-sm);
        word-wrap: break-word;
    }
    
    .cta-card-features {
        gap: 4px;
        padding: var(--spacing-sm) 0;
        flex-wrap: nowrap;
    }
    
    .cta-feature-item {
        flex: 1;
        min-width: 0;
        padding: var(--spacing-xs) 0;
    }
    
    .cta-feature-item svg {
        width: 24px;
        height: 24px;
    }
    
    .cta-feature-item span {
        font-size: 0.65rem;
        white-space: normal;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: block;
        text-align: center;
        padding-top: 4px;
    }
    
    .cta-card-buttons {
        gap: var(--spacing-sm);
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-whatsapp {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
    }
    
    .btn-cta-whatsapp {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .btn-cta-whatsapp svg {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
    }
    
    .lancamentos-grid {
        grid-template-columns: 1fr;
    }
    
    .investir-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: var(--spacing-sm);
    }
    
    .lightbox-next {
        right: var(--spacing-sm);
    }
    
    .section-mapa {
        padding: var(--spacing-lg) 0;
    }
    
    .map-container {
        height: 350px;
        margin-top: var(--spacing-md);
    }
}

/* ===================================
   RESPONSIVE - SMALL MOBILE
   =================================== */

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
    }
    
    .hero-cta-card {
        padding: var(--spacing-sm);
    }
    
    .cta-feature-item {
        flex: 1;
        min-width: 0;
    }
    
    .cta-feature-item span {
        font-size: 0.58rem;
        padding: 0 2px;
    }
    
    .btn-cta-primary,
    .btn-cta-whatsapp {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 var(--spacing-xs);
    }
    
    .hero-title {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-cta-card {
        padding: var(--spacing-xs);
    }
    
    .cta-card-badge {
        font-size: 0.75rem;
    }
    
    .cta-feature-item svg {
        width: 22px;
        height: 22px;
    }
    
    .cta-feature-item span {
        font-size: 0.52rem;
        padding: 0 1px;
    }
    
    .cta-card-features {
        gap: 2px;
        padding: var(--spacing-xs) 0;
    }
    
    .btn-cta-primary,
    .btn-cta-whatsapp {
        font-size: 0.75rem;
        padding: 10px var(--spacing-xs);
    }
}

/* ===================================
   MAPA SECTION
   =================================== */

.section-mapa {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: var(--spacing-lg);
}

#map-luzes {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .map-container {
        height: 400px;
    }
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float-icon {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.whatsapp-float-icon svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--primary);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-float-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-float-tooltip {
        font-size: 0.75rem;
        padding: 6px 10px;
        right: 65px;
    }
    
    .whatsapp-float:hover .whatsapp-float-tooltip {
        right: 70px;
    }
}

/* Evitar sobreposição com outros elementos */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 80px; /* Acima do footer em mobile */
    }
}
