/* ==========================================================================
   MANZONI ASSESSORIA FINANCEIRA - OFFICIAL BRAND STYLESHEET
   Confiança • Transparência • Planejar • Orientar • Realizar
   ========================================================================== */

/* --- CSS Variables & Luxury Gold & Navy Theme Tokens --- */
:root {
    /* Official Logo Palette */
    --primary-navy: #051329;       /* Deep Navy Blue from Logo Background */
    --primary-blue: #0A1E3F;       /* Corporate Blue */
    --primary-navy-card: #0D2447;
    
    /* Metallic Gold Palette */
    --accent-gold: #D4AF37;        /* Classic Metallic Gold */
    --accent-gold-bright: #F0D278; /* Bright Gold Highlight */
    --accent-gold-dark: #A47E1B;   /* Deep Gold Shadow */
    --accent-gold-light: #FFF8E7;  /* Soft Tint */
    --gold-gradient: linear-gradient(135deg, #F5D77F 0%, #D4AF37 50%, #A47E1B 100%);
    --gold-gradient-hover: linear-gradient(135deg, #FFE395 0%, #E2BD47 50%, #B89028 100%);
    
    /* Functional Accents */
    --accent-emerald: var(--accent-gold);
    --accent-emerald-hover: #C59F2A;
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #20BA5A;

    /* Light Theme Backgrounds */
    --light-bg-1: #F8FAFC;
    --light-bg-2: #FFFFFF;
    --light-card-bg: #FFFFFF;
    --light-border: #E2E8F0;
    
    --text-dark: #0A192F;
    --text-muted: #475569;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;
    
    /* Shadows & Effects */
    --shadow-sm: 0 4px 12px rgba(5, 19, 41, 0.04);
    --shadow-md: 0 10px 30px rgba(5, 19, 41, 0.08);
    --shadow-lg: 0 20px 48px rgba(5, 19, 41, 0.16);
    --shadow-gold-glow: 0 0 25px rgba(212, 175, 55, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Default Light Mode Specifics */
    --bg-main: var(--light-bg-1);
    --bg-header: rgba(5, 19, 41, 0.95);
    --text-main: var(--text-dark);
    --text-sub: var(--text-muted);
    --card-bg: var(--light-bg-2);
    --card-border: var(--light-border);
}

/* Dark Mode Tokens Override */
[data-theme="dark"] {
    --bg-main: #030A17;
    --bg-header: rgba(5, 19, 41, 0.96);
    --text-main: #F1F5F9;
    --text-sub: #94A3B8;
    --card-bg: #07152B;
    --card-border: #132745;
    --light-bg-1: #051329;
    --light-bg-2: #07152B;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: var(--text-main);
    background-color: var(--bg-main);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* --- Layout Utility Classes --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 96px 0;
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.align-center { align-items: center; }
.text-center { text-align: center; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 48px; }
.mb-4 { margin-bottom: 24px; }

/* Colors Utility */
.bg-light { background-color: var(--light-bg-1); }
.bg-white { background-color: var(--card-bg); }
.bg-dark { background-color: var(--primary-navy); }
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
}

.text-white { color: #FFFFFF !important; }
.text-emerald { color: var(--accent-gold) !important; }
.text-gold { color: var(--accent-gold) !important; }
.text-success { color: #10B981 !important; }

/* Section Header Typography */
.section-header {
    margin-bottom: 56px;
}

.sub-title {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-sub);
    max-width: 680px;
    margin: 0 auto;
}

/* --- Buttons System --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary-navy);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.55);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-emerald {
    background: var(--gold-gradient);
    color: var(--primary-navy);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--accent-gold);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline-primary:hover {
    background: var(--gold-gradient);
    color: var(--primary-navy);
}

.btn-pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Top Announcement Bar --- */
.top-bar {
    background-color: #030B17;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.825rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-info i { color: var(--accent-gold); }
.top-bar-info .divider { color: rgba(212, 175, 55, 0.4); }

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link:hover { color: var(--accent-gold); }

.top-badge {
    background: rgba(212, 175, 55, 0.18);
    color: var(--accent-gold-bright);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* --- Navigation Header --- */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-header);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.brand-logo-img-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Cinzel', 'Outfit', serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FFFFFF;
}

.brand-slogan {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-top: 1px;
}

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

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold-bright);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.theme-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    background: var(--gold-gradient);
    color: var(--primary-navy);
    border-color: var(--accent-gold);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 72px 0 100px;
    background: linear-gradient(180deg, var(--primary-navy) 0%, #030B17 100%);
    color: #FFFFFF;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    pointer-events: none;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-gold);
    top: -150px;
    left: -150px;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: var(--primary-blue);
    right: -200px;
    bottom: -200px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 510px;
    gap: 48px;
    align-items: center;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--accent-gold-bright);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.hero-title .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-slogan-bar {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: var(--accent-gold);
}

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

.hero-trust-metrics {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-box {
    display: flex;
    flex-direction: column;
}

.metric-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.metric-divider {
    width: 1px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* --- Simulator Glass Card --- */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.simulator-card {
    padding: 28px;
    border-color: rgba(212, 175, 55, 0.3);
}

.simulator-header {
    margin-bottom: 20px;
}

.sim-title-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.sim-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.sim-desc {
    font-size: 0.875rem;
    color: var(--text-sub);
}

/* Convenio Tabs */
.convenio-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 20px;
    scrollbar-width: none;
}

.convenio-tabs::-webkit-scrollbar { display: none; }

.convenio-tab {
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 1px solid var(--card-border);
    background: var(--light-bg-1);
    color: var(--text-sub);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.convenio-tab.active, .convenio-tab:hover {
    background: var(--primary-navy);
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* Range Slider & Input Group */
.input-group {
    margin-bottom: 20px;
}

.input-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.input-label-row label {
    font-weight: 700;
    font-size: 0.9rem;
}

.amount-display {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--accent-gold);
}

input[type="range"] {
    width: 100%;
    height: 8px;
    background: var(--card-border);
    border-radius: 4px;
    outline: none;
    accent-color: var(--accent-gold);
    margin-bottom: 12px;
    cursor: pointer;
}

.presets-row {
    display: flex;
    gap: 6px;
    justify-content: space-between;
}

.preset-btn {
    flex: 1;
    padding: 6px 2px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    color: var(--text-sub);
    cursor: pointer;
    transition: var(--transition);
}

.preset-btn.active, .preset-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 700;
}

/* Months Selector */
.months-selector {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-top: 8px;
}

.month-pill {
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    color: var(--text-sub);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.month-pill.active, .month-pill:hover {
    background: var(--gold-gradient);
    color: var(--primary-navy);
    border-color: var(--accent-gold);
}

/* Result Box */
.calculation-result-box {
    background: linear-gradient(135deg, #051329 0%, #0C2245 100%);
    border-radius: var(--radius-md);
    padding: 20px;
    color: #FFFFFF;
    margin: 24px 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.calc-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.highlight-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--accent-gold-bright);
}

.calc-subinfo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}

.calc-subinfo i { color: var(--accent-gold); }

.sim-disclaimer {
    font-size: 0.75rem;
    color: var(--text-sub);
    text-align: center;
    margin-top: 12px;
}

/* --- Specialty Cards --- */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.card:hover .service-icon {
    background: var(--gold-gradient);
    color: var(--primary-navy);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-sub);
    margin-bottom: 20px;
}

.card-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link:hover {
    gap: 10px;
}

/* ==========================================================================
   CLEAN & MINIMALIST PROCESS STEPS (COMO FUNCIONA O ATENDIMENTO)
   ========================================================================== */
.clean-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.clean-step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    position: relative;
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.clean-step-card:hover {
    transform: translateY(-4px);
    border-top-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.clean-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.clean-step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-gold);
    opacity: 0.9;
}

.clean-step-icon {
    font-size: 1.5rem;
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.clean-step-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.clean-step-card p {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.6;
}

/* ==========================================================================
   CLEAN & MINIMALIST FAQ ACCORDION (ESCLAREÇA SUAS DÚVIDAS)
   ========================================================================== */
.clean-faq-wrapper {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.clean-faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    overflow: hidden;
}

.clean-faq-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.clean-faq-item.active {
    border-left: 4px solid var(--accent-gold);
    box-shadow: var(--shadow-sm);
}

.clean-faq-button {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.clean-faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: transform 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}

.clean-faq-item.active .clean-faq-toggle-icon {
    transform: rotate(180deg);
    background: var(--gold-gradient);
    color: var(--primary-navy);
}

.clean-faq-content {
    padding: 0 28px 24px;
    font-size: 0.95rem;
    color: var(--text-sub);
    line-height: 1.7;
    display: none;
}

/* ==========================================================================
   CLEAN & QUALIFIED "FALE COM A MANZONI" SECTION
   ========================================================================== */
.clean-contact-section {
    background: var(--light-bg-1);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.clean-contact-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 48px;
    align-items: center;
}

.clean-contact-desc {
    font-size: 1.05rem;
    color: var(--text-sub);
    margin-bottom: 32px;
    line-height: 1.6;
}

.clean-info-cards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.clean-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.clean-info-card:hover {
    border-color: var(--accent-gold);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.clean-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.clean-info-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-main);
}

.clean-info-text p {
    font-size: 0.875rem;
    color: var(--text-sub);
}

.underline-link {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Form Card Clean Styling */
.clean-form-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
}

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

.form-header-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-gold);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.clean-form-header h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
    color: var(--text-main);
}

.clean-form-header p {
    font-size: 0.9rem;
    color: var(--text-sub);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-group label i {
    color: var(--accent-gold);
    margin-right: 4px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    border-radius: var(--radius-sm);
    border: 1px solid var(--card-border);
    background: var(--bg-main);
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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

.form-trust-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--text-sub);
    text-align: center;
}

@media (max-width: 1024px) {
    .clean-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Pre-Footer Call to Action Banner --- */
.pre-footer-banner {
    background: linear-gradient(135deg, #07172E 0%, #0A244A 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.cta-box-card {
    background: rgba(5, 19, 41, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.cta-box-text h2 {
    font-size: 2.1rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.cta-box-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
}

.cta-box-btns {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* --- Maps Card Preview --- */
.maps-preview-card {
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.maps-preview-card iframe {
    width: 100%;
    height: 140px;
    border: 0;
}

.maps-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background: rgba(5, 19, 41, 0.8);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-gold-bright);
}

/* --- Badges de Segurança --- */
.security-badges-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.sec-badge i {
    color: var(--accent-gold);
    font-size: 1rem;
}

/* --- Footer --- */
.footer {
    padding-top: 80px;
    background-color: var(--primary-navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-socials a:hover {
    background: var(--gold-gradient);
    color: var(--primary-navy);
}

.footer-links-col h4, .footer-contact-col h4 {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

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

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
    line-height: 1.6;
}

.copyright-row {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Floating WhatsApp Widget --- */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.tooltip-text {
    position: absolute;
    right: 72px;
    background: #030A17;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid var(--accent-gold);
}

.floating-whatsapp:hover .tooltip-text {
    opacity: 1;
}

/* Modal */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-gold);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-sub);
    cursor: pointer;
}

.modal-icon {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.modal-card h3 { margin-bottom: 10px; }
.modal-card p { font-size: 0.95rem; color: var(--text-sub); margin-bottom: 24px; }

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-simulator-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .clean-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-box-card {
        flex-direction: column;
        text-align: center;
    }
    
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar-info .divider, .top-bar-info span:nth-child(3) { display: none; }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--primary-navy);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .clean-process-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
