@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@500;600;700;800&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
    --bg-deep: #020617;
    --bg-primary: #0f172a;
    --bg-card: #1e293b;
    --border-soft: #334155;
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    
    --color-cyan: #00c0f9;
    --color-cyan-glow: #22d3ee;
    --color-blue: #3b82f6;
    --color-green: #25d366;
    --color-green-glow: #4ade80;
    
    --grad-accent: linear-gradient(135deg, var(--color-blue) 0%, var(--color-cyan) 100%);
    --grad-green: linear-gradient(135deg, #128c7e 0%, var(--color-green) 100%);
    --glass-bg: rgba(30, 41, 59, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-cyan: 0 0 20px rgba(0, 192, 249, 0.25);
    --shadow-green: 0 0 20px rgba(37, 211, 102, 0.25);
}

/* --- RESET & GLOBAL BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--border-soft);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-cyan);
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 8rem 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- HEADER & NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.5rem 0;
    background: rgba(2, 6, 23, 0.9);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.logo span {
    color: var(--color-cyan);
}

.logo i {
    font-size: 1.75rem;
    color: var(--color-cyan);
    filter: drop-shadow(var(--shadow-cyan));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-header {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#header-whatsapp-cta i {
    color: #25d366;
    transition: var(--transition-smooth);
}

#header-whatsapp-cta:hover {
    background: #25d366;
    border-color: transparent;
    color: white;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

#header-whatsapp-cta:hover i {
    color: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- PREMIUM UTILITY BUTTONS --- */
.btn-primary {
    background: #25d366;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-title);
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.25);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: #1ebd56;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-title);
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(6, 182, 212, 0.3);
    color: var(--color-cyan);
    transform: translateY(-2px);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cep-input-group {
    display: flex;
    gap: 0.75rem;
}

.cep-input-group input {
    flex: 1;
}

.cep-input-group button {
    padding: 0 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    height: 52px;
    border: none;
    cursor: pointer;
}

.address-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* --- SCROLL-DRIVEN HERO FLOW (CANVAS BASED) --- */
.hero-scroll-outer {
    position: relative;
    height: 800vh; /* Generous height for 8 viewport scroll sections */
    background-color: var(--bg-deep);
    z-index: 10;
}

.hero-bg-sticky {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    background-color: var(--bg-deep);
}

.hero-bg-sticky canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45; /* High text contrast */
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(2, 6, 23, 0.4) 0%, rgba(2, 6, 23, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content-flow {
    position: relative;
    z-index: 2;
    margin-top: -100vh; /* Sits over the sticky canvas background */
}

/* Individual flow slide occupying full viewport */
.flow-slide {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    z-index: 3;
}

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

.scroll-text-content {
    max-width: 900px;
    margin: 0 auto;
}

.flow-slide h1 {
    font-family: var(--font-title);
    font-size: 4.25rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.flow-slide p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

/* Scroll Indicators at bottom */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: scrollPulse 2s infinite;
}

.scroll-indicator i {
    font-size: 1.1rem;
    color: var(--color-cyan);
}

/* Secondary Hook (Leva & Traz) specific tags */
.badge-item-tag {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-cyan);
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logistics-scroll-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 1.5rem 0 1.25rem 0;
    line-height: 1.2;
}

.logistics-scroll-desc {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    color: var(--text-muted);
}

/* Specialties continuous scrolling container */
.specialties-flow-container {
    position: relative;
    width: 100%;
}

.specialty-flow-slide {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
    padding-left: 0; /* Remove left corner offset */
    padding-right: 12%; /* Keep clean gutter space for the fixed right menu timeline */
    z-index: 3;
}

/* Specialty cards styled elegantly */
.specialty-flow-slide .specialty-cinematic-card {
    background: rgba(15, 23, 42, 0.45); /* Lower background opacity for maximum background visibility */
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px); /* Soft glass blur */
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-premium), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    max-width: 580px; /* Compact & elegant sizing */
    width: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0.95;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease;
}

.specialty-cinematic-card .card-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-cyan);
    margin-bottom: 1.5rem;
}

.specialty-cinematic-card h2 {
    font-family: var(--font-title);
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.specialty-cinematic-card .card-header-row .card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.specialty-cinematic-card .card-header-row h2 {
    margin-bottom: 0;
}

.specialty-cinematic-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features-list {
    list-style: none;
    margin-bottom: 0.5rem;
}

.card-features-list li {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-features-list li i {
    color: var(--color-cyan);
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(0, 192, 249, 0.5));
}

/* Fixed timeline indicator on the right side */
.prog-track-fixed {
    position: fixed;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.prog-track-fixed.visible {
    opacity: 1;
    pointer-events: auto;
}

.prog-track-fixed .prog-step {
    padding: 1.1rem 1.8rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 12px 12px 0;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-width: 210px;
}

.prog-track-fixed .prog-step .num {
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-body);
}

.prog-track-fixed .prog-step:hover {
    background: rgba(30, 41, 59, 0.9);
    color: var(--text-primary);
    border-left-color: var(--color-cyan);
}

.prog-track-fixed .prog-step.active {
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-left: 4px solid var(--color-cyan);
    color: var(--text-primary);
    box-shadow: var(--shadow-cyan), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.prog-track-fixed .prog-step.active .num {
    color: var(--color-cyan);
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

/* Custom Micro-animations */
@keyframes scrollPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 5px); }
}

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

.animate-fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Mobile Responsiveness for Cinematic Grid & Canvas Flow */
@media (max-width: 991px) {
    .specialties-cinematic-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specialties-left-container {
        min-height: 480px;
    }
    
    .prog-track-fixed {
        display: none !important; /* Hide fixed tracker on mobile */
    }
    
    .specialty-flow-slide {
        padding-left: 0 !important;
        padding-right: 0 !important; /* Reset right padding gutter on smaller viewports */
        justify-content: center !important;
    }
    
    .specialty-flow-slide .specialty-cinematic-card {
        margin-left: 0 !important;
        max-width: 90% !important;
        padding: 2rem !important;
    }

    .flow-slide h1 {
        font-size: 2.5rem !important;
    }

    .flow-slide p {
        font-size: 1.05rem !important;
    }

    .logistics-scroll-title {
        font-size: 2.2rem !important;
    }
}

/* --- INTERACTIVE SIMULATOR --- */
.simulator-section {
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.04) 0%, transparent 40%),
                var(--bg-deep);
    position: relative;
}

.simulator-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-premium);
}

.sim-grid {
    display: block;
}

.sim-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.brand-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.brand-btn {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-soft);
    color: var(--text-muted);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.brand-btn:hover {
    border-color: var(--color-cyan);
    color: var(--text-primary);
}

.brand-btn.active {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.select-custom {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--border-soft);
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
}

.select-custom:focus {
    border-color: var(--color-cyan);
    box-shadow: var(--shadow-cyan);
}

.input-custom {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--border-soft);
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-smooth);
}

.input-custom:focus {
    border-color: var(--color-cyan);
    box-shadow: var(--shadow-cyan);
}

.sim-output {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.output-header {
    text-align: center;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.output-header i {
    font-size: 2.5rem;
    color: var(--color-cyan);
    margin-bottom: 0.75rem;
    filter: drop-shadow(var(--shadow-cyan));
}

.output-header h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
}

.output-results {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Prevents overlapping on multi-line text */
    gap: 1rem;
    font-size: 0.95rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.result-row span:first-child {
    color: var(--text-muted);
    flex-shrink: 0;
    width: 120px; /* Clean aligned gutter for the labels */
}

.result-row span:last-child {
    font-weight: 700;
    font-family: var(--font-title);
    text-align: right;
    word-break: break-word;
    flex: 1;
}

.highlight-green {
    color: var(--color-green);
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.2);
}

.highlight-cyan {
    color: var(--color-cyan);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 1.1rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.25);
    transition: var(--transition-smooth);
    width: 100%;
}

.btn-whatsapp:hover {
    background: #1ebd56;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.4);
}

/* --- DEFEITOS COMUNS (ACCORDION) --- */
.defeitos {
    background: var(--bg-primary);
}

.defeitos-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.defeito-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.defeito-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.defeito-header-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.defeito-header-left i {
    font-size: 1.35rem;
    color: var(--color-cyan);
}

.defeito-header h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 600;
}

.defeito-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.defeito-item.active {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(30, 41, 59, 0.9);
}

.defeito-item.active .defeito-icon {
    transform: rotate(180deg);
    color: var(--color-cyan);
}

.defeito-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.defeito-content-inner {
    padding: 0 2rem 2rem 4.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1.5rem;
}

.content-block h4 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    color: var(--color-cyan);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- LOGISTICS SECTION (HOW IT WORKS) --- */
.logistics {
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 60%),
                var(--bg-deep);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--border-soft);
    z-index: 1;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-cyan);
    margin: 0 auto 1.5rem auto;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-number {
    background: var(--grad-accent);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-cyan);
    transform: scale(1.1);
}

.timeline-step h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.timeline-step p {
    color: var(--text-muted);
    font-size: 0.92rem;
    padding: 0 0.5rem;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
    background: var(--bg-primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.2);
}

.stars {
    color: #eab308;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.98rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 2rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-cyan);
}

.reviewer-info h4 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
}

.reviewer-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* --- FAQ SECTION --- */
.faq {
    background: var(--bg-deep);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header h3 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: rgba(6, 182, 212, 0.25);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-cyan);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
    padding: 0 2rem 1.75rem 2rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1.25rem;
}

/* --- ONDE ESTAMOS (GOOGLE MAPS) SECTION --- */
.map-section {
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.04) 0%, transparent 40%),
                var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.map-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.25fr;
    gap: 4rem;
    align-items: center;
}

.map-info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-premium), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.map-info-card h2 {
    font-family: var(--font-title);
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 1rem 0 1.25rem 0;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.map-address {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 1.5rem;
}

.map-address strong {
    color: var(--text-primary);
    font-family: var(--font-title);
    font-size: 1.3rem;
}

.cep-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    display: inline-block;
}

.map-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.map-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.map-feature-item .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-cyan);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.05);
}

.map-feature-item h4 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.map-feature-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.map-actions {
    display: flex;
    gap: 1.25rem;
}

.map-actions .btn-primary,
.map-actions .btn-secondary {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 480px;
    filter: grayscale(12%) contrast(95%) opacity(0.9);
    transition: var(--transition-smooth);
}

.map-wrapper:hover {
    border-color: rgba(6, 182, 212, 0.35);
    box-shadow: var(--shadow-premium), var(--shadow-cyan);
    transform: translateY(-2px);
}

.map-wrapper:hover iframe {
    filter: none;
    opacity: 1;
}

/* --- FOOTER --- */
footer {
    background-color: var(--bg-deep);
    padding: 5rem 0 2.5rem 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: var(--text-primary);
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand h3 span {
    color: var(--color-cyan);
}

.footer-brand p {
    margin-bottom: 1.75rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--grad-accent);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-cyan);
    transform: translateY(-2px);
}

.footer-links h4, .footer-contact h4 {
    color: var(--text-primary);
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a:hover {
    color: var(--color-cyan);
    padding-left: 4px;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact li i {
    color: var(--color-cyan);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-contact li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
}

/* --- RESPONSIVE DESIGN (MEDIA QUERIES) --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3.5rem;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .sim-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .map-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
    
    .section-header {
        margin-bottom: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 2rem;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .btn-header {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .brand-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .defeito-content-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-left: 2rem;
    }
    
    .timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-step {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .simulator-wrapper {
        padding: 2rem;
    }
    
    .flow-slide {
        height: auto;
        min-height: 100vh;
        padding: 6rem 1.5rem 4rem 1.5rem;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .specialty-flow-slide {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
        height: auto;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .specialty-flow-slide .specialty-cinematic-card {
        padding: 2.2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .prog-track-fixed {
        display: none !important;
    }
    
    .hero-badges {
        gap: 1.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .map-info-card {
        padding: 2.2rem 1.5rem;
    }
    
    .map-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .map-actions .btn-primary,
    .map-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .brand-selector {
        grid-template-columns: 1fr;
    }
    
    .cep-input-group {
        flex-direction: column;
    }
    
    .cep-input-group button {
        width: 100%;
    }
    
    .address-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ARTIGOS (BLOG) SECTION --- */
.artigos {
    background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.04) 0%, transparent 40%),
                var(--bg-deep);
    position: relative;
}

.artigos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.artigo-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
    text-decoration: none;
    color: inherit;
}

.artigo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 40px -15px rgba(6, 182, 212, 0.15);
}

.artigo-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.artigo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.artigo-card:hover .artigo-img-wrapper img {
    transform: scale(1.06);
}

.artigo-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.artigo-card-content .badge-item-tag {
    align-self: flex-start;
    padding: 0.35rem 0.9rem;
    font-size: 0.78rem;
    margin-bottom: 1.25rem;
    background: rgba(6, 182, 212, 0.08);
}

.artigo-card-content h3 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.artigo-card:hover .artigo-card-content h3 {
    color: var(--color-cyan);
}

.artigo-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.artigo-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.artigo-footer .read-time {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.artigo-footer .btn-read-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-cyan);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.artigo-card:hover .artigo-footer .btn-read-more {
    color: var(--color-cyan-glow);
}

.artigo-card:hover .artigo-footer .btn-read-more i {
    transform: translateX(4px);
}

.artigo-footer .btn-read-more i {
    transition: transform 0.3s ease;
}

/* --- ARTICLES MODAL SYSTEM --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.modal-card {
    background: var(--bg-deep);
    border: 1px solid var(--glass-border);
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    border-radius: 28px;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-premium), 0 25px 50px -12px rgba(6, 182, 212, 0.2);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    opacity: 0;
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
    margin-bottom: 0.5rem;
}

.modal-header .badge-item-tag {
    padding: 0.35rem 0.9rem;
    font-size: 0.78rem;
    margin-bottom: 1.25rem;
    background: rgba(6, 182, 212, 0.08);
    display: inline-flex;
}

.modal-header h2 {
    font-family: var(--font-title);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.modal-meta .separator {
    color: rgba(255, 255, 255, 0.15);
}

.modal-body-scroll {
    overflow-y: auto;
    padding-right: 1.5rem;
    margin-top: 2rem;
    line-height: 1.75;
    color: var(--text-primary);
    font-size: 1.08rem;
}

/* Custom Scrollbar for Modal content */
.modal-body-scroll::-webkit-scrollbar {
    width: 6px;
}

.modal-body-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 10px;
}

.modal-body-scroll::-webkit-scrollbar-thumb {
    background: rgba(6, 182, 212, 0.2);
    border-radius: 10px;
}

.modal-body-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(6, 182, 212, 0.4);
}

.modal-body-scroll p {
    margin-bottom: 1.5rem;
    color: rgba(241, 245, 249, 0.9);
}

.modal-body-scroll h3 {
    font-family: var(--font-title);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-cyan);
    margin: 2.5rem 0 1.25rem 0;
}

.modal-body-scroll h3:first-of-type {
    margin-top: 1rem;
}

.modal-body-scroll ul,
.modal-body-scroll ol {
    margin-bottom: 1.75rem;
    padding-left: 1.5rem;
}

.modal-body-scroll li {
    margin-bottom: 0.75rem;
    color: rgba(241, 245, 249, 0.85);
}

.modal-body-scroll strong {
    color: var(--text-primary);
}

/* Responsive Grid & Modals */
@media (max-width: 991px) {
    .artigos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .modal-card {
        padding: 2.5rem 2rem;
        max-height: 90vh;
        border-radius: 20px;
    }
    
    .modal-close {
        top: 1.5rem;
        right: 1.5rem;
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    .modal-header h2 {
        font-size: 1.75rem;
    }
}

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

/* --- REUSABLE BLOG ARTICLE PAGE STYLES --- */
.blog-article-page {
    background: var(--bg-deep);
    color: var(--text-primary);
    min-height: 100vh;
}

.article-hero {
    padding: 10rem 0 4rem 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 100%, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-breadcrumbs {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.article-breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.article-breadcrumbs a:hover {
    color: var(--color-cyan);
}

.article-breadcrumbs span {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.1);
}

.article-header-content h1 {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-meta-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.article-meta-info i {
    color: var(--color-cyan);
}

.article-banner {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(6, 182, 212, 0.1);
    margin-bottom: 4rem;
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(241, 245, 249, 0.9);
}

.article-body p {
    margin-bottom: 2rem;
}

.article-body h2 {
    font-family: var(--font-title);
    font-size: 1.95rem;
    font-weight: 700;
    color: var(--color-cyan);
    margin: 3.5rem 0 1.5rem 0;
}

.article-body h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2.5rem 0 1.25rem 0;
}

.article-body ul, .article-body ol {
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 1rem;
    color: rgba(241, 245, 249, 0.8);
}

.article-body li strong {
    color: var(--text-primary);
}

.article-body blockquote {
    border-left: 4px solid var(--color-cyan);
    background: rgba(6, 182, 212, 0.03);
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--text-primary);
}

.article-cta-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3.5rem;
    margin: 5rem 0;
    text-align: center;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.article-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.article-cta-box h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.article-cta-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.article-cta-box .btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .article-hero {
        padding: 8rem 0 3rem 0;
    }
    
    .article-header-content h1 {
        font-size: 2.25rem;
    }
    
    .article-body {
        font-size: 1.05rem;
    }
    
    .article-cta-box {
        padding: 2.5rem 1.5rem;
    }
}

