/* ========================================
   MINHA OBRA LEGAL — Design System
   ======================================== */

/* --- CSS Variables / Tokens --- */
:root {
    /* Primary — Navy Blue (Trust & Authority) */
    --navy-900: #0a1628;
    --navy-800: #0f2240;
    --navy-700: #152d52;
    --navy-600: #1a3a5c;
    --navy-500: #1e4d7b;
    --navy-400: #2a6aa3;
    --navy-300: #4a8ec4;
    --navy-200: #7fb3dc;
    --navy-100: #c4ddf0;
    --navy-50: #e8f1f9;

    /* Accent — Deep Green (Legality & Success) */
    --green-900: #052e1f;
    --green-800: #0a4a33;
    --green-700: #0d6b4e;
    --green-600: #0f8c63;
    --green-500: #10b981;
    --green-400: #34d399;
    --green-300: #6ee7b7;
    --green-200: #a7f3d0;
    --green-100: #d1fae5;
    --green-50: #ecfdf5;

    /* Gold (Premium & Guarantees) */
    --gold-600: #92700c;
    --gold-500: #c9a84c;
    --gold-400: #d4b96a;
    --gold-300: #e8d48b;
    --gold-200: #f0e4b5;
    --gold-100: #faf3dc;

    /* Neutral */
    --gray-950: #0a0c10;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    /* Semantic */
    --danger-500: #ef4444;
    --danger-100: #fee2e2;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--navy-600) 0%, var(--green-700) 100%);
    --gradient-hero: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 40%, #0c2d3e 70%, var(--green-900) 100%);
    --gradient-cta: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 50%, var(--green-900) 100%);
    --gradient-text: linear-gradient(135deg, var(--green-400) 0%, var(--gold-400) 100%);
    --gradient-text-light: linear-gradient(135deg, var(--green-300) 0%, var(--gold-300) 100%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --shadow-glow-green: 0 0 40px rgba(16, 185, 129, 0.15);
    --shadow-glow-blue: 0 0 40px rgba(42, 106, 163, 0.15);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --container-padding: 0 24px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

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

/* --- Utility --- */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: var(--gradient-text-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--green-400) 0%, var(--gold-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes scroll-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

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

.animate-fade-in { animation: fadeIn 0.8s ease forwards; }
.animate-fade-in-up { animation: fadeInUp 0.8s ease forwards; }
.animate-fade-in-right { animation: fadeInRight 1s ease forwards; }
.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.3s; opacity: 0; }
.delay-3 { animation-delay: 0.5s; opacity: 0; }

/* --- Intersection Observer Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--white);
    transition: color var(--transition-base);
}

.navbar.scrolled .logo-text {
    color: var(--navy-800);
}

.navbar.scrolled .logo-icon svg rect,
.navbar.scrolled .logo-icon svg path,
.navbar.scrolled .logo-icon svg circle {
    stroke: var(--navy-600);
    fill: none;
}

.navbar.scrolled .logo-icon svg circle {
    fill: var(--navy-600);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-text);
    transition: width var(--transition-base);
    border-radius: 1px;
}

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

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

.navbar.scrolled .nav-link {
    color: var(--gray-600);
}

.navbar.scrolled .nav-link:hover {
    color: var(--navy-600);
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--white) !important;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(26, 58, 92, 0.3);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 58, 92, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar.scrolled .mobile-toggle span {
    background: var(--navy-800);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--green-500);
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--navy-400);
    bottom: -50px;
    left: -50px;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--gold-500);
    top: 50%;
    left: 40%;
    opacity: 0.06;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    color: var(--green-300);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--white);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    line-height: 1.4;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(13, 107, 78, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(13, 107, 78, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 0;
    align-items: center;
}

.hero-stat {
    text-align: center;
    padding: 0 28px;
}

.hero-stat:first-child {
    padding-left: 0;
}

.stat-number, .stat-prefix, .stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

/* Hero Visual Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-card-stack {
    position: relative;
    width: 380px;
    height: 380px;
}

.hero-card {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-card-back {
    width: 340px;
    height: 320px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    top: 10px;
    left: 40px;
    transform: rotate(4deg);
    backdrop-filter: blur(10px);
}

.hero-card-front {
    width: 340px;
    height: 340px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    top: 20px;
    left: 10px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 28px;
    animation: float 5s ease-in-out infinite;
}

.card-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 25%,
        rgba(255,255,255,0.06) 37%,
        transparent 63%
    );
    animation: shimmer 4s ease-in-out infinite;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.card-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-400);
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-400);
    background: rgba(16, 185, 129, 0.12);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.card-body {
    flex: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--green-400);
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-400);
    animation: pulse-glow 2s infinite;
}

.card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.savings-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 4px;
}

.savings-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    color: rgba(255,255,255,0.3);
    animation: scroll-bounce 2s infinite;
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    background: var(--gray-50);
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.trust-item svg {
    color: var(--navy-600);
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

.trust-item span {
    font-size: 0.78rem;
    color: var(--gray-500);
    line-height: 1.3;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-600);
    background: var(--green-50);
    border: 1px solid var(--green-100);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
    padding: var(--section-padding);
    background: var(--white);
}

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

.benefit-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon-blue {
    background: var(--navy-50);
    color: var(--navy-600);
}

.benefit-icon-green {
    background: var(--green-50);
    color: var(--green-700);
}

.benefit-icon-gold {
    background: var(--gold-100);
    color: var(--gold-600);
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.benefit-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========================================
   COMPARISON SECTION
   ======================================== */
.comparison {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto 40px;
}

.comparison-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all var(--transition-base);
}

.comparison-with {
    border-color: var(--green-300);
    box-shadow: var(--shadow-glow-green);
    transform: scale(1.03);
}

.comparison-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.comparison-header {
    padding: 32px 28px 24px;
    text-align: center;
}

.comparison-header-red {
    background: linear-gradient(180deg, var(--danger-100) 0%, var(--white) 100%);
}

.comparison-header-green {
    background: linear-gradient(180deg, var(--green-100) 0%, var(--white) 100%);
}

.comparison-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.comparison-header-red .comparison-icon-wrapper {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-500);
}

.comparison-header-green .comparison-icon-wrapper {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green-600);
}

.comparison-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.comparison-subtitle {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.comparison-body {
    padding: 8px 28px 28px;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-row:last-of-type {
    border-bottom: none;
}

.row-label {
    font-size: 0.88rem;
    color: var(--gray-600);
    font-weight: 500;
}

.row-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
}

.row-value-negative {
    color: var(--danger-500);
}

.row-value-positive {
    color: var(--green-700);
}

.comparison-total {
    margin-top: 16px;
    padding: 18px;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    text-align: center;
}

.comparison-with .comparison-total {
    background: var(--green-50);
}

.total-label {
    display: block;
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.total-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
}

.total-value-red {
    color: var(--danger-500);
}

.total-value-green {
    color: var(--green-700);
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.comparison-vs span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy-800);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    box-shadow: var(--shadow-lg);
}

/* Savings Banner */
.savings-banner {
    background: var(--gradient-cta);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: var(--shadow-2xl);
}

.savings-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.savings-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-400);
    flex-shrink: 0;
}

.savings-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.savings-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.savings-percentage {
    font-size: 0.85rem;
    color: var(--green-400);
    font-weight: 600;
}

/* ========================================
   SECURITY SECTION
   ======================================== */
.security {
    padding: var(--section-padding);
    background: var(--white);
}

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

.security-card {
    position: relative;
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-slow);
    overflow: hidden;
}

.security-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.security-card:hover .security-card-glow {
    opacity: 1;
}

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

.security-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 16px;
}

.security-icon {
    margin-bottom: 20px;
}

.security-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.security-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.security-seal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: var(--gold-100);
    color: var(--gold-600);
    font-size: 0.78rem;
    font-weight: 600;
}

.security-seal-green {
    background: var(--green-50);
    color: var(--green-700);
}

.security-seal-blue {
    background: var(--navy-50);
    color: var(--navy-600);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.process-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--green-300) 0%, var(--navy-300) 100%);
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(13, 107, 78, 0.25);
}

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

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--gray-300);
}

.faq-item.active {
    border-color: var(--green-300);
    box-shadow: var(--shadow-glow-green);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
    gap: 16px;
}

.faq-question span {
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--green-600);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.8;
}

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

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--green-700);
    opacity: 0.1;
    top: -100px;
    right: 10%;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--navy-400);
    opacity: 0.08;
    bottom: -80px;
    left: 5%;
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-full);
    color: var(--green-400);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.cta-text p {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 28px;
}

.cta-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    font-weight: 500;
}

.cta-features svg {
    color: var(--green-400);
    flex-shrink: 0;
}

/* CTA Form */
.cta-form-wrapper {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-size: 0.92rem;
    outline: none;
    transition: all var(--transition-fast);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--green-400);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 16px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--green-500);
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    cursor: pointer;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-group select option {
    background: var(--navy-800);
    color: var(--white);
}

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

.form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gray-950);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

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

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    max-width: 340px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    padding: 6px 0;
    transition: all var(--transition-fast);
}

.footer-column a:hover {
    color: var(--green-400);
    transform: translateX(4px);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
}

.footer-legal {
    margin-top: 8px;
    font-size: 0.75rem !important;
    color: rgba(255,255,255,0.2) !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

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

    .security-grid .security-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .cta-content {
        grid-template-columns: 1fr;
    }

    .savings-banner {
        flex-direction: column;
        text-align: center;
    }

    .savings-content {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 70px 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        background: var(--navy-900);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.8);
    }

    .navbar.scrolled .nav-link {
        color: rgba(255,255,255,0.8);
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comparison-vs {
        padding: 8px 0;
    }

    .comparison-with {
        transform: scale(1);
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .security-grid .security-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .savings-banner {
        padding: 28px 24px;
    }

    .savings-amount {
        font-size: 1.5rem;
    }
}

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

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn {
        justify-content: center;
    }

    .cta-form-wrapper {
        padding: 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 12px 24px 12px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float-pulse 2s infinite;
}

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

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes float-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 14px;
    }
    .whatsapp-float span {
        display: none; /* No mobile ocultamos o texto para sobrar espaço na tela */
    }
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}
