:root {
    /* Blue Corporate Premium Palette */
    --bg-base: #FFFFFF;
    --bg-offwhite: #F8FAFC;
    --bg-light-blue: #F1F5F9;
    --bg-light-blue-alt: #E2E8F0;
    
    --bg-dark-main: #0B1120;
    --bg-dark-card: #151E32;
    --text-light-gray: #CBD5E1;
    
    --blue-corp: #1E3A8A;
    --blue-dark: #0F172A;
    
    --gold-main: #D4AF37;
    
    --border-light: rgba(226, 232, 240, 0.8);
    
    --text-gray: #475569;
    
    --font-title: 'Cinzel', serif;
    --font-text: 'Inter', sans-serif;
    
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-xl: 8rem;
    
    --radius-sm: 12px;
    --radius-md: 20px;
    
    --shadow-soft: 0 8px 30px rgba(15, 23, 42, 0.04);
    --shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.08);
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-dark-bg: rgba(21, 30, 50, 0.6);
    --glass-dark-border: rgba(255, 255, 255, 0.08);
}

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

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

body.blue-corporate-theme {
    background-color: var(--bg-base);
    color: var(--text-gray);
    font-family: var(--font-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* DECORATIVE BACKGROUND ELEMENTS */
.modern-bg-elements {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(30, 58, 138, 0.02) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.02) 0%, transparent 40%);
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: var(--bg-light-blue);
    top: -200px;
    right: -200px;
}

.circle-2 {
    width: 500px;
    height: 500px;
    background: rgba(212, 175, 55, 0.05); /* very faint gold */
    bottom: 20%;
    left: -100px;
}

.grid-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(11, 28, 44, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(11, 28, 44, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

/* Utilities */
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

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

.responsive-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-sm);
    display: block;
}



.bg-white {
    background-color: var(--bg-base);
}

.bg-light-blue-alt {
    background: radial-gradient(circle at center, var(--bg-base) 0%, var(--bg-light-blue-alt) 100%);
}

.bg-light-blue {
    background: radial-gradient(circle at center, var(--bg-base) 0%, var(--bg-light-blue) 100%);
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.05), transparent) 1;
}

.text-center { text-align: center; }
.relative { position: relative; }
.mt-spacing { margin-top: var(--spacing-md); }
.mb-spacing { margin-bottom: var(--spacing-md); }



.eyebrow {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-corp);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--blue-corp);
    margin-right: 10px;
    vertical-align: middle;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(15, 23, 42, 0.04);
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}



.btn-outline-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--blue-corp);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--blue-corp);
}

.btn-outline-blue:hover {
    background: rgba(18, 61, 122, 0.05);
}

.btn-large {
    width: 100%;
    max-width: 400px;
}

/* Header */
.saas-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(11, 28, 44, 0.05);
    z-index: 1000;
}

.header-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 32px;
    filter: invert(10%) sepia(21%) saturate(5436%) hue-rotate(193deg) brightness(91%) contrast(97%); /* Dark Blueish */
}

.desktop-nav {
    display: none;
    gap: 2.5rem;
}

.desktop-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--blue-corp);
}

.header-btn {
    display: none;
}

/* 1. Hero Section */
.hero-blue {
    position: relative;
    padding: 160px 0 100px 0;
    background: var(--bg-base);
    border-bottom: 1px solid var(--border-light);
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -2;
}

.hero-bg-overlay {
    display: none; /* Removed old white overlay */
}

.hero-bg-shapes {
    display: none; /* Removed */
}

.premium-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1120 0%, #101c2e 100%);
}

.premium-radial-glow {
    position: absolute;
    top: -20%; left: -10%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.premium-radial-glow.alt {
    top: auto; bottom: -30%; left: auto; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    filter: blur(80px);
}

.premium-mesh-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 50%; left: -10%;
    transform: translateY(-50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-headline {
    font-family: var(--font-title);
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #ffffff; /* Atualizado para contraste no fundo escuro */
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.text-gold-metallic {
    background: linear-gradient(to right, #D4AF37, #F5D06F, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.hero-subheadline {
    font-family: var(--font-text);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85); /* Atualizado para fundo escuro */
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
}

.hero-benefits-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.hero-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hb-icon {
    width: 32px; height: 32px;
    color: #60a5fa; /* Soft blue icon */
    flex-shrink: 0;
}

.hb-content {
    display: flex;
    flex-direction: column;
}

.hb-content strong {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 600;
}

.hb-content span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--blue-corp) 0%, var(--blue-dark) 100%);
    color: #FFFFFF;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.25);
    max-width: 400px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-cta svg {
    width: 20px; height: 20px;
    transition: transform 0.3s ease;
}

.btn-hero-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #2563EB 0%, var(--blue-corp) 100%);
}

.btn-hero-cta:hover svg {
    transform: translateX(4px);
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.mockup-wrapper-modern {
    position: relative;
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.mockup-glow-blue {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.2) 0%, transparent 60%);
    filter: blur(80px);
    z-index: -1;
}

.mockup-circle-1 {
    position: absolute;
    top: 10%; right: 10%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(rgba(18, 61, 122, 0.05), transparent);
    z-index: -1;
}

.mockup-circle-2 {
    position: absolute;
    bottom: 5%; left: 10%;
    width: 150px; height: 150px;
    border-radius: 50%;
    background: radial-gradient(rgba(212, 175, 55, 0.05), transparent);
    z-index: -1;
}

.mockup-img-floating {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(11, 28, 44, 0.15));
}

/* 2. Market Section */
.market-saas {
    position: relative;
    background: #020617; /* Deep petrol base */
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.1), transparent) 1;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.market-bg-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0; height: 100%;
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.16982787181064085.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.market-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0; height: 100%;
    /* Gradient from dark left to lighter right */
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(8, 47, 73, 0.85) 50%, rgba(2, 6, 23, 0.7) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.market-bg-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.market-circle-1 {
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(rgba(56, 189, 248, 0.08), transparent 60%);
    filter: blur(60px);
}

.market-circle-2 {
    position: absolute;
    bottom: -10%; left: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(rgba(30, 58, 138, 0.15), transparent 70%);
    filter: blur(50px);
}

.market-dots {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.03;
    mix-blend-mode: overlay;
}

/* Dark Mode Adapters for the New Background (Preserving layout/typography) */
.market-saas .section-title-saas { color: #ffffff; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.market-saas .section-text-saas { color: rgba(255,255,255,0.7); }
.market-saas .eyebrow-saas { color: #38bdf8; }
.market-saas .text-blue-strong { color: #7dd3fc; font-weight: 600; }
.market-saas .stat-card-saas { background: rgba(255, 255, 255, 0.02); border-color: rgba(255, 255, 255, 0.05); }
.market-saas .stat-card-saas::before { background: #38bdf8; }
.market-saas .stat-card-saas strong { color: #ffffff; }
.market-saas .stat-card-saas p { color: rgba(255,255,255,0.6); }
.market-saas .stat-icon-saas { background: rgba(56, 189, 248, 0.1); color: #38bdf8; }
.market-saas .stat-card-saas:hover { border-color: rgba(56, 189, 248, 0.2); background: rgba(255, 255, 255, 0.04); }

.z-index-2 {
    position: relative;
    z-index: 2;
}

.market-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.market-content {
    text-align: left;
}

.eyebrow-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.eyebrow-saas {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue-corp);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.eyebrow-line-gold {
    width: 30px;
    height: 2px;
    background: var(--gold-main);
    margin-top: 5px;
}

.headline-container {
    margin-bottom: 1.5rem;
}

.headline-line-gold {
    width: 40px;
    height: 1px;
    background: rgba(212, 175, 55, 0.5);
    margin: 10px 0;
}

.section-title-saas {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(15, 23, 42, 0.04);
}

.section-text-saas {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 600px;
}

.text-blue-strong {
    color: var(--blue-corp);
    font-weight: 600;
}

.market-stats-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card-saas {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Small blue detail on the side */
.stat-card-saas::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: var(--blue-corp);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.stat-card-saas:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-hover);
    border-color: rgba(30, 58, 138, 0.15);
}

.stat-icon-saas {
    width: 28px; height: 28px;
    color: var(--blue-corp);
    flex-shrink: 0;
}

.stat-text-saas {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-text-saas strong {
    font-size: 1.15rem;
    color: var(--blue-dark);
    font-weight: 700;
}

.stat-text-saas p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* 3. Why More Section */
.bg-dark-premium {
    background-color: var(--bg-dark-main);
    background-image: radial-gradient(circle at top right, rgba(30, 58, 138, 0.15) 0%, transparent 60%),
                      radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent) 1;
}

.premium-bg-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.premium-glow-left {
    position: absolute;
    top: -20%; left: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(18, 61, 122, 0.15) 0%, transparent 60%);
    filter: blur(80px);
}

.premium-glow-right {
    position: absolute;
    bottom: -20%; right: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    filter: blur(80px);
}

.premium-grid-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}



.eyebrow-premium {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    color: #EAF2FF;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.eyebrow-line-premium {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-main), transparent);
    margin-top: 5px;
}

.section-title-premium {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 1.5rem 0;
    text-shadow: 0 4px 30px rgba(255, 255, 255, 0.15);
}

.section-subtext-premium {
    font-family: var(--font-text);
    font-size: 1.15rem;
    color: #A0ABC0;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.premium-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.premium-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.premium-card-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 2px;
    background: radial-gradient(ellipse at center, rgba(18, 61, 122, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(30, 58, 138, 0.2);
    box-shadow: var(--shadow-hover);
}

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

.premium-icon {
    width: 36px; height: 36px;
    color: var(--blue-corp);
    margin-bottom: 1.5rem;
}

.premium-card h3 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 1rem;
}

.premium-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.premium-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(18, 61, 122, 0.1), transparent);
    margin-bottom: 1.5rem;
}

.premium-micro-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.premium-micro-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
}

.premium-micro-list svg {
    width: 16px; height: 16px;
    color: var(--blue-corp);
}

/* 4. Origins Section */
.origins-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.origins-text {
    text-align: left;
}

.origins-text .section-text {
    margin-left: 0;
    margin-right: 0;
}

.origins-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.city-panel {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-sm);
    position: relative;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.city-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.city-panel:hover img {
    transform: scale(1.05);
}

.city-overlay-blue {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(7, 21, 34, 0.85) 0%, rgba(11, 28, 44, 0.1) 50%);
    transition: background 0.4s ease;
    pointer-events: none;
}

.city-panel:hover .city-overlay-blue {
    background: linear-gradient(to top, rgba(7, 21, 34, 0.95) 0%, rgba(11, 28, 44, 0.2) 60%);
}

.city-name {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}



/* 6. Features / Estrutura */
.premium-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.premium-feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.premium-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(30, 58, 138, 0.2);
    box-shadow: var(--shadow-hover);
}

.premium-feature-card:hover .premium-card-glow {
    opacity: 1;
}

.feature-icon-premium {
    width: 32px; height: 32px;
    color: var(--blue-corp);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(30, 58, 138, 0.15));
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.premium-feature-card:hover .feature-icon-premium {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(30, 58, 138, 0.25));
}

.premium-feature-card h3 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--blue-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.premium-feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.premium-micro-list-inline {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
}

.premium-micro-list-inline li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
}

.premium-micro-list-inline svg {
    width: 14px; height: 14px;
    color: var(--blue-corp);
}

/* 7. Bonus */
.bonus-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.bonus-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.bonus-text {
    flex: 1;
    text-align: left;
}

.bonus-label {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-corp);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: var(--bg-light-blue);
    padding: 0.3rem 1rem;
    border-radius: 4px;
}

.bonus-text h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.bonus-text p {
    color: var(--text-light-gray);
    font-size: 1.05rem;
}

.bonus-image-panel {
    flex: 1;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-image-panel img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(11,28,44,0.08));
}

/* 8. Real Market */
.real-market-premium {
    position: relative;
    padding: var(--spacing-xl) 0;
}

.dashboard-panel-premium {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 4rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.dashboard-glow {
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 80%;
    background: radial-gradient(ellipse, rgba(18, 61, 122, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.dashboard-decor-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--blue-corp), transparent);
}

.title-divider-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.title-divider-gold .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.title-divider-gold .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-main);
    box-shadow: 0 0 8px var(--gold-main);
}

.text-highlight-gold {
    color: var(--gold-main);
    font-weight: 600;
}

.premium-chart-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 4rem;
}

.chart-grid-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
}

.grid-line.horizontal {
    left: 0; right: 0; height: 1px;
}

.grid-line.vertical {
    top: 0; bottom: 0; width: 1px;
}

.chart-svg-wrapper {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.chart-svg-wrapper svg {
    width: 100%;
    height: 100%;
}

.chart-labels {
    position: absolute;
    bottom: -30px;
    left: 0; right: 0;
    height: 20px;
}

.chart-label {
    position: absolute;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: #A0ABC0;
    font-weight: 500;
    letter-spacing: 1px;
}

/* 9. Audience */
.audience-cards-premium {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.audience-card {
    background: var(--glass-dark-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.audience-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.audience-card-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 2px;
    background: radial-gradient(ellipse at center, rgba(18, 61, 122, 0.5) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.audience-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    color: var(--blue-corp);
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-icon svg { width: 100%; height: 100%; }

.audience-text-content {
    flex: 1;
    text-align: left;
}

.audience-text-content h3 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
}

.audience-text-content p {
    font-size: 0.95rem;
    color: var(--text-light-gray);
    line-height: 1.5;
}

/* 10. Access */
.access-grid-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.access-feature-card {
    background: var(--glass-dark-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.access-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.access-card-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 2px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.6) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.access-feature-card:hover .access-card-glow {
    opacity: 1;
}

.acc-icon-premium {
    width: 40px; height: 40px;
    color: var(--gold-main);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.acc-icon-premium svg { width: 100%; height: 100%; }

.acc-content h4 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-bottom: 0.8rem;
}

.acc-content p {
    font-size: 0.95rem;
    color: var(--text-light-gray);
    line-height: 1.5;
}

/* 11 & 12. Timer & Offer Section */
.offer-premium {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.decor-circle {
    position: absolute;
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(18, 61, 122, 0.3);
    pointer-events: none;
}

/* Offer Structure */
.offer-structure-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 90%;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .offer-structure-container {
        width: 100%;
    }
}

.timer-premium-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 420px;
}

.timer-urgency-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #A0ABC0;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timer-display-premium span {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.pricing-panel-premium {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricing-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 100%; height: 200px;
    background: radial-gradient(ellipse at top, rgba(18, 61, 122, 0.15), transparent 70%);
    pointer-events: none;
}

.pricing-header-decor {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.pricing-header-decor .line {
    width: 40px; height: 2px;
    background: var(--gold-main);
}

.pricing-title-premium {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #EAF2FF;
    margin-bottom: 2rem;
}

.pricing-amount-premium {
    font-family: var(--font-title);
    font-size: 4.5rem;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.pricing-amount-premium .currency-gold {
    font-size: 1.5rem;
    margin-top: 0.6rem;
    margin-right: 0.5rem;
    color: var(--gold-main);
}

.pricing-amount-premium .price-number {
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.pricing-amount-premium .cents-premium {
    font-size: 2rem;
    margin-top: 0.6rem;
    color: #A0ABC0;
}

.btn-solid-premium {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue-corp), #0B1C2C);
    color: #FFFFFF;
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(18, 61, 122, 0.3);
}

.btn-solid-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(18, 61, 122, 0.4);
    background: linear-gradient(135deg, #184A8F, #0B1C2C);
}

.pricing-micro-details p {
    font-size: 0.85rem;
    color: #5C6675;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(18, 61, 122, 0.1);
    border: 1px solid rgba(18, 61, 122, 0.4);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    color: var(--text-light-gray);
    font-weight: 500;
    font-size: 0.95rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 0 20px rgba(18, 61, 122, 0.4);
    text-align: left;
}

.guarantee-icon {
    width: 24px; height: 24px;
    color: var(--blue-corp);
}

.guarantee-icon svg { width: 100%; height: 100%; }



/* 14. Footer */
.footer-blue {
    background: var(--blue-dark);
    padding: 4rem 0 2rem 0;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.footer-brand img {
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-copy {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-top: 2rem;
}

/* 5. How It Works Premium Framework */
.how-it-works-premium {
    position: relative;
    overflow: hidden;
}



.framework-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.framework-step {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.step-bg-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--font-title);
    font-size: 8rem;
    font-weight: 800;
    color: rgba(18, 61, 122, 0.03);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.framework-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 28, 44, 0.04);
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.framework-card-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 70%; height: 2px;
    background: radial-gradient(ellipse at center, rgba(18, 61, 122, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease, height 0.4s ease;
}

.framework-card:hover {
    transform: translateY(-8px);
    border-color: rgba(18, 61, 122, 0.15);
    box-shadow: 0 15px 35px rgba(11, 28, 44, 0.08);
}

.framework-card:hover .framework-card-glow {
    opacity: 1;
    height: 3px;
}

.framework-icon {
    width: 40px; height: 40px;
    color: var(--blue-corp);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(30, 58, 138, 0.15));
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.framework-card:hover .framework-icon {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(30, 58, 138, 0.25));
}

.framework-card h3 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--blue-dark);
    margin-bottom: 1rem;
}

.framework-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.framework-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(18, 61, 122, 0.3), rgba(18, 61, 122, 0.1));
}

.connector-arrow {
    color: var(--blue-corp);
    width: 24px;
    height: 24px;
    opacity: 0.5;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Medium (Tablets) */
@media (min-width: 576px) {
    .access-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .audience-card {
        width: calc(50% - 0.75rem);
    }
}

/* Responsive Desktop */
@media (min-width: 992px) {
    .desktop-nav { display: flex; }
    .header-btn { display: inline-flex; }
    
    .hero-blue {
        padding: 180px 0 120px 0;
    }
    
    .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .hero-text { flex: 1; max-width: 550px; }
    .hero-headline { font-size: 3.5rem; }
    .hero-visual { flex: 1; }
    
    .market-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .premium-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .origins-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .framework-timeline {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .framework-step {
        flex: 1;
        max-width: 350px;
    }

    .framework-connector {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding-top: 50px;
    }

    .connector-line {
        width: 40px;
        height: 2px;
        background: linear-gradient(to right, rgba(18, 61, 122, 0.3), rgba(18, 61, 122, 0.1));
    }

    .connector-arrow {
        transform: rotate(-90deg);
        margin-left: -5px;
    }
    
    .step-bg-number {
        top: -30px;
        right: -20px;
        font-size: 10rem;
    }
    

    
    .premium-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bonus-row {
        flex-direction: row;
    }
    
    .bonus-row.reverse {
        flex-direction: row-reverse;
    }
    
    .access-grid-premium {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .audience-card {
        width: calc(33.333% - 1rem);
    }

    .pricing-panel-premium {
        padding: 3rem 2.5rem;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-copy {
        margin-top: 0;
    }
}



/* =======================================================
   REFINED OFFER SECTION (PREMIUM CONVERSION)
   ======================================================= */
.offer-premium {
    position: relative;
    padding: 6rem 0;
    background-color: var(--bg-dark-main);
    color: #fff;
    overflow: hidden;
}
.offer-bg-premium {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}
.offer-glow-bg {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.15) 0%, transparent 60%);
    filter: blur(80px);
}
.offer-abstract-lines {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px);
}
.offer-structure-container {
    display: flex; flex-direction: column; align-items: center; gap: 2.5rem;
    max-width: 600px; margin: 0 auto;
}

/* TIMER */
.timer-premium-glass {
    background: var(--glass-dark-bg);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(30, 58, 138, 0.2);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    width: 100%;
}
.timer-urgency-text {
    font-size: 0.95rem; color: #93c5fd; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
}
.timer-display-premium span {
    font-family: var(--font-text); font-size: 2.5rem; font-weight: 800; color: #fff; letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
}

/* PRICING CARD */
.pricing-panel-premium {
    background: linear-gradient(145deg, #101c2e 0%, #0a1120 100%);
    border-radius: var(--radius-md);
    padding: 3rem 2.5rem;
    position: relative;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.pricing-glow-border {
    position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(212,175,55,0.4) 0%, rgba(30,58,138,0.1) 50%, rgba(30,58,138,0.5) 100%);
    z-index: -1;
    filter: blur(3px);
}
.line-gold-elegant {
    width: 40px; height: 3px; background: var(--gold-main); margin: 0 auto 1.5rem; border-radius: 3px;
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
}
.pricing-title-premium {
    font-family: var(--font-title); font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem;
}
.pricing-subtitle-premium {
    font-size: 0.95rem; color: var(--text-light-gray); margin-bottom: 2rem;
}
.pricing-amount-premium {
    display: flex; align-items: baseline; justify-content: center; gap: 0.3rem; margin-bottom: 1rem;
}
.currency-gold { font-size: 1.5rem; color: var(--gold-main); font-weight: 600; }
.price-number { font-size: 4.5rem; font-weight: 800; color: #fff; line-height: 1; }
.cents-premium { font-size: 1.8rem; font-weight: 600; color: var(--text-light-gray); }

.pricing-micro-details {
    display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.pricing-micro-details span {
    display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: #93c5fd;
}
.pricing-micro-details svg { width: 14px; height: 14px; }

.pricing-benefits-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2.5rem;
    text-align: left; background: rgba(255,255,255,0.02); padding: 1.5rem; border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.03);
}
.p-benefit {
    display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: #fff;
}
.p-benefit svg { width: 18px; height: 18px; color: var(--gold-main); }

/* CTA BUTTON */
.btn-offer-premium {
    display: flex; align-items: center; justify-content: center; gap: 0.8rem;
    width: 100%; padding: 1.4rem;
    background: linear-gradient(135deg, var(--blue-corp) 0%, #2563EB 100%);
    color: #fff; font-family: var(--font-title); font-size: 1.15rem; font-weight: 700;
    border-radius: var(--radius-sm); text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-offer-premium svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.btn-offer-premium:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.6);
    background: linear-gradient(135deg, #2563EB 0%, #3b82f6 100%);
}
.btn-offer-premium:hover svg { transform: translateX(5px); }

/* SECURITY PROOFS */
.pricing-security-proofs {
    display: flex; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap;
}
.pricing-security-proofs span {
    display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-light-gray); opacity: 0.7;
}
.pricing-security-proofs svg { width: 14px; height: 14px; }

/* GUARANTEE BADGE */
.guarantee-badge-premium {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    padding: 1rem 2rem; background: rgba(255,255,255,0.03); border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08); width: 100%; max-width: 500px;
    color: #fff; font-size: 0.95rem; font-weight: 500; margin: 0 auto;
}
.guarantee-badge-premium .guarantee-icon {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; background: rgba(212,175,55,0.1);
    border-radius: 50%; color: var(--gold-main);
}
.guarantee-badge-premium svg { width: 18px; height: 18px; }

/* MOBILE OVERRIDES ALREADY HANDLED IN BOTTOM MEDIA QUERY, BUT I CAN ADD A FEW HERE */
@media (max-width: 767px) {
    .pricing-panel-premium { padding: 2rem 1.5rem; }
    .pricing-title-premium { font-size: 1.5rem; }
    .price-number { font-size: 3.5rem; }
    .pricing-benefits-grid { grid-template-columns: 1fr; }
    .pricing-micro-details { flex-direction: column; gap: 0.5rem; align-items: center; }
}

/* =======================================================
   MOBILE MENU (HAMBURGER & OVERLAY)
   ======================================================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px; height: 20px;
    background: transparent; border: none;
    cursor: pointer; z-index: 1001;
}
.menu-toggle span {
    display: block; width: 100%; height: 2px;
    background-color: var(--blue-dark);
    border-radius: 2px; transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu-overlay.active {
    opacity: 1; visibility: visible;
}
.mobile-nav {
    display: flex; flex-direction: column;
    align-items: center; gap: 2rem;
}
.mobile-nav a.mobile-link {
    font-family: var(--font-title);
    font-size: 1.5rem; font-weight: 600;
    color: var(--blue-dark); text-decoration: none;
    text-transform: uppercase;
}

/* =======================================================
   MOBILE PREMIUM REFINEMENTS (MAX-WIDTH: 991PX)
   ======================================================= */
@media (max-width: 991px) {
    /* 1. Container & Spacing */
    .container {
        width: 92%;
        padding: 0;
    }
    .section {
        padding: 4rem 0; /* Confortável respiro */
    }

    /* 2. Menu Mobile */
    .saas-header { height: 75px; }
    .header-inner { padding: 0 1rem; }
    .desktop-nav { display: none !important; }
    .menu-toggle { display: flex; }
    .header-btn { 
        display: inline-flex; 
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* 3. Typography & Text */
    .hero-headline {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .hero-subheadline {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    .section-title, .section-title-saas, .section-title-premium {
        font-size: 1.85rem;
        line-height: 1.25;
    }
    .section-text, .section-text-saas, .section-subtext-premium {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 1rem;
    }

    /* 4. Hero Section - Ordem e Espaçamento */
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .hero-text {
        display: contents; /* Libera os filhos para reordenamento flex */
    }
    .hero-headline { order: 1; }
    .hero-subheadline { order: 2; margin-bottom: 1rem; }
    
    .hero-visual {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        margin-bottom: 2rem;
        position: relative;
    }
    .mockup-img-floating {
        width: 95%;
        max-width: 380px;
        box-shadow: 0 25px 50px rgba(0,0,0,0.3); /* Sombra elegante */
        border-radius: var(--radius-md);
    }
    
    .hero-benefits-blocks {
        order: 4;
        width: 100%;
        max-width: 100%;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    .hero-benefit-card {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-md);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .btn-hero-cta {
        order: 5;
        width: 100%;
        max-width: 100%;
        padding: 1.4rem;
        font-size: 1.15rem;
        justify-content: center;
        background: linear-gradient(135deg, var(--blue-corp) 0%, #2563EB 100%);
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    }

    /* 5. Cards Gerais (Empilhados e Premium) */
    .premium-cards-grid, .premium-features-grid, .access-grid-premium, .audience-cards-premium, .framework-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .premium-card, .premium-feature-card, .audience-card, .access-feature-card, .stat-card-saas, .framework-card {
        padding: 2rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft shadow */
    }

    /* 6. Origins/Cidades - Grid 2x2 */
    .origins-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .city-name {
        font-size: 0.9rem;
    }

    /* 7. Bonus Section - Imagem Acima */
    .bonus-layout {
        display: flex;
        flex-direction: column;
        gap: 3.5rem;
    }
    .bonus-row {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .bonus-row.reverse {
        flex-direction: column;
    }
    .bonus-image-panel {
        order: -1; /* Força imagem para cima */
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    .bonus-image-panel img {
        width: 100%;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-soft);
        aspect-ratio: 16/9;
        object-fit: cover;
    }
    .bonus-text {
        text-align: center;
        padding: 0 1rem;
    }

    /* 8. Price Section */
    .offer-structure-container {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .timer-premium-container, .pricing-panel-premium, .guarantee-badge {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .pricing-amount-premium {
        font-size: 3.5rem;
    }

    /* 9. Performance & Cleanup */
    .modern-bg-elements {
        display: none; /* Remove fundos complexos */
    }
    .mockup-glow-blue, .hero-text::before, .dashboard-glow {
        filter: blur(40px);
        opacity: 0.4; /* Mais discreto no mobile */
    }
    .btn-hero-cta {
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
    }


}
