/* ===== CSS Variables ===== */
:root {
    /* Colors - Sophisticated & Premium */
    --primary: #1a365d;
    --primary-dark: #0f2444;
    --primary-light: #2c5282;
    --accent: #c9a227;
    --accent-light: #d4b445;
    --accent-dark: #a8871f;
    
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-cream: #faf8f5;
    --bg-dark: #1a202c;
    
    --border-light: #e2e8f0;
    --border-medium: #cbd5e0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-hero: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #3182ce 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Mobile spacing */
    --section-padding-mobile: 60px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    position: relative;
}

/* Wrapper para conter todo o conteúdo */
body > *:not(.modal):not(.whatsapp-float) {
    max-width: 100vw;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    /* Prevenir overflow em todos os elementos */
    * {
        max-width: 100%;
    }
}

.highlight {
    color: var(--accent);
}

.section-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-medium);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--bg-white);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.0625rem;
}

.btn-full {
    width: 100%;
}

.btn-nav {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.btn-nav:hover {
    background: var(--accent-light);
}

/* ===== Urgency Top Bar ===== */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

.urgency-bar-icon {
    animation: shake 1s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.urgency-bar-btn {
    background: white;
    color: #dc2626;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.urgency-bar-btn:hover {
    background: #fef2f2;
    transform: scale(1.05);
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    animation: float-bounce 3s ease-in-out infinite;
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.whatsapp-float:hover {
    animation: none;
}

.whatsapp-float-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float-text {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Adjust header position due to urgency bar */
.header {
    top: 40px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-text {
    color: var(--bg-white);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bg-white);
    transition: all var(--transition-base);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding-top: 140px; /* Adjusted for urgency bar + header */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--bg-white);
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 20px;
    padding: 6px 12px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 4px;
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
        letter-spacing: 0.08em;
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    display: block;
    color: var(--accent);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    color: var(--bg-white);
    transition: all var(--transition-base);
}

.hero-card:first-child {
    grid-column: span 2;
}

.hero-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(201, 162, 39, 0.2);
    border-radius: 16px;
    margin-bottom: 16px;
}

.card-icon svg {
    stroke: var(--accent);
}

.hero-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== Vantagens Section ===== */
.vantagens {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.vantagem-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.vantagem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.vantagem-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, rgba(44, 82, 130, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 24px;
}

.vantagem-icon svg {
    stroke: var(--primary);
}

.vantagem-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.vantagem-card p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===== Como Funciona Section ===== */
.como-funciona {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--bg-white);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
}

.step-content {
    padding-top: 16px;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 1.0625rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.step-connector {
    width: 4px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    margin-left: 38px;
    border-radius: 2px;
}

/* ===== Comparativo Section ===== */
.comparativo {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
}

.comparativo-table {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: visible;
    box-shadow: var(--shadow-xl);
    margin-top: 20px;
}

.comparativo-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--primary);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 20px 20px 0 0;
}

.comparativo-header .comparativo-col {
    padding: 32px 32px 24px;
    text-align: center;
}

.comparativo-header .consorcio-col {
    background: var(--primary-dark);
    position: relative;
}

.badge-destaque {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.comparativo-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-light);
}

.comparativo-row:last-child {
    border-bottom: none;
}

.comparativo-col {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparativo-col.feature {
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-light);
}

.comparativo-col.consorcio-col {
    background: rgba(26, 54, 93, 0.03);
}

.check {
    color: #22c55e;
    font-size: 1.25rem;
    font-weight: 700;
}

.cross {
    color: #ef4444;
    font-size: 1.25rem;
    font-weight: 700;
}

.neutral {
    color: #f59e0b;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ===== Depoimentos Section ===== */
.depoimentos {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.depoimento-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.depoimento-card.featured {
    background: var(--gradient-primary);
    color: var(--bg-white);
    transform: scale(1.05);
}

.depoimento-rating {
    color: var(--accent);
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.depoimento-text {
    flex: 1;
    font-size: 1.0625rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.depoimento-card.featured .depoimento-text {
    color: rgba(255, 255, 255, 0.9);
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.depoimento-card.featured .depoimento-author {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-dark);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.depoimento-card.featured .author-info span {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

/* ===== Contato Section ===== */
.contato {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
    overflow-x: hidden;
}

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

.contato-info {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.contato-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contato-info > p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contato-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contato-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: var(--text-dark);
}

.contato-feature svg {
    stroke: #22c55e;
    flex-shrink: 0;
}

.contato-direct {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.contato-direct p {
    font-size: 0.9375rem;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--bg-white);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all var(--transition-base);
}

.whatsapp-btn:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.contato-form-wrapper {
    position: sticky;
    top: 160px; /* Adjusted for urgency bar */
    overflow: hidden;
}

.contato-form {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: var(--shadow-2xl);
    border: 3px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.contato-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: center;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contato-form .btn {
    margin-top: 8px;
}

.form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.form-disclaimer svg {
    stroke: var(--text-light);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--bg-white);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin-bottom: 12px;
}

.footer-contact svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal {
    margin-top: 8px;
    font-size: 0.8125rem !important;
    font-style: italic;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    max-width: 480px;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.2) 100%);
    border-radius: 50%;
    margin-bottom: 24px;
    animation: success-bounce 0.6s ease;
}

@keyframes success-bounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.modal-icon.success svg {
    stroke: #22c55e;
    animation: checkmark 0.5s ease-in-out 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

@keyframes checkmark {
    to { stroke-dashoffset: 0; }
}

.modal-icon svg {
    stroke: #22c55e;
}

.modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.modal-content p {
    font-size: 1.0625rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 32px;
}

.modal-content p strong {
    color: var(--primary);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .vantagens-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .depoimento-card.featured {
        transform: none;
    }
    
    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contato-info {
        padding: 0;
    }
    
    .contato-info > p {
        margin-bottom: 24px;
    }
    
    .contato-features {
        margin-bottom: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    /* Urgency bar mobile adjustments */
    .urgency-bar {
        flex-direction: column;
        gap: 6px;
        padding: 8px 12px;
        font-size: 0.75rem;
        text-align: center;
        line-height: 1.4;
    }
    
    .urgency-bar span {
        display: block;
    }
    
    .urgency-bar-btn {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-top: 4px;
    }
    
    .header {
        top: 70px;
    }
    
    /* WhatsApp float mobile */
    .whatsapp-float {
        padding: 12px;
        border-radius: 50%;
    }
    
    .whatsapp-float-text {
        display: none;
    }
    
    .nav {
        height: 70px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 140px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links .btn-nav {
        margin-top: 16px;
        text-align: center;
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero {
        min-height: auto;
        padding: 140px 0 60px; /* Adjusted for urgency bar */
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-card {
        padding: 24px 20px;
    }
    
    .hero-card:first-child {
        grid-column: auto;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 80px;
        height: 1px;
    }
    
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
    
    .comparativo-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
        border-radius: 12px;
    }
    
    .comparativo-header,
    .comparativo-row {
        min-width: 520px;
    }
    
    .comparativo-col {
        padding: 16px 20px;
        font-size: 0.875rem;
    }
    
    .badge-destaque {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-connector {
        margin-left: 0;
        margin: 24px auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .btn-large {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .vantagem-card {
        padding: 28px 20px;
    }
    
    .vantagem-card h3 {
        font-size: 1.2rem;
    }
    
    .vantagem-card p {
        font-size: 0.9rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .contato-info h2 {
        font-size: 1.75rem;
    }
    
    .contato-info > p {
        font-size: 1rem;
    }
    
    .contato-feature {
        font-size: 0.9rem;
    }
    
    .contato-form {
        padding: 28px 20px;
        border-radius: 16px;
        border-width: 2px;
    }
    
    .contato-form h3 {
        font-size: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Previne zoom no iOS */
    }
    
    .form-group label {
        font-size: 0.875rem;
    }
    
    .contato-form-wrapper {
        position: static;
    }
    
    .modal-content {
        padding: 28px 20px;
        margin: 16px;
        border-radius: 16px;
    }
    
    .modal-content h3 {
        font-size: 1.5rem;
    }
    
    .modal-content p {
        font-size: 1rem;
    }
    
    .modal-icon {
        width: 80px;
        height: 80px;
    }
    
    /* CTA Section mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .footer-links a,
    .footer-contact p {
        font-size: 0.875rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* WhatsApp float mobile */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    /* Scroll indicator hide on very small screens */
    .scroll-indicator {
        display: none;
    }
}

/* ===== NEW IRRESISTIBLE ELEMENTS ===== */

/* Hero Enhancements */
.hero-urgency {
    display: block;
    margin-top: 12px;
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust-badges span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Pulse Animation for CTA Buttons */
.btn-pulse {
    animation: pulse-glow 2s infinite;
    position: relative;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    opacity: 0;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(201, 162, 39, 0.7), 0 0 60px rgba(201, 162, 39, 0.3);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* CTA Section Enhancements */
.cta-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin: 28px 0 36px;
}

.cta-benefits span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
}

.cta-micro-text {
    margin-top: 20px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section Enhancements */
.contato-main-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 28px;
}

.contato-urgency-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #fff8e6 0%, #fff3cd 100%);
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 28px;
    animation: subtle-shake 3s ease-in-out infinite;
}

@keyframes subtle-shake {
    0%, 90%, 100% { transform: translateX(0); }
    92%, 96% { transform: translateX(-3px); }
    94%, 98% { transform: translateX(3px); }
}

.urgency-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.urgency-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.urgency-text strong {
    color: #b8860b;
    font-size: 1rem;
}

.urgency-text span {
    color: #8b6914;
    font-size: 0.9rem;
}

/* Social Proof Box */
.social-proof-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 28px;
}

.avatars-stack {
    display: flex;
    align-items: center;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-left: -10px;
}

.social-proof-box > span {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Form Enhancements */
.form-highlight-bar {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--text-dark);
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 16px 16px 0 0;
    margin: -48px -40px 24px -40px;
    width: calc(100% + 80px);
    box-sizing: border-box;
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.btn-cta-main {
    font-size: 1.1rem !important;
    padding: 20px 32px !important;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

@media (max-width: 480px) {
    .btn-cta-main {
        font-size: 0.95rem !important;
        padding: 16px 20px !important;
        gap: 8px;
    }
}

.btn-icon {
    font-size: 1.2rem;
}

.form-guarantees {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.guarantee-item svg {
    stroke: #22c55e;
}

/* Contato Feature Enhancements */
.contato-feature strong {
    color: var(--text-dark);
}

/* Responsive for new elements */
@media (max-width: 768px) {
    .hero-trust-badges {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .hero-trust-badges span {
        font-size: 0.85rem;
    }
    
    .contato-urgency-box {
        flex-direction: column;
        text-align: center;
        padding: 14px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .urgency-text {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .urgency-text strong {
        font-size: 0.9rem;
    }
    
    .urgency-text span {
        font-size: 0.85rem;
    }
    
    .social-proof-box {
        flex-direction: column;
        text-align: center;
        padding: 14px;
    }
    
    .social-proof-box > span {
        font-size: 0.85rem;
        word-wrap: break-word;
    }
    
    .form-highlight-bar {
        margin: -28px -20px 20px -20px;
        width: calc(100% + 40px);
        font-size: 0.8rem;
        padding: 10px 12px;
        border-radius: 14px 14px 0 0;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-benefits span {
        font-size: 0.9rem;
    }
    
    .form-guarantees {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .guarantee-item {
        font-size: 0.8rem;
    }
    
    .contato-main-text {
        font-size: 1rem;
    }
    
    .cta-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
}

/* ===== Extra Small Devices (320px) ===== */
@media (max-width: 360px) {
    :root {
        --section-padding: 50px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .vantagem-card {
        padding: 24px 16px;
    }
    
    .contato-form {
        padding: 24px 16px;
    }
    
    .form-highlight-bar {
        margin: -24px -16px 16px -16px;
        width: calc(100% + 32px);
        font-size: 0.75rem;
        padding: 8px 10px;
    }
    
    .urgency-bar {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .urgency-bar-btn {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ===== Landscape Mode Optimizations ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 120px 0 40px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .nav-links {
        top: 110px;
    }
}

/* ===== Touch Device Optimizations ===== */
@media (hover: none) and (pointer: coarse) {
    .btn:active {
        transform: scale(0.98);
    }
    
    .hero-card:hover {
        transform: none;
    }
    
    .vantagem-card:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }
    
    /* Larger touch targets */
    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .btn {
        min-height: 48px;
    }
}

/* ===== Safe Area for notch devices ===== */
@supports (padding: max(0px)) {
    .urgency-bar {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }
    
    .container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }
    
    .whatsapp-float {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
    }
}
