/* ========================================
   AGÊNCIA GENS - PREMIUM PRESENTATION
   Color Palette: Full Green Theme
   Viewport: Fixed 100vh, No Scroll
   ======================================== */

:root {
    /* Primary Colors - Green Theme */
    --primary-dark: #0D1F12;
    --primary: #1A5D2E;
    --primary-light: #2E7D42;
    --primary-accent: #00E676;
    --primary-glow: #00FF88;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F0F5F1;
    --gray-50: #E8EDEA;
    --gray-100: #D0D8D2;
    --gray-200: #A8B5AB;
    --gray-300: #8FA393;
    --gray-400: #6B7D6F;
    --gray-500: #4A5A4E;
    --gray-600: #3D4A40;
    --gray-700: #2A332C;
    --gray-800: #1A201B;
    --gray-900: #0D110E;

    /* Text Colors */
    --text-dark: #1A201B;
    --text-medium: #3D4A40;
    --text-light: #6B7D6F;

    /* Accent Colors */
    --accent-emerald: #10B981;
    --accent-teal: #14B8A6;
    --accent-lime: #84CC16;

    /* Semantic Colors */
    --success: #22C55E;
    --warning: #F59E0B;
    --error: #EF4444;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00E676 0%, #1A5D2E 100%);
    --gradient-accent: linear-gradient(135deg, #10B981 0%, #00FF88 100%);
    --gradient-dark: linear-gradient(180deg, #0D1F12 0%, #1A201B 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 40px rgba(0, 230, 118, 0.4);

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

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ========================================
   RESET & BASE STYLES - FIXED VIEWPORT
   ======================================== */

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

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

body {
    font-family: var(--font-secondary);
    background: var(--primary-dark);
    color: var(--white);
    line-height: 1.6;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

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

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

ul {
    list-style: none;
}

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

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

/* ========================================
   NAVIGATION CONTROLS - Touch targets 48px
   ======================================== */

.nav-controls {
    position: fixed;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: rgba(13, 31, 18, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: var(--radius-full);
    z-index: 1000;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    background: rgba(0, 230, 118, 0.15);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: all var(--transition-base);
    -webkit-tap-highlight-color: transparent;
}

.nav-btn:hover,
.nav-btn:active {
    background: var(--primary-accent);
    color: var(--primary-dark);
    transform: scale(1.05);
}

.slide-counter {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-300);
    min-width: 50px;
    text-align: center;
}

.slide-counter #currentSlide {
    color: var(--primary-accent);
}

/* ========================================
   PROGRESS BAR
   ======================================== */

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    width: 10%;
    transition: width var(--transition-slow);
}

/* ========================================
   SLIDES CONTAINER - FIXED VIEWPORT
   ======================================== */

.slides-container {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.slide-active {
    opacity: 1;
    visibility: visible;
}

/* Dark Green Background for ALL slides */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: var(--gradient-dark);
    z-index: -1;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(0, 230, 118, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.slide-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.slide-content {
    width: 100%;
    max-width: 1000px;
    min-height: 100vh;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg) 100px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* ========================================
   COMMON ELEMENTS
   ======================================== */

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-accent);
    margin-bottom: var(--space-xs);
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-300);
    max-width: 500px;
    margin-bottom: var(--space-lg);
}

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

.gradient-text-red {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   SLIDE 1: COVER
   ======================================== */

.slide-bg-cover {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 230, 118, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        var(--gradient-dark);
}

.cover-slide {
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding-top: var(--space-3xl);
}

.logo-container {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
}

.logo-image {
    height: 50px;
    width: auto;
}

.cover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: 0 var(--space-md);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(0, 230, 118, 0.15);
    border: 1px solid rgba(0, 230, 118, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-accent);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-accent);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.cover-title {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    max-width: 700px;
}

.cover-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--gray-300);
    max-width: 550px;
}

.cover-features {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--space-md);
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(0, 230, 118, 0.15);
    border: 1px solid rgba(0, 230, 118, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary-accent);
}

.feature-pill svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-accent);
}

.cover-methodology {
    max-width: 600px;
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: var(--radius-md);
}

.methodology-text {
    font-size: 0.9375rem;
    color: var(--gray-200);
    line-height: 1.5;
}

.methodology-text strong {
    color: var(--primary-accent);
}

.cover-footer {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    max-width: 600px;
}

.cover-footer p {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

/* ========================================
   SLIDE 2: AUTHORITY
   ======================================== */

.authority-slide {
    justify-content: center;
    align-items: center;
}

.authority-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--space-xl);
    align-items: center;
    width: 100%;
    max-width: 900px;
}

.authority-photo {
    position: relative;
    display: flex;
    justify-content: center;
}

.photo-frame {
    position: relative;
    width: 200px;
    height: 260px;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.2) 0%, rgba(26, 93, 46, 0.3) 100%);
    border: 2px solid rgba(0, 230, 118, 0.4);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.strategist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(0, 230, 118, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

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

.strategist-name {
    margin-bottom: var(--space-lg);
}

.strategist-name h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.strategist-name p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.stat-card {
    padding: var(--space-md);
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(0, 230, 118, 0.12);
    border-color: rgba(0, 230, 118, 0.4);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.stat-description {
    font-size: 0.75rem;
    color: var(--gray-400);
    line-height: 1.4;
}

/* ========================================
   SLIDE 3: PROBLEM
   ======================================== */

.problem-slide {
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: var(--space-lg);
}

.bucket-visual {
    margin: var(--space-sm) 0;
}

.bucket-container {
    position: relative;
    display: inline-block;
}

.bucket-svg {
    width: 100px;
    height: 130px;
}

.bucket-label {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6875rem;
    color: var(--gray-400);
    white-space: nowrap;
}

.hole {
    animation: holeGlow 1.5s infinite;
}

@keyframes holeGlow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.leak {
    animation: leakDrop 2s infinite;
}

.leak-1 {
    animation-delay: 0s;
}

.leak-2 {
    animation-delay: 0.5s;
}

.leak-3 {
    animation-delay: 1s;
}

.leak-4 {
    animation-delay: 1.5s;
}

@keyframes leakDrop {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(30px);
    }
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    max-width: 700px;
    margin: var(--space-md) auto 0;
}

.problem-card {
    padding: var(--space-md);
    background: rgba(255, 75, 87, 0.08);
    border: 1px solid rgba(255, 75, 87, 0.25);
    border-radius: var(--radius-sm);
    text-align: left;
}

.problem-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-xs);
    background: rgba(255, 75, 87, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon svg {
    width: 22px;
    height: 22px;
    stroke: #FF4757;
}

.problem-card h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.problem-card p {
    font-size: 0.75rem;
    color: var(--gray-400);
    line-height: 1.4;
}

/* ========================================
   SLIDE 4: SOLUTION
   ======================================== */

.solution-slide {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pillars-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    width: 100%;
    margin-top: var(--space-md);
}

.pillar-card {
    position: relative;
    padding: var(--space-lg) var(--space-md);
    background: rgba(0, 230, 118, 0.06);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--radius-md);
    text-align: left;
}

.pillar-card.featured {
    background: rgba(0, 230, 118, 0.12);
    border-color: rgba(0, 230, 118, 0.5);
    box-shadow: var(--shadow-glow);
}

.featured-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px var(--space-sm);
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.pillar-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(0, 230, 118, 0.2);
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 230, 118, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.pillar-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-accent);
}

.pillar-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.pillar-card p {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.pillar-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pillar-features li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--gray-300);
}

.pillar-features li::before {
    content: '✓';
    color: var(--primary-accent);
    font-weight: 700;
    font-size: 0.75rem;
}

/* ========================================
   SLIDE 5: SOCIAL PROOF
   ======================================== */

.social-proof-slide {
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: var(--space-lg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    width: 100%;
    margin-top: var(--space-md);
}

.testimonial-card {
    background: rgba(0, 230, 118, 0.06);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.testimonial-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

/* ========================================
   SLIDE 6: FUTURE SCENARIO
   ======================================== */

.future-slide {
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: var(--space-lg);
}

.future-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    width: 100%;
    margin-top: var(--space-md);
}

.future-section {
    background: rgba(0, 230, 118, 0.06);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: left;
}

.future-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid rgba(0, 230, 118, 0.4);
}

.future-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.future-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    color: var(--gray-200);
}

.future-list li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: var(--primary-accent);
    margin-top: 1px;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--gray-200);
    padding: var(--space-xs);
    background: rgba(0, 230, 118, 0.08);
    border-radius: 4px;
}

.benefit-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    stroke: var(--primary-accent);
}

/* ========================================
   SLIDE 7: BONUS
   ======================================== */

.bonus-slide {
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: var(--space-lg);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    width: 100%;
    margin-top: var(--space-md);
}

.bonus-card {
    position: relative;
    padding: var(--space-lg) var(--space-sm);
    background: rgba(0, 230, 118, 0.1);
    border: 2px solid var(--primary-accent);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px var(--space-md);
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.bonus-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto var(--space-sm);
    background: rgba(0, 230, 118, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-accent);
}

.bonus-card h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.bonus-card>p {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.bonus-value {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: var(--space-xs);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xs);
}

.value-label {
    font-size: 0.625rem;
    color: var(--gray-400);
    text-transform: uppercase;
}

.value-price {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-500);
    text-decoration: line-through;
}

.value-free {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary-accent);
}

.bonus-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 0.5625rem;
    color: var(--gray-400);
    text-align: left;
    line-height: 1.3;
}

.bonus-disclaimer svg {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    stroke: var(--gray-500);
}

/* ========================================
   SLIDE 8: VALUE STACK
   ======================================== */

.value-slide {
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: var(--space-lg);
}

.value-stack {
    width: 100%;
    max-width: 550px;
    margin: var(--space-md) auto 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(0, 230, 118, 0.06);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
}

.value-item.bonus-item {
    background: rgba(0, 230, 118, 0.1);
    border-color: rgba(0, 230, 118, 0.35);
}

.value-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(0, 230, 118, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-accent);
}

.value-description {
    flex: 1;
    text-align: left;
}

.value-description h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.value-description p {
    font-size: 0.6875rem;
    color: var(--gray-400);
}

.value-extra {
    font-size: 0.625rem !important;
    margin-top: 2px;
}

.bonus-tag {
    display: inline-block;
    padding: 1px 6px;
    background: var(--gradient-accent);
    border-radius: 4px;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.value-item .value-price {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-300);
    white-space: nowrap;
    text-decoration: none;
}

.value-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: var(--gradient-accent);
    border-radius: var(--radius-sm);
    margin-top: var(--space-xs);
}

.total-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.total-price {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

/* ========================================
   SLIDE 9: INVESTMENT
   ======================================== */

.investment-slide {
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: var(--space-lg);
}

.investment-card {
    max-width: 480px;
    margin: var(--space-md) auto 0;
    padding: var(--space-lg);
    background: rgba(0, 230, 118, 0.08);
    border: 2px solid var(--primary-accent);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
}

.investment-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.crossed-value {
    font-size: 1rem;
    color: var(--gray-500);
}

.crossed-value span {
    text-decoration: line-through;
}

.special-badge {
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
}

.investment-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-xs);
}

.investment-value .currency {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-accent);
}

.investment-value .amount {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.investment-value .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-400);
}

.investment-condition {
    margin-bottom: var(--space-md);
}

.investment-condition p {
    font-size: 0.6875rem;
    color: var(--gray-500);
    font-style: italic;
}

.investment-includes {
    text-align: left;
    margin-bottom: var(--space-md);
}

.investment-includes .includes-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.investment-includes ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.investment-includes li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    color: var(--gray-300);
}

.investment-includes li svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-accent);
    flex-shrink: 0;
}

.urgency-box {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    padding: var(--space-sm);
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.4);
    border-radius: var(--radius-sm);
    text-align: left;
    margin-bottom: var(--space-sm);
}

.urgency-box svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: #FF4757;
}

.urgency-box strong {
    display: block;
    font-size: 0.75rem;
    color: #FF6B6B;
    margin-bottom: 4px;
}

.urgency-box p {
    font-size: 0.6875rem;
    color: var(--gray-400);
}

.investment-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-xs);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 0.6875rem;
    color: var(--gray-500);
}

.investment-note svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    stroke: var(--gray-500);
}

/* ========================================
   SLIDE 10: FINAL
   ======================================== */

.slide-bg-final {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(0, 230, 118, 0.15) 0%, transparent 50%),
        var(--gradient-dark);
}

.final-slide {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
    flex-wrap: wrap;
}

.step-card {
    padding: var(--space-md);
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: var(--radius-md);
    width: 160px;
    text-align: center;
}

.step-number {
    width: 36px;
    height: 36px;
    margin: 0 auto var(--space-sm);
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.step-card h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.step-card p {
    font-size: 0.75rem;
    color: var(--gray-400);
    line-height: 1.3;
}

.step-arrow {
    color: var(--primary-accent);
}

.step-arrow svg {
    width: 24px;
    height: 24px;
}

.scarcity-container {
    max-width: 450px;
    margin: var(--space-md) auto;
    padding: var(--space-md);
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: var(--radius-md);
}

.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
    color: #FFC107;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.scarcity-badge svg {
    width: 18px;
    height: 18px;
    stroke: #FFC107;
}

.scarcity-text {
    font-size: 0.8125rem;
    color: var(--gray-300);
    line-height: 1.4;
}

.scarcity-text strong {
    color: #FFC107;
}

.cta-container {
    margin: var(--space-lg) 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: var(--shadow-glow);
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
    transition: all var(--transition-base);
}

.cta-button:hover,
.cta-button:active {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(0, 230, 118, 0.5);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-dark);
}

.final-footer {
    margin-top: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.footer-logo {
    height: 40px;
    width: auto;
}

.final-footer p {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ========================================
   ANIMATIONS
   ======================================== */

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-up-delayed {
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delayed {
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   MOBILE RESPONSIVE - Touch-First
   ======================================== */

@media (max-width: 1024px) {
    .authority-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-content .section-label,
    .authority-content .section-title {
        text-align: center;
    }

    .strategist-name {
        text-align: center;
    }

    .pillars-container,
    .problems-grid,
    .bonus-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    /* ===================================
       GLOBAL MOBILE: Padding lateral TODOS os slides
       =================================== */
    .slide-content {
        padding: var(--space-lg) var(--space-xl) 100px;
        /* Padding lateral maior (24px) */
    }

    .section-title {
        font-size: 1.5rem;
        /* Aumentado para melhor legibilidade */
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* ===================================
       SLIDE 1: COVER - Logo centralizado e maior
       =================================== */
    .cover-slide {
        padding-top: 60px;
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }

    .cover-title {
        font-size: 1.5rem;
    }

    /* Logo centralizado e maior */
    .logo-container {
        position: relative;
        top: auto;
        left: auto;
        text-align: center;
        margin-bottom: var(--space-lg);
    }

    .logo-image {
        height: 70px;
        width: auto;
    }

    .cover-footer {
        bottom: 100px;
        padding: 0 var(--space-lg);
    }

    /* ===================================
       SLIDE 2: AUTHORITY - Fontes maiores
       =================================== */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    /* AJUSTE DE FONTE: Títulos dos cards de estatísticas */
    .stat-label {
        font-size: 1rem;
        /* Aumentado para melhor legibilidade */
        font-weight: 600;
        color: var(--white);
        margin-bottom: var(--space-xs);
    }

    .stat-description {
        font-size: 0.875rem;
        /* Aumentado para melhor legibilidade */
        color: var(--gray-400);
        line-height: 1.5;
    }

    /* ===================================
       SLIDE 3: PROBLEM - Cards centralizados e fontes maiores
       =================================== */
    .problems-grid {
        gap: var(--space-md);
    }

    .problem-card {
        text-align: center;
        /* Centraliza textos */
    }

    .problem-icon {
        margin: 0 auto var(--space-sm);
        /* Centraliza ícone */
    }

    /* AJUSTE DE FONTE: Títulos e descrições dos cards de problema */
    .problem-card h4 {
        font-size: 1.0625rem;
        /* Aumentado de 1rem para 17px */
        font-weight: 700;
        color: var(--white);
        margin-bottom: var(--space-xs);
    }

    .problem-card p {
        font-size: 0.9375rem;
        /* Aumentado de 0.875rem para 15px */
        color: var(--gray-400);
        line-height: 1.5;
    }

    /* ===================================
       SLIDE 4: SOLUTION - Pillar cards centralizados e maiores
       =================================== */
    .pillar-card {
        text-align: center;
        /* Centraliza textos */
    }

    .pillar-icon {
        margin: 0 auto var(--space-sm);
        /* Centraliza ícone */
    }

    .pillar-card h3 {
        font-size: 1.0625rem;
        /* Aumentado para 17px */
    }

    .pillar-card p {
        font-size: 0.9375rem;
        /* Aumentado para 15px */
    }

    .pillar-features {
        text-align: left;
        /* Lista mantém alinhamento esquerdo */
        display: inline-block;
    }

    .pillar-features li {
        font-size: 0.9375rem;
        /* Aumentado para 15px */
    }

    /* ===================================
       SLIDE 6: FUTURE - Benefícios maiores
       =================================== */
    .future-list li span {
        font-size: 0.9375rem;
    }

    .benefit-item span {
        font-size: 0.875rem;
    }

    /* ===================================
       SLIDE 7: BONUS - Cards com mais padding e espaçamento
       =================================== */
    .bonus-grid {
        grid-template-columns: 1fr;
        /* Força uma coluna no mobile */
        row-gap: 40px;
        /* Espaçamento vertical maior entre cards */
        column-gap: 0;
        /* Sem espaçamento horizontal (só tem 1 coluna) */
        padding: 0 var(--space-sm);
        /* Padding lateral extra */
    }

    .bonus-card {
        padding: var(--space-lg) var(--space-md);
        /* Mais padding interno */
        text-align: center;
    }

    .bonus-icon {
        margin: 0 auto var(--space-sm);
    }

    .bonus-card h3 {
        font-size: 1.125rem;
        /* Aumentado de 1rem para 18px */
        margin-bottom: var(--space-xs);
    }

    .bonus-card>p {
        font-size: 1rem;
        /* Aumentado de 0.875rem para 16px */
        line-height: 1.5;
    }

    .bonus-value {
        margin-top: var(--space-sm);
    }

    .value-label {
        font-size: 0.75rem;
    }

    .value-price {
        font-size: 1.125rem;
        /* Aumentado */
    }

    .value-free {
        font-size: 1.25rem;
        /* Aumentado */
    }

    /* ===================================
       NAVEGAÇÃO: Evitar sobreposição com texto
       =================================== */
    .nav-controls {
        bottom: 12px;
        gap: var(--space-sm);
        padding: 6px var(--space-sm);
        z-index: 1001;
        background: rgba(0, 0, 0, 0.3);
        border-radius: var(--radius-full);
    }

    .nav-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    /* ===================================
       OUTROS AJUSTES MOBILE
       =================================== */
    .investment-value .amount {
        font-size: 2.5rem;
    }

    .photo-frame {
        width: 160px;
        height: 200px;
    }

    .step-card {
        width: 100%;
        max-width: 280px;
    }

    .step-card h4 {
        font-size: 0.9375rem;
    }

    .step-card p {
        font-size: 0.8125rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .slide-content {
        padding: var(--space-sm) var(--space-xs) 85px;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .cover-title {
        font-size: 1.375rem;
    }

    .badge {
        font-size: 0.6875rem;
        padding: 4px var(--space-sm);
    }

    .feature-pill {
        font-size: 0.75rem;
    }

    .methodology-text {
        font-size: 0.8125rem;
    }

    .problems-grid,
    .pillars-container,
    .bonus-grid,
    .testimonials-grid {
        gap: var(--space-xs);
    }

    .problem-card,
    .pillar-card,
    .bonus-card {
        padding: var(--space-sm);
    }

    .value-stack {
        max-width: 100%;
    }

    .investment-card {
        padding: var(--space-md);
        max-width: 100%;
    }

    .investment-value .amount {
        font-size: 2.25rem;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .slide-content {
        padding-top: var(--space-sm);
        padding-bottom: 80px;
    }

    .cover-slide {
        padding-top: var(--space-lg);
    }

    .section-title {
        font-size: 1.25rem;
        margin-bottom: var(--space-xs);
    }

    .cover-title {
        font-size: 1.25rem;
    }

    .bucket-visual {
        margin: var(--space-xs) 0;
    }

    .bucket-svg {
        width: 60px;
        height: 80px;
    }
}