@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    --bg-primary: #050505;
    --bg-secondary: #0c0c0c;
    --bg-tertiary: #121212;
    --accent-red: #e63946;
    --accent-red-hover: #bd1f2d;
    --accent-red-glow: rgba(230, 57, 70, 0.3);
    --accent-red-glow-strong: rgba(230, 57, 70, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-glass: rgba(255, 255, 255, 0.07);
    --border-glass-active: rgba(230, 57, 70, 0.3);
    --glass-bg: rgba(15, 15, 15, 0.7);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --max-width: 1120px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.highlight-red { color: var(--accent-red); }

/* Buttons */
/* Premium Conic-Spinning CTA Buttons */
@keyframes beam-spin {
    to { transform: rotate(360deg); }
}
@keyframes dots-move {
    0% { background-position: 0 0; }
    100% { background-position: 24px 24px; }
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.15em;
    border-radius: 9999px;
    padding: 20px 48px;
    border: none;
    cursor: pointer;
    background: transparent;
    user-select: none;
    box-shadow: 0 0 0px transparent;
}

.premium-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px -10px var(--accent-red-glow-strong);
}

/* Conic Border Beam Wrapper */
.premium-btn-beam-wrapper {
    position: absolute;
    inset: 0;
    z-index: -20;
    border-radius: 9999px;
    overflow: hidden;
    padding: 1px;
}

.premium-btn-beam {
    position: absolute;
    inset: -100%;
    background: conic-gradient(from 0deg, transparent 0 300deg, var(--accent-red) 360deg);
    animation: beam-spin 3s linear infinite;
}

.premium-btn-beam-bg {
    position: absolute;
    inset: 1px;
    border-radius: 9999px;
    background-color: #000000;
}

/* Inner Background and Patterns */
.premium-btn-inner {
    position: absolute;
    inset: 2px;
    z-index: -10;
    overflow: hidden;
    background-color: #09090b;
    border-radius: 9999px;
}

.premium-btn-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(39, 39, 42, 0.6) 0%, transparent 100%);
}

.premium-btn-dots {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    mix-blend-mode: overlay;
    background-image: radial-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px);
    background-size: 12px 12px;
    animation: dots-move 8s linear infinite;
}

.premium-btn-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 66.666%;
    height: 50%;
    background-color: rgba(230, 57, 70, 0.12);
    filter: blur(24px);
    border-radius: 50%;
    pointer-events: none;
    transition: background-color 0.5s ease;
}

.premium-btn:hover .premium-btn-glow {
    background-color: rgba(230, 57, 70, 0.4);
}

/* Text and Icons */
.premium-btn-text {
    position: relative;
    z-index: 10;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.premium-btn:hover .premium-btn-text {
    color: #ffffff;
}

.premium-btn-arrow {
    position: relative;
    z-index: 10;
    margin-left: 8px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.premium-btn:hover .premium-btn-arrow {
    transform: translateX(4px);
}

/* Section Common Structure */
section {
    padding: 100px 0;
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-red);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 60px auto;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glass-active);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-red-glow);
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Delay modifiers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ==========================================
   HEADER / LOGO
   ========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, padding 0.3s ease, transform 0.3s ease;
    padding: 16px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.logo:hover {
    opacity: 0.85;
}

.logo-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-red);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* Header CTA Button adjustments */
.header-cta {
    display: flex;
}

.header-cta .premium-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    border-radius: 30px;
}

/* Hamburger toggle menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 991px) {
    header {
        padding: 14px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1050;
        padding: 40px 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 !important;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto; 
        position: relative;
        z-index: 1100;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .header-cta {
        display: none;
    }
}

/* ==========================================
   1. HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 100px;
    background-image: url('./images/hero-desktop.webp?v=3');
    background-size: cover;
    background-position: right -100px center; /* Shift products to the far right to guarantee zero overlap */
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Restaurado o grid original de ouro! */
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-spacer {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 650px; /* Folga absoluta para o texto monumental ficar em 3 linhas perfeitas */
    width: 100%;
    transform: translateX(-120px); /* Ponto de ouro milimétrico: afasta da caixa sem colar na borda do monitor */
}

.hero-mobile-bg-spacer {
    display: none !important; /* Strictly hidden on desktop views */
}

.hero-badge {
    background-color: rgba(230, 57, 70, 0.12);
    border: 1px solid var(--accent-red);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.15);
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background-color: var(--accent-red);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.hero h1 {
    font-size: 4.4rem; /* Calibrado cirurgicamente com os 650px de largura para ficar em 3 linhas perfeitas */
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.hero-sub {
    font-size: 1.3rem; /* Aumentado expressivamente para o desktop */
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 520px; /* Mantém o tamanho espetacular sem invadir a caixa */
    line-height: 1.5;
}

#hero-cta-btn {
    padding: 22px 42px; /* Botão gigante e luxuoso no desktop */
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    white-space: nowrap; /* BLINDAGEM ABSOLUTA: O texto do botão nunca mais quebrará linha no desktop! */
}

/* Highlights Bar (Benefícios em Destaque - Marquee Infinito) */
.highlights-bar.marquee-section {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    background: #070707;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 18px 0;
    position: relative;
    z-index: 10;
}

.marquee-wrapper {
    overflow: hidden;
    display: flex;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-right: 50px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.highlight-bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    color: var(--accent-red);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.15);
}

.highlight-bar-icon svg {
    width: 16px;
    height: 16px;
}

@keyframes marquee-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.hero-bullets {
    margin-bottom: 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.hero-bullet-item svg {
    color: var(--accent-red);
    flex-shrink: 0;
}

.hero-scarcity {
    margin-top: 14px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Hero Media Box / Placeholder Representation */
.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-media-wrapper {
    width: 100%;
    max-width: 460px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(145deg, #121212, #080808);
    border: 1px solid var(--border-glass);
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.hero-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, var(--accent-red-glow) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Interactive Countdown Timer */
.countdown-box {
    margin-top: 32px;
    width: 100%;
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
}

.countdown-title {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-title svg {
    color: var(--accent-red);
}

.timer {
    display: flex;
    gap: 16px;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    min-width: 65px;
    padding: 8px 6px;
}

.timer-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1.1;
}

.timer-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}

/* ==========================================
   2. PROBLEM IDENTIFICATION SECTION
   ========================================== */
.problem {
    background-color: var(--bg-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-media {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 125%; /* Bulletproof 4:5 aspect ratio lock (1080x1350) for all browsers */
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: #151515;
    border: 1px solid var(--border-glass);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.problem-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
}

.problem-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #181818 0%, #0d0d0d 100%);
    padding: 30px;
    text-align: center;
    color: var(--text-muted);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.problem-media-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.8) 100%);
}

.problem-media-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--accent-red);
    margin-bottom: 16px;
    opacity: 0.5;
}

.problem-media-placeholder h4 {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    z-index: 1;
}

.problem-media-placeholder p {
    font-size: 0.875rem;
    max-width: 280px;
    z-index: 1;
}

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

.problem h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.problem-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 20px;
    transition: var(--transition-smooth);
}

.problem-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.problem-item-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-item h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.problem-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* ==========================================
   3. PRODUCT SOLUTION SECTION (THE KIT)
   ========================================== */
.solution {
    background-color: var(--bg-primary);
    overflow: hidden;
    padding-bottom: 120px;
}

.carousel-3d-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    overflow: visible;
    margin-top: 50px;
}

.carousel-track {
    position: relative !important;
    width: 100% !important;
    max-width: 1200px !important;
    height: 450px !important;
    margin: 0 auto !important;
    display: block !important;
    transform-style: preserve-3d;
}

/* Base do card do carrossel herdando .solution-card e .border-glow-card */
.carousel-card {
    position: absolute !important;
    left: 50% !important;
    margin-left: -170px !important;
    top: 10px !important;
    width: 340px !important;
    height: 430px !important;
    background: #09090b !important; /* Totalmente opaco para evitar transparência que confunde */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.6s ease, 
                border-color 0.6s ease, 
                box-shadow 0.6s ease;
    cursor: pointer;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Ocultar descrições e títulos longos dos cards não-ativos */
.carousel-card p,
.carousel-card .solution-card-headline {
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    transition: opacity 0.4s ease, max-height 0.4s ease, visibility 0.4s ease;
}

/* Quando estiver ativo, exibe todo o texto explicativo */
.carousel-card.active p,
.carousel-card.active .solution-card-headline {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 150px !important;
    margin-top: 12px !important;
    overflow: visible !important;
}

/* Badge circular exclusiva para os ícones */
.carousel-card-icon-badge {
    width: 56px;
    height: 56px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.1);
}

.carousel-card.active .carousel-card-icon-badge {
    background: rgba(230, 57, 70, 0.15);
    border-color: var(--accent-red);
    box-shadow: 0 0 25px rgba(230, 57, 70, 0.4);
    transform: scale(1.05);
}

.carousel-card-icon-badge svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(230, 57, 70, 0.5));
}

.carousel-card h3 {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--text-secondary);
    transition: color 0.4s ease, font-size 0.4s ease;
    line-height: 1.3;
}

.carousel-card.active h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
}

/* Estados de Posicionamento Tridimensional do Carrossel */
.carousel-card.active {
    transform: translate3d(0, 0, 100px) scale(1) rotateY(0deg);
    z-index: 10;
    opacity: 1;
    border-color: rgba(230, 57, 70, 0.4);
    box-shadow: 0 25px 60px rgba(0,0,0,0.7), 0 0 35px rgba(230, 57, 70, 0.25);
}

.carousel-card.prev {
    transform: translate3d(-260px, 0, -80px) scale(0.8);
    z-index: 5;
    opacity: 0.4;
    cursor: pointer;
}

.carousel-card.next {
    transform: translate3d(260px, 0, -80px) scale(0.8);
    z-index: 5;
    opacity: 0.4;
    cursor: pointer;
}

.carousel-card.far-prev {
    transform: translate3d(-440px, 0, -180px) scale(0.65);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
}

.carousel-card.far-next {
    transform: translate3d(440px, 0, -180px) scale(0.65);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
}

.carousel-card.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 0, -250px) scale(0.5);
    z-index: 0;
}

/* Controles de Navegação direcionais */
.carousel-3d-controls {
    display: flex;
    gap: 24px;
    margin-top: 30px;
    z-index: 100;
}

.carousel-3d-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    width: 52px;
    height: 52px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-3d-btn:hover {
    border-color: var(--accent-red);
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-red);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.25);
    transform: scale(1.05);
}

/* Indicador minúsculo e elegante do número do card */
.carousel-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.carousel-card.active .carousel-card-footer {
    opacity: 0.6;
    transform: translateY(0);
}

.carousel-card-footer-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.solution-cta-box {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* ==========================================
   4. BENEFITS & BEFORE/AFTER SLIDER
   ========================================== */
.benefits {
    background-color: var(--bg-secondary);
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 24px;
    transition: var(--transition-smooth);
}

.benefit-box:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-glass-active);
    transform: translateY(-4px);
}

.benefit-box-icon {
    width: 44px;
    height: 44px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.benefit-box h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.benefit-box p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* INTERACTIVE BEFORE/AFTER SLIDER */
.slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.slider-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4 / 5;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-glass);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    user-select: none;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Placeholder layouts for before and after in case images don't exist */
.before-img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 440px;
    height: 100%;
    background: linear-gradient(135deg, #1f1415 0%, #0c0708 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 24px;
}

@media (max-width: 480px) {
    .before-img-placeholder {
        width: calc(100vw - 48px);
    }
}

.after-img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 440px;
    height: 100%;
    background: linear-gradient(135deg, #141c18 0%, #070c0a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 24px;
}

@media (max-width: 480px) {
    .after-img-placeholder {
        width: calc(100vw - 48px);
    }
}

.placeholder-avatar {
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.img-after {
    width: 100%;
    z-index: 1;
}

.img-before {
    width: 100%; /* Fixa em 100% para a imagem não escorregar */
    z-index: 2;
    clip-path: inset(0 50% 0 0); /* Corta exatamente na metade */
    -webkit-clip-path: inset(0 50% 0 0);
}

/* Drag bar / handle */
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%; /* Adjusted dynamically by JS */
    width: 4px;
    background-color: #ffffff;
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(0,0,0,0.5), 0 0 10px var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    cursor: ew-resize;
    pointer-events: none; /* Pointer events handled by parent slider */
}

.slider-button svg {
    color: var(--bg-primary);
    width: 20px;
    height: 20px;
}

/* Absolute label indicators */
.slider-label {
    position: absolute;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-glass);
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.slider-label.before-label {
    left: 20px;
    z-index: 3;
}

.slider-label.after-label {
    right: 20px;
    z-index: 1;
}

.slider-instruction {
    margin-top: 16px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Before/After Legend under slider */
.slider-legend-row {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    width: 100%;
    max-width: 440px;
    justify-content: space-between;
}

.slider-legend-col {
    flex: 1;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    padding: 12px 14px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
}

.slider-legend-col:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.12);
}

.slider-legend-col strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
}

.legend-dot.before {
    background-color: var(--accent-red);
    box-shadow: 0 0 6px var(--accent-red);
}

.legend-dot.after {
    background-color: #25d366;
    box-shadow: 0 0 6px #25d366;
}

@media (max-width: 480px) {
    .slider-legend-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================
   5. UNIQUE MECHANISM (FORMULA INTELIGENTE)
   ========================================== */
.mechanism {
    background-color: var(--bg-primary);
    padding: 100px 0;
}

/* Novo Layout da Rotina: 3 Colunas no Desktop com Sobreposição 3D (Efeito Fortflex) */
.routine-layout {
    display: grid;
    grid-template-columns: 0.7fr 2.4fr 0.7fr; /* Coluna central colossal dominando a tela! */
    gap: 0;
    align-items: center;
    margin-top: 50px;
}

/* Coluna Esquerda: Sobrepõe o kit central gigante em 140px */
.routine-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-end;
    margin-right: -140px;
    z-index: 5;
    position: relative;
}

/* Coluna Direita: Sobrepõe o kit central gigante em 140px */
.routine-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    margin-left: -140px;
    z-index: 5;
    position: relative;
}

.routine-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1; /* Fica por baixo dos cards nas laterais */
}

/* Kit Monumental e Flutuante */
.routine-image-box {
    position: relative;
    width: 100%;
    max-width: 750px; /* Kit colossal de 750px no centro da tela! */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.routine-image-box:hover {
    transform: scale(1.03);
}

.routine-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.95));
}

/* Brilho vermelho pulsante por trás do kit */
.routine-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.25) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: routine-glow-pulse 4s ease-in-out infinite;
}

@keyframes routine-glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.95;
    }
}

/* Estilo Glassmorphism Premium com Ícone de Check (Compacto e Horizontal) */
.mechanism-point-card {
    display: flex !important;
    gap: 16px !important;
    align-items: center !important;
    background: rgba(15, 15, 18, 0.75) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: var(--border-radius-lg) !important;
    padding: 16px 20px !important; /* Mais compacto para não inchar na altura! */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    max-width: 340px; /* Mais estreito para enfatizar a majestade da foto central! */
    width: 100%;
    z-index: 10;
}

.routine-card-badge {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: rgba(230, 57, 70, 0.15) !important;
    border: 2px solid var(--accent-red) !important;
    color: var(--accent-red) !important;
    flex-shrink: 0 !important;
}

.routine-card-badge svg {
    width: 16px !important;
    height: 16px !important;
}

.routine-card-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

/* Cards da Esquerda: Animação e Borda Iluminada */
.routine-left .mechanism-point-card {
    border-right: 3px solid var(--accent-red) !important;
    text-align: right;
    flex-direction: row-reverse !important; /* Coloca o check na direita para manter simetria apontando para o kit! */
}

.routine-left .mechanism-point-card:hover {
    transform: translateX(-6px) translateY(-2px) scale(1.02) !important;
    background: rgba(25, 25, 30, 0.85) !important;
    border-right-color: #ff4d4d !important;
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.2), 0 15px 30px rgba(0, 0, 0, 0.8) !important;
}

/* Cards da Direita: Animação e Borda Iluminada */
.routine-right .mechanism-point-card {
    border-left: 3px solid var(--accent-red) !important;
    text-align: left;
}

.routine-right .mechanism-point-card:hover {
    transform: translateX(6px) translateY(-2px) scale(1.02) !important;
    background: rgba(25, 25, 30, 0.85) !important;
    border-left-color: #ff4d4d !important;
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.2), 0 15px 30px rgba(0, 0, 0, 0.8) !important;
}

.mechanism-point-card h4 {
    font-size: 1.05rem; /* Levemente menor para caber em 1 linha perfeita */
    margin-bottom: 2px;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.mechanism-point-card p {
    font-size: 0.875rem; /* Subtítulo compacto */
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Nova Seção de Fórmula Tecnológica */
.tech-formula {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 100px 0;
}

.tech-formula-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

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

.tech-formula-content {
    display: flex;
    flex-direction: column;
}

.tech-lines-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

/* Círculo Tecnológico Elaborado Tridimensional */
.tech-circle {
    width: 155px;
    height: 155px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, rgba(10, 10, 10, 0.85) 100%);
    border: 1px solid rgba(230, 57, 70, 0.35);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(230, 57, 70, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
}

/* ==========================================
   5B. FORMULA & TECH SECTION (PORTAL IMERSIVO TESLA)
   ========================================== */
.tech-portal-section {
    background-color: #000000;
    padding: 0;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    max-width: 1300px;
    margin: 0 auto 120px auto;
    box-shadow: 0 40px 80px rgba(0,0,0,0.9);
    position: relative;
    z-index: 10;
}

.tech-portal-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: stretch;
    width: 100%;
}

.tech-video-col {
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.tech-official-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Botão de Áudio Inteligente Flutuante */
.audio-toggle-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--accent-red);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 40;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.9), 0 0 20px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
}

.audio-toggle-btn:hover {
    transform: scale(1.05);
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.6);
}

.audio-toggle-btn svg {
    width: 20px;
    height: 20px;
}

.tech-content-col {
    padding: 90px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-portal-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.tech-portal-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 95%;
}

.tech-cyber-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-cyber-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 32px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.2, 1);
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.tech-cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-red), #ffffff);
    opacity: 0;
    transition: all 0.4s ease;
}

.tech-cyber-card:hover {
    background: rgba(230, 57, 70, 0.05);
    border-color: rgba(230, 57, 70, 0.35);
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7), inset 0 0 25px rgba(230, 57, 70, 0.08);
}

.tech-cyber-card:hover::before {
    opacity: 1;
    width: 6px;
}

.tech-cyber-num {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-red);
    line-height: 1;
    padding-top: 2px;
    filter: drop-shadow(0 0 12px rgba(230, 57, 70, 0.35));
}

.tech-cyber-body {
    flex-grow: 1;
}

.tech-cyber-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.tech-cyber-header h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.tech-cyber-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    background: rgba(230, 57, 70, 0.15);
    color: var(--accent-red);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border: 1px solid rgba(230, 57, 70, 0.3);
}

.tech-cyber-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* RESPONSIVIDADE CIRÚRGICA (MOBILE & TABLET) */
@media (max-width: 991px) {
    .tech-portal-section {
        border-radius: 24px;
        margin: 0 20px 80px 20px;
    }

    .tech-portal-grid {
        grid-template-columns: 1fr !important;
    }

    .tech-video-col {
        min-height: 380px !important;
        height: 380px !important;
    }

    .tech-official-video {
        position: absolute !important;
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .audio-toggle-btn {
        bottom: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .tech-content-col {
        padding: 50px 30px;
    }

    .tech-portal-title {
        font-size: 2rem;
    }

    .tech-cyber-card {
        padding: 24px 28px;
        gap: 20px;
    }

    .tech-cyber-num {
        font-size: 1.5rem;
    }

    .tech-cyber-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}


/* ==========================================
   6. SOCIAL PROOF SECTION (CARROSSEL BIDIRECIONAL DE LUXO)
   ========================================== */
.proof {
    background-color: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.inline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(230, 57, 70, 0.05);
    border: 1px solid rgba(230, 57, 70, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
}

.badge-text {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-red);
    font-weight: 600;
}

.mask-gradient {
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroll-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 0;
}

.flex-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.animate-scroll {
    animation: scroll-left 45s linear infinite;
}

.animate-scroll-reverse {
    animation: scroll-right 50s linear infinite;
}

.scroll-group:hover .animate-scroll,
.scroll-group:hover .animate-scroll-reverse {
    animation-play-state: paused;
}

.testimonial-card {
    width: 360px;
    flex-shrink: 0;
    background: rgba(15, 15, 18, 0.8) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Efeito de foco ao passar o mouse na seção */
.scroll-group:hover .testimonial-card {
    opacity: 0.35;
    transform: scale(0.98);
    filter: blur(2px);
}

.scroll-group .testimonial-card:hover {
    opacity: 1;
    transform: scale(1.03);
    filter: blur(0px);
    z-index: 20;
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 25px 50px rgba(230, 57, 70, 0.2), inset 0 0 20px rgba(230, 57, 70, 0.05);
}

/* Scanner Laser Animado Vermelho Neon */
.testimonial-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -100%;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.9), transparent);
    animation: event-scan 6s linear infinite;
    animation-delay: var(--delay, 0s);
    z-index: 30;
}

@keyframes event-scan {
    0% { left: -100%; }
    100% { left: 200%; }
}

.stars-container {
    color: var(--accent-red);
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    font-style: italic;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(230, 57, 70, 0.3);
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.5s ease;
}

.testimonial-card:hover .author-avatar {
    filter: grayscale(0%);
    opacity: 1;
    border-color: var(--accent-red);
}

.author-avatar-text {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-red);
    flex-shrink: 0;
    transition: all 0.5s ease;
    box-shadow: inset 0 0 10px rgba(230, 57, 70, 0.05);
}

.testimonial-card:hover .author-avatar-text {
    background: rgba(230, 57, 70, 0.2);
    border-color: var(--accent-red);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.4);
    transform: scale(1.05);
}

.card-author h4 {
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin: 0 0 2px 0;
    font-family: var(--font-heading);
}

.card-author p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

@media (min-width: 768px) {
    .testimonial-card {
        width: 420px;
    }
}

/* ==========================================
   7. OBJECTION HANDLING
   ========================================== */
.objection {
    background: radial-gradient(circle at 50% 50%, rgba(230, 57, 70, 0.05) 0%, transparent 60%), var(--bg-primary);
}

.objection-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.objection-quote {
    font-size: 1.875rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.objection-reframe {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   8. OFFER SECTION
   ========================================== */
.offer {
    background-color: var(--bg-secondary);
    padding: 120px 0;
}

/* Logo Sizing Rules */
.logo-img {
    height: 18px;
    width: auto;
    display: block;
    transition: var(--transition-fast);
}

@media (max-width: 480px) {
    .logo-img {
        height: 16px;
    }
}

.logo-footer {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.logo-img-footer {
    height: 16px;
    width: auto;
    display: block;
    opacity: 0.75;
    transition: var(--transition-fast);
}

.logo-img-footer:hover {
    opacity: 1;
}

.mobile-br {
    display: none;
}

@media (max-width: 991px) {
    .mobile-br {
        display: block;
    }
}

/* Assinatura do Desenvolvedor - Rigorosamente em Linha Única Lado a Lado */
.dev-signature {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    font-size: 0.72rem;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .dev-signature {
        font-size: 0.65rem; /* Escala exata para não quebrar linha no mobile */
        gap: 6px;
    }
}

.dev-signature a {
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.dev-signature a:hover {
    opacity: 1;
    transform: scale(1.05);
}

.dev-signature img {
    height: 18px;
    width: auto;
    object-fit: contain;
}

.dev-cnpj {
    opacity: 0.6;
    font-size: 0.7rem;
}

/* ==========================================
   8. REDESIGNED OFFER SECTION (TESLA COCKPIT SWITCH & VITRINE DYNAMIC)
   ========================================== */
.tesla-pricing-box {
    background-color: #030305;
    border: 1px solid var(--border-glass);
    border-radius: 32px;
    max-width: 950px;
    margin: 0 auto;
    padding: 64px 56px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.9), inset 0 0 50px rgba(230,57,70,0.05);
    position: relative;
    overflow: hidden;
}

.tesla-pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--accent-red);
    box-shadow: 0 0 25px var(--accent-red);
}

.box-header {
    text-align: center;
    margin-bottom: 40px;
}

.box-header .tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    display: block;
}

.box-header h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.box-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Cores Hexadecimais Exatas Cover 4 Him */
.swatch-claro { background-color: #ffd9ad; }
.swatch-escuro { background-color: #643d24; }
.swatch-claro-medio { background-color: #cca077; }
.swatch-escuro-medio { background-color: #996c42; }

/* Segment Control Estilo Cockpit */
.segment-track {
    background: rgba(0,0,0,0.8);
    border: 1px solid var(--border-glass);
    padding: 10px;
    border-radius: 100px;
    display: flex;
    position: relative;
    margin-bottom: 32px;
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.6);
}

.segment-btn {
    flex: 1;
    padding: 18px 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.segment-btn.active { color: #fff; }

.segment-btn .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.segment-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    height: calc(100% - 20px);
    width: calc(25% - 5px);
    background: linear-gradient(135deg, #e63946 0%, #b80f22 100%);
    border-radius: 100px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(230,57,70,0.4);
}

/* Vitrine Dinâmica */
.dynamic-showcase {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 32px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    box-shadow: inset 0 0 40px rgba(255,255,255,0.02);
}

.showcase-image-stage {
    width: 220px;
    height: 220px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    flex-shrink: 0;
}

.showcase-image-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.showcase-info {
    text-align: left;
    max-width: 440px; /* Aumentado para o título não quebrar linha */
}

.showcase-info h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem; /* Reduzido cirurgicamente para não quebrar linha */
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    white-space: nowrap; /* Garante que fique em uma linha única perfeita */
}

.showcase-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    white-space: normal; /* Descrição flui normalmente */
}

/* Grid Central */
.pricing-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.includes-area h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.includes-list li {
    color: var(--text-primary);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.includes-list li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.price-area {
    text-align: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    padding: 36px 24px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.discount-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
}

.price-area .old-val {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.15rem;
    display: block;
    margin-bottom: 8px;
}

.price-area .installments-val {
    font-family: var(--font-heading);
    font-size: 2.1rem; /* Reduzido cirurgicamente para não quebrar linha */
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 8px;
    white-space: nowrap; /* Garante que 3x de R$ 191,66 fique na mesma linha */
}

.price-area .no-interest {
    font-family: var(--font-heading);
    color: var(--accent-red);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 16px;
}

.price-area .cash-val {
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 14px;
    margin-top: 14px;
}

.btn-wrapper {
    max-width: 520px;
    margin: 0 auto 24px auto;
}

.cta-offer-button {
    width: 100%;
    justify-content: center;
}

/* Botão Premium Verde Exclusivo para Oferta (.premium-btn-green) */
.premium-btn-green:hover {
    box-shadow: 0 0 40px -10px rgba(16, 185, 129, 0.6);
}
.premium-btn-green .premium-btn-beam {
    background: conic-gradient(from 0deg, transparent 0 300deg, #10b981 360deg);
}
.premium-btn-green .premium-btn-glow {
    background-color: rgba(16, 185, 129, 0.15);
}
.premium-btn-green:hover .premium-btn-glow {
    background-color: rgba(16, 185, 129, 0.5);
}

.security-badges-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: nowrap; /* Garante que os selos fiquem rigorosamente lado a lado */
    margin-bottom: 12px;
    padding-top: 8px;
    width: 100%;
    overflow-x: auto; /* Permite leve rolagem no celular se necessário, sem quebrar linha */
}

.sec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap; /* Garante que o texto de cada selo nunca quebre linha */
}

.sec-item svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    flex-shrink: 0;
    stroke-width: 1.8;
}

/* Responsividade de Elite para Celular e Tablet */
@media (max-width: 991px) {
    .tesla-pricing-box {
        padding: 40px 20px;
        border-radius: 28px;
    }

    .box-header h2 {
        font-size: 1.9rem;
    }

    /* Seletor de Cores Lado a Lado no Celular em Grid Perfeito */
    .segment-track {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        align-items: center;
        border-radius: 100px;
        padding: 6px;
        gap: 2px;
        position: relative;
    }

    .segment-btn {
        padding: 14px 2px;
        font-size: 0.72rem;
        flex-direction: column; /* Esfera em cima e texto embaixo */
        gap: 6px;
        text-align: center;
        line-height: 1.1;
        white-space: normal; /* Permite quebrar em duas linhas se o texto for longo */
    }

    .segment-btn .dot {
        width: 14px;
        height: 14px;
        margin: 0 auto;
    }

    .segment-indicator {
        width: calc(25% - 3px);
        height: calc(100% - 12px);
        top: 6px;
        left: 6px;
    }

    .dynamic-showcase {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 24px;
    }

    .showcase-info {
        text-align: center;
        max-width: 100%;
    }

    .showcase-info h3 {
        font-size: 1.25rem;
        white-space: normal;
    }

    .pricing-content-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Selos de Blindagem em Grid Perfeito */
    .security-badges-bar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        justify-content: center;
        align-items: center;
        padding-bottom: 0;
        width: 100%;
        overflow: visible; /* Erradica qualquer barra de rolagem vertical no mobile */
    }

    .sec-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.65rem;
        gap: 4px;
        white-space: normal; /* Texto flui naturalmente em 2 linhas abaixo do ícone */
        line-height: 1.1;
    }

    .sec-item svg {
        width: 20px;
        height: 20px;
        margin: 0 auto;
    }
}

/* Calibração de Ultra-Precisão para Celulares Compactos */
@media (max-width: 480px) {
    .tesla-pricing-box {
        padding: 32px 16px;
        border-radius: 24px;
    }

    /* Seletor de Cores: Grid 2x2 de Alto Luxo (Cards Individuais) */
    .segment-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-bottom: 28px;
    }

    .segment-btn {
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid var(--border-glass);
        border-radius: 16px;
        padding: 14px 8px; /* Ajustado cirurgicamente para caber o texto */
        font-size: 0.78rem; /* Tipografia exata para o texto Escuro Médio caber cravado */
        flex-direction: row; /* Bolinha na esquerda, texto na direita */
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
        text-align: left;
        line-height: 1.2;
        white-space: nowrap; /* BLINDAGEM ABSOLUTA: IMPEDE QUALQUER QUEBRA DE LINHA! */
        transition: all 0.3s ease;
    }

    .segment-btn.active {
        background: linear-gradient(135deg, #e63946 0%, #b80f22 100%);
        border-color: #ff4d5a;
        box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
        color: #fff;
    }

    .segment-btn .dot {
        width: 14px;
        height: 14px;
        margin: 0;
        flex-shrink: 0;
    }

    .segment-indicator {
        display: none; /* Desligamos a pílula, pois o card inteiro se acende! */
    }

    .showcase-image-stage {
        width: 180px;
        height: 180px;
    }

    .showcase-info h3 {
        font-size: 1.25rem; /* Permite tamanho excelente */
        white-space: normal; /* A grande chave: permite quebrar em 2 linhas centralizadas perfeitas! */
        line-height: 1.25;
        margin-bottom: 12px;
        padding: 0 10px;
    }

    .showcase-info p {
        font-size: 0.9rem;
    }

    .includes-list li {
        font-size: 0.82rem;
        line-height: 1.3;
        gap: 8px;
    }

    .includes-list li svg {
        width: 16px;
        height: 16px;
        margin-top: 1px;
    }

    .price-area .installments-val {
        font-size: 1.85rem;
    }

    .security-badges-bar {
        gap: 4px;
        overflow: visible; /* Garantia de erradicação de qualquer scrollbar vertical */
    }

    .sec-item {
        font-size: 0.55rem;
        gap: 4px;
    }

    .sec-item svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================
   9. GUARANTEE SECTION (ÓRBITA CONCÊNTRICA SUÍÇA)
   ========================================== */
.guarantee {
    background-color: var(--bg-primary);
    padding: 100px 0;
}

.guarantee-portal-box {
    position: relative;
    padding: 80px 70px;
    background-color: #030305;
    border-radius: 30px;
    border: 1px solid rgba(230, 57, 70, 0.3);
    max-width: 1250px;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(0,0,0,0.9), inset 0 0 60px rgba(230, 57, 70, 0.08);
    overflow: hidden;
    width: 100%;
}

.guarantee-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Emblema Concêntrico Suíço */
.concentric-stage {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Círculo Maior Externo */
.outer-ring {
    position: relative;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(20,20,25,0.9) 0%, rgba(5,5,7,0.95) 100%);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 25px 50px rgba(0,0,0,0.9), inset 0 0 40px rgba(230, 57, 70, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.concentric-stage:hover .outer-ring {
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 50px rgba(230, 57, 70, 0.3);
    transform: scale(1.02);
}

/* Texto em Órbita SVG */
.rotating-svg-text {
    position: absolute;
    width: 300px;
    height: 300px;
    animation: spin-badge 24s linear infinite;
    pointer-events: none;
}

@keyframes spin-badge {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Círculo Menor Interno */
.inner-ring {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(20,20,25,0.9) 0%, rgba(5,5,7,0.95) 100%);
    border: 2px solid var(--accent-red);
    box-shadow: inset 0 0 30px rgba(230, 57, 70, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Escudo Rubi Tridimensional de Vidro */
.shield-3d-ruby {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shield-float 4s ease-in-out infinite;
}

@keyframes shield-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.05); }
}

.shield-3d-ruby svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Conteúdo da Direita */
.guarantee-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.guarantee-content h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem; /* Reduzido cirurgicamente para caber em 1 linha perfeita */
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.guarantee-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 36px;
}

.cyber-badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
}

.cb-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    padding: 14px 16px; /* Preenchimento cirurgicamente calculado */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px; /* Garante que nunca esprema demais */
}

.cb-item:hover {
    border-color: var(--accent-red);
    background: rgba(230, 57, 70, 0.05);
    transform: translateY(-4px);
}

.cb-item svg { width: 22px; height: 22px; color: var(--accent-red); flex-shrink: 0; }
.cb-item span { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: #fff; line-height: 1.2; }

/* RESPONSIVIDADE CIRÚRGICA (MOBILE & TABLET) */
@media (max-width: 1024px) {
    .guarantee { padding: 50px 0; }
    .guarantee-portal-box { padding: 40px 20px; border-radius: 24px; margin: 0 12px; width: auto; }
    .guarantee-grid-layout { grid-template-columns: 1fr !important; gap: 36px; }
    
    /* Emblema Concêntrico Reduzido e Delicado no Mobile */
    .concentric-stage { max-width: 220px; width: 100%; margin: 0 auto; }
    .outer-ring { width: 220px; height: 220px; }
    .rotating-svg-text { width: 195px; height: 195px; }
    .inner-ring { width: 110px; height: 110px; }
    .shield-3d-ruby { width: 55px; height: 55px; }

    .cyber-badges-grid { display: flex; flex-direction: column; gap: 10px; }
    .cb-item { width: 100%; min-width: 100%; padding: 14px 18px; }
    
    .guarantee-content h2 { font-size: 1.7rem; text-align: center; margin-bottom: 16px; }
    .guarantee-content p { font-size: 0.98rem; text-align: center; margin-bottom: 24px; }
}

/* ==========================================
   10. FAQ SECTION
   ========================================== */
.faq {
    background-color: var(--bg-secondary);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-item.faq-open {
    border-color: var(--accent-red);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.15);
}

.faq-question {
    padding: 24px;
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question svg {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item.faq-open .faq-question svg {
    transform: rotate(45deg);
    color: var(--accent-red);
}

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

.faq-answer-inner {
    padding: 0 24px 24px 24px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   11. CTA FINAL SECTION
   ========================================== */
.cta-final {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%),
                radial-gradient(circle at 50% 80%, rgba(230, 57, 70, 0.08) 0%, transparent 60%);
    padding: 120px 0;
    text-align: center;
}

.cta-final h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   FOOTER PREMIUM EXECUTIVO
   ========================================== */
footer {
    background-color: var(--bg-primary);
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    width: 100%;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col h4::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent-red);
    display: block;
    margin-left: 8px;
}

.logo-footer {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start; /* Alinha a logo estritamente à esquerda com o texto */
    width: 100%;
}

.logo-img-footer {
    height: 22px;
    width: auto;
    display: block;
    margin: 0; /* Remove qualquer margem automática herdada */
    transition: all 0.3s ease;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
    max-width: 320px;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '•';
    color: var(--accent-red);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.footer-contact-li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-contact-li svg {
    color: var(--accent-red);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom p { margin: 0; }

@media (max-width: 991px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ==========================================
   MOBILE STICKY BOTTOM CTA
   ========================================== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-glass);
    padding: 14px 24px;
    z-index: 90;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.mobile-sticky-cta.active {
    transform: translateY(0);
}

.mobile-sticky-cta .premium-btn {
    width: 100%;
    max-width: 400px;
    padding: 14px 24px;
    font-size: 0.8125rem;
}

/* ==========================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .proof-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    html {
        font-size: 15px;
    }
    
    header {
        padding: 14px 0;
    }

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

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1100;
    }

    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }

    /* Highlights Bar Mobile (Marquee) */
    .marquee-group {
        gap: 35px;
        padding-right: 35px;
    }
    
    .marquee-item {
        font-size: 0.85rem;
    }
    
    /* Global CTA Button Responsiveness */
    .premium-btn {
        padding: 16px 26px !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.12em !important;
    }
    
    /* Hero Mobile Overrides - Full Screen Premium Layout v11 */
    .hero {
        min-height: 100dvh;
        display: flex;
        align-items: flex-end;
        padding-top: 130px;
        padding-bottom: 10px; /* Desce o conteúdo ao máximo para não cobrir os produtos na imagem de fundo */
        background-image: url('./images/hero-mobile.webp?v=11') !important;
        background-size: cover !important;
        background-position: center top !important; /* Alinha a imagem no topo para subir os produtos e dar mais espaço preto abaixo para o texto */
        background-repeat: no-repeat !important;
        background-color: #050505 !important;
        position: relative;
    }
    
    .hero::before {
        content: '' !important;
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(5, 5, 5, 0.45) 0%, rgba(5, 5, 5, 0.1) 40%, rgba(5, 5, 5, 0.92) 92%) !important;
        z-index: 1;
        pointer-events: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        position: relative;
        z-index: 2;
    }
    
    .hero-spacer {
        display: none;
    }

    .hero-mobile-bg-spacer {
        display: none !important; /* Completely hidden as the background covers the full screen */
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
        max-width: 440px;
        width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 3;
    }

    .hero-badge {
        display: none !important; /* Oculta a badge no mobile para economizar espaço e descer a Headline */
    }
    
    .hero h1 {
        font-size: 2.65rem; /* Aumentado imponentemente no mobile */
        line-height: 1.1;
        margin-bottom: 14px;
        font-weight: 900;
    }
    
    .hero-sub {
        font-size: 1.05rem; /* Aumentado elegantemente no mobile */
        margin-bottom: 20px;
        line-height: 1.45;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-bullets {
        align-self: center;
    }
    
    /* Problem */
    .problem-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch; /* Override desktop center-alignment to prevent child shrink-wrapping */
        gap: 40px;
    }
    
    .problem-media {
        order: 2;
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
    }
    
    /* Benefits */
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .slider-container {
        order: 2;
    }
    
    /* Solution (Carrossel 3D Responsivo v12) */
    .carousel-3d-wrapper {
        height: 500px !important;
        margin-top: 30px !important;
    }
    
    .carousel-track {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 430px !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .carousel-card {
        position: absolute !important;
        left: 50% !important;
        margin-left: -137.5px !important;
        top: 15px !important;
        width: 275px !important;
        height: 400px !important;
        padding: 24px !important;
    }
    
    .carousel-card h3 {
        font-size: 1.15rem !important;
    }
    
    .carousel-card.active h3 {
        font-size: 1.3rem !important;
    }
    
    .carousel-card.active {
        transform: translate3d(0, 0, 60px) scale(1) rotateY(0deg) !important;
        opacity: 1 !important;
        z-index: 10 !important;
    }
    
    .carousel-card.prev {
        transform: translate3d(-75px, 0, -80px) scale(0.75) !important;
        opacity: 0.35 !important;
        z-index: 5 !important;
    }
    
    .carousel-card.next {
        transform: translate3d(75px, 0, -80px) scale(0.75) !important;
        opacity: 0.35 !important;
        z-index: 5 !important;
    }
    
    .carousel-card.far-prev {
        transform: translate3d(-130px, 0, -150px) scale(0.5) !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .carousel-card.far-next {
        transform: translate3d(130px, 0, -150px) scale(0.5) !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .carousel-3d-btn {
        width: 46px !important;
        height: 46px !important;
    }
    
    /* Mechanism Responsiveness & Routine 3-Columns Layout */
    .routine-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .routine-center {
        order: 2; /* Move a imagem para o meio das situações: 1 e 2 em cima, imagem no meio, 3 e 4 embaixo! */
        margin: 20px auto;
        max-width: 300px;
    }
    
    .routine-left {
        order: 1;
        align-items: stretch !important;
        margin-right: 0 !important;
    }

    .routine-left .mechanism-point-card {
        border-right: none !important;
        border-left: 3px solid var(--accent-red) !important;
        border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0 !important;
        text-align: left !important;
        max-width: 100% !important;
        flex-direction: row !important; /* Restaura check na esquerda no mobile */
    }

    .routine-left .mechanism-point-card:hover {
        transform: translateX(4px) !important;
    }
    
    .routine-right {
        order: 3;
        align-items: stretch !important;
        margin-left: 0 !important;
    }

    .routine-right .mechanism-point-card {
        text-align: left !important;
        max-width: 100% !important;
        border-left: 3px solid var(--accent-red) !important;
        border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0 !important;
    }

    .routine-right .mechanism-point-card:hover {
        transform: translateX(4px) !important;
    }
    
    /* Tech Formula Section Mobile */
    .tech-formula {
        padding: 60px 0;
    }
    
    .tech-formula-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .tech-formula-visual {
        order: 2;
    }
    
    .tech-formula-content {
        order: 1;
        align-items: center;
        text-align: center;
    }

    .tech-formula-content .section-title {
        text-align: center !important;
    }

    .tech-formula-content .section-subtitle {
        text-align: center !important;
        margin: 0 auto 24px auto !important;
        max-width: 360px;
    }

    .tech-lines-list {
        align-items: center;
        width: 100%;
    }

    .tech-line {
        width: 100%;
        max-width: 360px;
        text-align: left;
        margin: 0 auto;
    }
    
    /* Proof */
    .proof-slider {
        grid-template-columns: 1fr;
    }
    
    /* Offer */
    .offer-header {
        padding: 36px 24px 24px 24px;
    }
    
    .offer-header h3 {
        font-size: 1.75rem;
    }
    
    .offer-body {
        padding: 24px;
    }
    
    .offer-items-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .offer-footer-pricing {
        padding: 28px 24px;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Guarantee */
    .guarantee-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    
    .guarantee-seal-placeholder {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .timer {
        gap: 10px;
        justify-content: center;
    }
    
    .timer-segment {
        min-width: 55px;
    }
    
    .timer-val {
        font-size: 1.25rem;
    }
}

/* ==========================================
   REACT BITS BORDER GLOW CARD EFFECT (RED VERSION)
   ========================================== */
.border-glow-card {
  --edge-proximity: 0;
  --cursor-angle: 45deg;
  --edge-sensitivity: 25;
  --color-sensitivity: calc(var(--edge-sensitivity) + 15);
  --border-radius: 24px;
  --glow-padding: 30px;
  --cone-spread: 25;
  --card-bg: #0c0c0c;
  --fill-opacity: 0.35;

  /* HSL Crimson Glow Colors */
  --glow-color: hsl(354deg 77% 56% / 100%);
  --glow-color-60: hsl(354deg 77% 56% / 60%);
  --glow-color-50: hsl(354deg 77% 56% / 50%);
  --glow-color-40: hsl(354deg 77% 56% / 40%);
  --glow-color-30: hsl(354deg 77% 56% / 30%);
  --glow-color-20: hsl(354deg 77% 56% / 20%);
  --glow-color-10: hsl(354deg 77% 56% / 10%);

  /* Crimson/Burgundy Mesh Gradients */
  --gradient-one: radial-gradient(at 80% 55%, #ff4d6d 0px, transparent 50%);
  --gradient-two: radial-gradient(at 69% 34%, #ff002b 0px, transparent 50%);
  --gradient-three: radial-gradient(at 8% 6%, #800016 0px, transparent 50%);
  --gradient-four: radial-gradient(at 41% 38%, #ff4d6d 0px, transparent 50%);
  --gradient-five: radial-gradient(at 86% 85%, #ff002b 0px, transparent 50%);
  --gradient-six: radial-gradient(at 82% 18%, #800016 0px, transparent 50%);
  --gradient-seven: radial-gradient(at 51% 4%, #ff002b 0px, transparent 50%);
  --gradient-base: linear-gradient(#ff4d6d 0 100%);

  position: relative;
  border-radius: var(--border-radius);
  isolation: isolate;
  transform: translate3d(0, 0, 0.01px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card-bg);
  overflow: visible;
  height: 100%;
  box-shadow:
    rgba(0, 0, 0, 0.3) 0px 10px 30px,
    rgba(230, 57, 70, 0.02) 0px 0px 20px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.border-glow-card::before,
.border-glow-card::after,
.border-glow-card > .edge-light {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: opacity 0.25s ease-out;
  z-index: -1;
}

.border-glow-card:not(:hover):not(.sweep-active)::before,
.border-glow-card:not(:hover):not(.sweep-active)::after,
.border-glow-card:not(:hover):not(.sweep-active) > .edge-light {
  opacity: 0;
  transition: opacity 0.75s ease-in-out;
}

/* Colored mesh-gradient border */
.border-glow-card::before {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card-bg) 0 100%) padding-box,
    linear-gradient(rgba(255,255,255,0) 0% 100%) border-box,
    var(--gradient-one) border-box,
    var(--gradient-two) border-box,
    var(--gradient-three) border-box,
    var(--gradient-four) border-box,
    var(--gradient-five) border-box,
    var(--gradient-six) border-box,
    var(--gradient-seven) border-box,
    var(--gradient-base) border-box;

  opacity: calc((var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));

  -webkit-mask-image:
    conic-gradient(
      from var(--cursor-angle) at center,
      black calc(var(--cone-spread) * 1%),
      transparent calc((var(--cone-spread) + 15) * 1%),
      transparent calc((100 - var(--cone-spread) - 15) * 1%),
      black calc((100 - var(--cone-spread)) * 1%)
    );
  mask-image:
    conic-gradient(
      from var(--cursor-angle) at center,
      black calc(var(--cone-spread) * 1%),
      transparent calc((var(--cone-spread) + 15) * 1%),
      transparent calc((100 - var(--cone-spread) - 15) * 1%),
      black calc((100 - var(--cone-spread)) * 1%)
    );
}

/* Colored mesh-gradient background fill near edges */
.border-glow-card::after {
  border: 1px solid transparent;
  background:
    var(--gradient-one) padding-box,
    var(--gradient-two) padding-box,
    var(--gradient-three) padding-box,
    var(--gradient-four) padding-box,
    var(--gradient-five) padding-box,
    var(--gradient-six) padding-box,
    var(--gradient-seven) padding-box,
    var(--gradient-base) padding-box;

  -webkit-mask-image:
    linear-gradient(to bottom, black, black),
    radial-gradient(ellipse at 50% 50%, black 40%, transparent 65%),
    radial-gradient(ellipse at 66% 66%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 66% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 66%, black 5%, transparent 40%),
    conic-gradient(from var(--cursor-angle) at center, transparent 5%, black 15%, black 85%, transparent 95%);
  mask-image:
    linear-gradient(to bottom, black, black),
    radial-gradient(ellipse at 50% 50%, black 40%, transparent 65%),
    radial-gradient(ellipse at 66% 66%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 66% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 66%, black 5%, transparent 40%),
    conic-gradient(from var(--cursor-angle) at center, transparent 5%, black 15%, black 85%, transparent 95%);

  -webkit-mask-composite: xor;
  mask-composite: subtract;
  
  opacity: calc(var(--fill-opacity, 0.35) * (var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
  mix-blend-mode: soft-light;
}

/* Outer glow layer */
.border-glow-card > .edge-light {
  inset: calc(var(--glow-padding) * -1);
  pointer-events: none;
  z-index: 1;

  -webkit-mask-image:
    conic-gradient(
      from var(--cursor-angle) at center, black 2.5%, transparent 10%, transparent 90%, black 97.5%
    );
  mask-image:
    conic-gradient(
      from var(--cursor-angle) at center, black 2.5%, transparent 10%, transparent 90%, black 97.5%
    );

  opacity: calc((var(--edge-proximity) - var(--edge-sensitivity)) / (100 - var(--edge-sensitivity)));
  mix-blend-mode: plus-lighter;
}

.border-glow-card > .edge-light::before {
  content: "";
  position: absolute;
  inset: var(--glow-padding);
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px var(--glow-color, hsl(354deg 77% 56% / 100%)),
    inset 0 0 1px 0 var(--glow-color-60, hsl(354deg 77% 56% / 60%)),
    inset 0 0 3px 0 var(--glow-color-50, hsl(354deg 77% 56% / 50%)),
    inset 0 0 6px 0 var(--glow-color-40, hsl(354deg 77% 56% / 40%)),
    inset 0 0 15px 0 var(--glow-color-30, hsl(354deg 77% 56% / 30%)),
    inset 0 0 25px 2px var(--glow-color-20, hsl(354deg 77% 56% / 20%)),
    inset 0 0 50px 2px var(--glow-color-10, hsl(354deg 77% 56% / 10%)),
    0 0 1px 0 var(--glow-color-60, hsl(354deg 77% 56% / 60%)),
    0 0 3px 0 var(--glow-color-50, hsl(354deg 77% 56% / 50%)),
    0 0 6px 0 var(--glow-color-40, hsl(354deg 77% 56% / 40%)),
    0 0 15px 0 var(--glow-color-30, hsl(354deg 77% 56% / 30%)),
    0 0 25px 2px var(--glow-color-20, hsl(354deg 77% 56% / 20%)),
    0 0 50px 2px var(--glow-color-10, hsl(354deg 77% 56% / 10%));
}

.border-glow-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  z-index: 1;
  height: 100%;
  padding: 32px;
}
