/**
 * EU ESTUDO EAD - Landing Page Styles
 * CSS limpo e organizado para single-landing_page.php
 *
 * @package EEAD
 * @version 3.0.0
 */

/* ==========================================================================
   1. CSS VARIABLES
   ========================================================================== */

:root {
    /* Colors */
    --lp-primary: #2563EB;
    --lp-primary-dark: #1D3557;
    --lp-secondary: #14B8A6;
    --lp-accent: #F59E0B;
    --lp-danger: #EF4444;
    --lp-success: #10B981;
    --lp-white: #FFFFFF;
    --lp-gray-50: #F9FAFB;
    --lp-gray-100: #F3F4F6;
    --lp-gray-300: #D1D5DB;
    --lp-gray-500: #6B7280;
    --lp-gray-700: #374151;
    --lp-gray-900: #111827;

    /* Spacing */
    --lp-section-padding: 80px;
    --lp-container-max: 1200px;

    /* Effects */
    --lp-radius: 12px;
    --lp-radius-lg: 20px;
    --lp-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --lp-shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.15);
    --lp-transition: 0.3s ease;
}

/* ==========================================================================
   2. BASE STYLES
   ========================================================================== */

.landing-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--lp-gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

.lp-main {
    overflow-x: hidden;
}

/* ==========================================================================
   3. GLOBAL SVG SIZE CONTROL
   ========================================================================== */

.landing-page svg {
    max-width: 48px;
    max-height: 48px;
}

.landing-page .lp-btn svg,
.landing-page .btn svg {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
}

/* Hero shapes are decorative - no size limit */
.landing-page .lp-hero__shape {
    max-width: none;
    max-height: none;
}

/* ==========================================================================
   4. SECTION BASE
   ========================================================================== */

.lp-section {
    padding: var(--lp-section-padding) 20px;
}

.lp-section--alt {
    background-color: var(--lp-gray-100);
}

.lp-section--dark {
    background: linear-gradient(135deg, var(--lp-primary-dark) 0%, #0f172a 100%);
    color: var(--lp-white);
}

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

.lp-section__header {
    text-align: center;
    margin-bottom: 50px;
}

.lp-section__badge {
    display: inline-block;
    background: var(--lp-primary);
    color: var(--lp-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.lp-section__badge--accent {
    background: linear-gradient(135deg, var(--lp-accent) 0%, #d97706 100%);
}

.lp-section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin: 0 0 16px;
    color: var(--lp-gray-900);
}

.lp-section__title--left {
    text-align: left;
}

.lp-section__subtitle {
    font-size: 1.1rem;
    color: var(--lp-gray-500);
    margin: 0;
}

/* ==========================================================================
   5. HEADER
   ========================================================================== */

.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--lp-white);
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow var(--lp-transition);
}

.lp-header--scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.lp-header__container {
    max-width: var(--lp-container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-header__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.lp-header__logo img,
.lp-header__logo .custom-logo {
    height: 40px;
    width: auto;
}

.lp-header__logo-text {
    font-size: 1.25rem;
    color: var(--lp-primary-dark);
    letter-spacing: -0.5px;
}

.lp-header__logo-text strong {
    font-weight: 800;
}

.lp-header__logo-text span {
    font-weight: 400;
    color: var(--lp-primary);
}

.lp-header__cta {
    background: var(--lp-primary);
    color: var(--lp-white);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background var(--lp-transition);
}

.lp-header__cta:hover {
    background: var(--lp-primary-dark);
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */

.lp-hero {
    padding: 120px 20px 100px;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%);
    color: var(--lp-white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Hero Background */
.lp-hero__bg {
    position: absolute;
    inset: 0;
}

.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.92) 0%, rgba(29, 53, 87, 0.95) 100%);
}

/* Animated Shapes - MAXIMUM MOVEMENT */
.lp-hero__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    perspective: 2000px;
    transform-style: preserve-3d;
}

.lp-hero__shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 70%);
    backdrop-filter: blur(3px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    will-change: transform, opacity;
    box-shadow:
        0 0 30px rgba(255, 255, 255, 0.1),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
}

/* Large orbiting shapes - FASTER */
.lp-hero__shape--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
    animation:
        shapeOrbit1 15s infinite linear,
        shapePulse 3s infinite ease-in-out,
        shapeGlow 4s infinite ease-in-out;
}

.lp-hero__shape--2 {
    width: 400px;
    height: 400px;
    bottom: 5%;
    left: -180px;
    animation:
        shapeOrbit2 18s infinite linear reverse,
        shapePulse 2.5s infinite ease-in-out,
        shapeGlow 3s infinite ease-in-out alternate;
    animation-delay: -3s;
}

.lp-hero__shape--3 {
    width: 250px;
    height: 250px;
    top: 25%;
    right: 0%;
    animation:
        shapeFloat3D 10s infinite ease-in-out,
        shapeGlow 2s infinite ease-in-out;
    animation-delay: -5s;
}

.lp-hero__shape--4 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation:
        shapeZigzag 8s infinite ease-in-out,
        shapePulse 2s infinite ease-in-out;
    animation-delay: -2s;
}

.lp-hero__shape--5 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 20%;
    animation:
        shapeSpin 12s infinite linear,
        shapeFloat3D 8s infinite ease-in-out reverse;
    animation-delay: -4s;
}

.lp-hero__shape--6 {
    width: 100px;
    height: 100px;
    top: 55%;
    right: 15%;
    animation:
        shapeZigzag 6s infinite ease-in-out,
        shapePulse 1.5s infinite ease-in-out;
    animation-delay: -1s;
}

.lp-hero__shape--7 {
    width: 80px;
    height: 80px;
    top: 5%;
    right: 25%;
    animation:
        shapeOrbit1 10s infinite linear,
        shapeGlow 2s infinite ease-in-out;
    animation-delay: -6s;
}

.lp-hero__shape--8 {
    width: 120px;
    height: 120px;
    bottom: 35%;
    right: 30%;
    animation:
        shapeSpin 15s infinite linear reverse,
        shapePulse 2.5s infinite ease-in-out;
    animation-delay: -7s;
}

/* Orbiting animation - FASTER & BIGGER */
@keyframes shapeOrbit1 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(80px, -100px) rotate(90deg) scale(1.15); }
    50% { transform: translate(0, -150px) rotate(180deg) scale(1); }
    75% { transform: translate(-80px, -60px) rotate(270deg) scale(0.85); }
    100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

@keyframes shapeOrbit2 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(40px, 50px) rotate(90deg) scale(1.05); }
    50% { transform: translate(80px, 0) rotate(180deg) scale(1.1); }
    75% { transform: translate(40px, -50px) rotate(270deg) scale(1.05); }
    100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

/* 3D floating animation */
@keyframes shapeFloat3D {
    0%, 100% {
        transform: translateZ(0) rotateX(0deg) rotateY(0deg) translate(0, 0);
    }
    25% {
        transform: translateZ(50px) rotateX(15deg) rotateY(-15deg) translate(30px, -40px);
    }
    50% {
        transform: translateZ(100px) rotateX(0deg) rotateY(0deg) translate(0, -60px);
    }
    75% {
        transform: translateZ(50px) rotateX(-15deg) rotateY(15deg) translate(-30px, -30px);
    }
}

/* Zigzag animation */
@keyframes shapeZigzag {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(20px, -30px) rotate(72deg); }
    40% { transform: translate(-10px, -50px) rotate(144deg); }
    60% { transform: translate(-30px, -20px) rotate(216deg); }
    80% { transform: translate(10px, -10px) rotate(288deg); }
}

/* Pulse animation */
@keyframes shapePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Glow animation - STRONGER */
@keyframes shapeGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.15), inset 0 0 30px rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 60px rgba(255, 255, 255, 0.3), inset 0 0 50px rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.25);
    }
}

/* Spin animation */
@keyframes shapeSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(0.9); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Particle effect overlay - MORE PARTICLES */
.lp-hero__particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(3px 3px at 10% 20%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(3px 3px at 35% 15%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 55% 25%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 60% 20%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(3px 3px at 70% 40%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 80% 50%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 85% 30%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 90% 65%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 10% 80%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 25% 90%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(3px 3px at 45% 85%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 70% 90%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 30% 50%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 90% 10%, rgba(255, 255, 255, 0.5), transparent);
    animation: particlesDrift 20s linear infinite, particlesTwinkle 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particlesDrift {
    0% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-80px) translateX(40px) rotate(180deg); }
    100% { transform: translateY(-160px) translateX(80px) rotate(360deg); }
}

@keyframes particlesTwinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Energy lines */
.lp-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.03) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.03) 50%, transparent 52%);
    background-size: 60px 60px;
    animation: energyLines 20s linear infinite;
    pointer-events: none;
}

@keyframes energyLines {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

/* Hero Container */
.lp-hero__container {
    max-width: var(--lp-container-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Hero Timer */
.lp-hero__timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 18px 40px;
    border-radius: 60px;
    margin: 0 auto 50px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-hero__timer-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lp-hero__timer-digits {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.lp-hero__timer-digits small {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-right: 8px;
}

.lp-hero__timer-num {
    font-size: 1.8rem;
    font-weight: 800;
    min-width: 36px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 8px;
    border-radius: 8px;
}

.lp-hero__timer-sep {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.5;
    margin: 0 3px;
}

/* Hero Grid - 2 columns */
.lp-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Text */
.lp-hero__text {
    text-align: left;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 158, 11, 0.95);
    color: #1f2937;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.lp-hero__badge-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
}

.lp-hero__title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 24px;
}

.lp-hero__subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin: 0 0 30px;
}

.lp-hero__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-hero__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.lp-hero__list svg {
    width: 20px;
    height: 20px;
    color: var(--lp-success);
    flex-shrink: 0;
}

/* Hero Slider */
.lp-hero__slider {
    position: relative;
    height: 420px;
    overflow: visible;
}

.lp-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.lp-hero__slide--active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.lp-hero__slide-img {
    position: relative;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.lp-hero__slide-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-hero__slide-badge {
    position: absolute;
    background: var(--lp-white);
    color: var(--lp-gray-900);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lp-hero__slide-badge span {
    font-size: 1rem;
}

.lp-hero__slide-badge--top { top: 20px; right: 20px; }
.lp-hero__slide-badge--bottom { bottom: 20px; left: 20px; }

/* Slide CTA */
.lp-hero__slide-cta {
    height: 100%;
    background: var(--lp-white);
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.lp-hero__slide-cta--alt {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.lp-hero__slide-cta--final {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.lp-hero__slide-cta-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1;
}

.lp-hero__slide-cta h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--lp-gray-900);
    margin: 0 0 12px;
}

.lp-hero__slide-cta p {
    font-size: 0.95rem;
    color: var(--lp-gray-500);
    margin: 0 0 12px;
}

.lp-hero__slide-price {
    margin-bottom: 16px;
}

.lp-hero__slide-price s {
    font-size: 0.9rem;
    color: var(--lp-danger);
    margin-right: 8px;
}

.lp-hero__slide-price strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--lp-primary);
}

.lp-hero__slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--lp-success) 0%, #059669 100%);
    color: var(--lp-white);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all var(--lp-transition);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.lp-hero__slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    color: var(--lp-white);
}

.lp-hero__slide-btn svg {
    width: 18px;
    height: 18px;
}

.lp-hero__slide-btn--pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 10px 40px rgba(16, 185, 129, 0.6); }
}

/* Slider Navigation Arrows */
.lp-hero__slider-prev,
.lp-hero__slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--lp-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all var(--lp-transition);
    z-index: 10;
}

.lp-hero__slider-prev:hover,
.lp-hero__slider-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.lp-hero__slider-prev { left: -24px; }
.lp-hero__slider-next { right: -24px; }

.lp-hero__slider-prev svg,
.lp-hero__slider-next svg {
    width: 24px;
    height: 24px;
    color: var(--lp-primary);
}

/* Slider Dots */
.lp-hero__slider-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.lp-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all var(--lp-transition);
}

.lp-hero__dot--active,
.lp-hero__dot:hover {
    background: var(--lp-white);
    transform: scale(1.3);
}

/* Floating Badges */
.lp-hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--lp-white);
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

.lp-hero__float--rating {
    top: -30px;
    right: -40px;
    animation: floatBadge 6s ease-in-out infinite;
}

.lp-hero__float--cert {
    bottom: 40px;
    left: -50px;
    animation: floatBadge 7s ease-in-out infinite reverse;
}

@keyframes floatBadge {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -20px); }
}

.lp-hero__float-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.lp-hero__float-text {
    display: flex;
    flex-direction: column;
}

.lp-hero__float-text strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lp-gray-900);
    line-height: 1.2;
}

.lp-hero__float-text span {
    font-size: 0.75rem;
    color: var(--lp-gray-500);
}

/* Trust Badges */
.lp-hero__trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.lp-hero__trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.lp-hero__trust svg {
    width: 18px;
    height: 18px;
}

/* Trust Badges - Hero (classes alternativas) */
.lp-hero__trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.lp-hero__trust-badges .lp-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.lp-hero__trust-badges .lp-trust-badge__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--lp-secondary);
}

/* Mobile: badges menores */
@media (max-width: 768px) {
    .lp-hero__trust-badges {
        gap: 10px;
    }

    .lp-hero__trust-badges .lp-trust-badge {
        font-size: 0.75rem;
        padding: 8px 12px;
        gap: 6px;
    }

    .lp-hero__trust-badges .lp-trust-badge__icon {
        width: 16px;
        height: 16px;
    }
}

/* Scroll Indicator */
.lp-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(10px); }
    60% { transform: translateX(-50%) translateY(5px); }
}

.lp-hero__scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.lp-hero__scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--lp-white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ==========================================================================
   7. PROBLEMA SECTION - 2 Column Layout
   ========================================================================== */

.lp-problema {
    background: var(--lp-white);
}

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

.lp-problema__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-problema__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.lp-problema__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-problema__icon svg {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    color: var(--lp-danger);
}

.lp-problema__text {
    flex: 1;
}

.lp-problema__titulo {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--lp-gray-900);
}

.lp-problema__descricao {
    font-size: 0.95rem;
    color: var(--lp-gray-500);
    margin: 0;
    line-height: 1.6;
}

.lp-problema__image {
    position: relative;
}

.lp-problema__image img {
    width: 100%;
    height: auto;
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-lg);
}

.lp-problema__image-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--lp-white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--lp-gray-900);
}

/* ==========================================================================
   8. SOLUCAO SECTION - 2 Column Layout (Image Left)
   ========================================================================== */

.lp-solucao {
    background: var(--lp-gray-100);
}

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

.lp-solucao__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-solucao__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.lp-solucao__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-solucao__icon svg {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    color: var(--lp-success);
}

.lp-solucao__text {
    flex: 1;
}

.lp-solucao__titulo {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--lp-gray-900);
}

.lp-solucao__descricao {
    font-size: 0.95rem;
    color: var(--lp-gray-500);
    margin: 0;
    line-height: 1.6;
}

.lp-solucao__image {
    position: relative;
}

.lp-solucao__image img {
    width: 100%;
    height: auto;
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-lg);
}

.lp-solucao__image-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--lp-white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--lp-gray-900);
}

/* ==========================================================================
   9. COMO FUNCIONA SECTION - 3 Steps Horizontal
   ========================================================================== */

.lp-como-funciona {
    background: linear-gradient(180deg, var(--lp-gray-50) 0%, var(--lp-white) 100%);
}

.lp-como-funciona__steps {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.lp-step {
    text-align: center;
    max-width: 280px;
    position: relative;
}

.lp-step__number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--lp-primary);
    color: var(--lp-white);
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.lp-step__icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--lp-primary);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.lp-step__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-step__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--lp-gray-900);
}

.lp-step__desc {
    font-size: 0.9rem;
    color: var(--lp-gray-500);
    line-height: 1.5;
    margin: 0;
}

.lp-step__arrow {
    font-size: 2rem;
    color: var(--lp-primary);
    opacity: 0.5;
    margin-top: 50px;
    align-self: center;
}

.lp-como-funciona__cta {
    text-align: center;
}

/* ==========================================================================
   10. MODULOS SECTION - Card Grid
   ========================================================================== */

.lp-modulos {
    background: var(--lp-white);
}

.lp-modulos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.lp-modulos__card {
    background: var(--lp-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-modulos__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.lp-modulos__image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.lp-modulos__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lp-modulos__card:hover .lp-modulos__image img {
    transform: scale(1.1);
}

.lp-modulos__icon {
    width: 48px;
    height: 48px;
    margin: 20px 20px 0;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-modulos__icon svg {
    width: 24px;
    height: 24px;
    color: var(--lp-white);
}

.lp-modulos__nome {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 20px 20px 8px;
    color: var(--lp-gray-900);
}

.lp-modulos__descricao {
    font-size: 0.9rem;
    color: var(--lp-gray-500);
    margin: 0 20px 16px;
    line-height: 1.5;
}

.lp-modulos__beneficio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--lp-success);
    font-weight: 600;
    margin: 0 20px 16px;
}

.lp-modulos__beneficio svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.lp-modulos__badge-incluso {
    display: inline-block;
    background: linear-gradient(135deg, var(--lp-secondary) 0%, #059669 100%);
    color: var(--lp-white);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 20px 20px;
    border-radius: 50px;
}

.lp-modulos__bonus {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--lp-accent) 0%, #d97706 100%);
    padding: 24px 30px;
    border-radius: 16px;
    margin-top: 40px;
    color: var(--lp-white);
}

.lp-modulos__bonus-icon svg {
    width: 24px;
    height: 24px;
}

.lp-modulos__bonus-titulo {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.lp-modulos__bonus-descricao {
    margin: 0;
    opacity: 0.9;
}

/* ==========================================================================
   11. DEPOIMENTOS SECTION - Horizontal Slider
   ========================================================================== */

.lp-depoimentos {
    background: var(--lp-gray-100);
}

.lp-depoimentos__slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.lp-depoimentos__slider::-webkit-scrollbar {
    display: none;
}

.lp-depoimento {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-depoimento:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.lp-depoimento__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.lp-depoimento__star {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
    fill: var(--lp-gray-300);
}

.lp-depoimento__star--filled {
    fill: #fbbf24;
}

.lp-depoimento__texto {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--lp-gray-900);
    margin: 0 0 20px;
    font-style: italic;
}

.lp-depoimento__autor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-depoimento__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--lp-primary);
}

.lp-depoimento__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-depoimento__info {
    display: flex;
    flex-direction: column;
}

.lp-depoimento__nome {
    font-weight: 700;
    color: var(--lp-gray-900);
    font-size: 1rem;
}

.lp-depoimento__cargo {
    font-size: 0.875rem;
    color: var(--lp-gray-500);
}

.lp-depoimentos__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.lp-depoimentos__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--lp-gray-300);
    border: none;
    cursor: pointer;
    transition: all var(--lp-transition);
}

.lp-depoimentos__dot.active,
.lp-depoimentos__dot:hover {
    background: var(--lp-primary);
    transform: scale(1.2);
}

/* ==========================================================================
   12. FAQ SECTION - Accordion
   ========================================================================== */

.lp-faq {
    background: var(--lp-white);
}

.lp-faq__accordion {
    max-width: 800px;
    margin: 0 auto;
}

.lp-faq__item {
    border: 1px solid var(--lp-gray-300);
    border-radius: var(--lp-radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.lp-faq__question {
    width: 100%;
    background: var(--lp-white);
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-gray-900);
    text-align: left;
    transition: background var(--lp-transition);
}

.lp-faq__question:hover {
    background: var(--lp-gray-100);
}

.lp-faq__icon {
    width: 20px;
    height: 20px;
    color: var(--lp-primary);
    transition: transform var(--lp-transition);
    flex-shrink: 0;
}

.lp-faq__item--active .lp-faq__icon,
.lp-faq__item.is-open .lp-faq__icon {
    transform: rotate(45deg);
}

.lp-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 24px;
}

.lp-faq__answer[hidden] {
    display: block;
    visibility: visible;
    max-height: 0;
    padding: 0 24px;
}

.lp-faq__item--active .lp-faq__answer,
.lp-faq__item.is-open .lp-faq__answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.lp-faq__answer div {
    font-size: 0.95rem;
    color: var(--lp-gray-500);
    line-height: 1.7;
}

/* ==========================================================================
   13. CTA FINAL SECTION - Centered
   ========================================================================== */

.lp-cta-final {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%);
    color: var(--lp-white);
    text-align: center;
    padding: 100px 20px;
}

.lp-cta-final__content {
    max-width: 600px;
    margin: 0 auto;
}

.lp-cta-final__timer {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 16px 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.lp-cta-final__timer-label {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
}

.lp-cta-final__timer-digits {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.lp-cta-final__timer-digits small {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-right: 6px;
}

.lp-cta-final__timer-num {
    font-size: 1.5rem;
    font-weight: 800;
    min-width: 30px;
    text-align: center;
}

.lp-cta-final__timer-sep {
    font-weight: 700;
    opacity: 0.5;
    margin: 0 2px;
}

.lp-cta-final__headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 16px;
}

.lp-cta-final__texto {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 0 30px;
}

.lp-cta-final__price {
    margin-bottom: 24px;
}

.lp-cta-final__price-old {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 1.25rem;
    margin-right: 12px;
}

.lp-cta-final__price-value {
    font-size: 2.5rem;
    font-weight: 800;
}

.lp-cta-final__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lp-white);
    color: var(--lp-primary);
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--lp-transition);
}

.lp-cta-final__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lp-cta-final__trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.lp-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.lp-trust-badge svg {
    width: 18px;
    height: 18px;
}

.lp-trust-badge--light {
    color: rgba(255, 255, 255, 0.8);
}

.lp-trust-badge--light svg {
    color: var(--lp-secondary);
}

/* ==========================================================================
   14. BONUS SECTION
   ========================================================================== */

.lp-bonus {
    background: linear-gradient(180deg, var(--lp-gray-50) 0%, var(--lp-white) 100%);
}

.lp-bonus__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.lp-bonus__card {
    background: var(--lp-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-bonus__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.lp-bonus__image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.lp-bonus__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lp-bonus__card:hover .lp-bonus__image img {
    transform: scale(1.1);
}

.lp-bonus__tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--lp-success);
    color: var(--lp-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.lp-bonus__content {
    padding: 24px;
}

.lp-bonus__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lp-gray-900);
    margin: 0 0 8px;
}

.lp-bonus__desc {
    color: var(--lp-gray-500);
    font-size: 0.9375rem;
    margin: 0 0 12px;
    line-height: 1.5;
}

.lp-bonus__value {
    color: var(--lp-danger);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: line-through;
}

.lp-bonus__total {
    text-align: center;
    font-size: 1.25rem;
    color: var(--lp-gray-900);
}

.lp-bonus__total strong {
    text-decoration: line-through;
    color: var(--lp-danger);
}

.lp-bonus__free {
    color: var(--lp-success);
    font-weight: 800;
    font-size: 1.5rem;
}

/* ==========================================================================
   15. STATS SECTION
   ========================================================================== */

.lp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.lp-stats__item {
    padding: 20px;
}

.lp-stats__number {
    display: block;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--lp-white);
    line-height: 1;
    margin-bottom: 10px;
}

.lp-stats__label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* ==========================================================================
   16. PARA QUEM SECTION
   ========================================================================== */

.lp-para-quem {
    background: var(--lp-gray-100);
}

.lp-para-quem__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-para-quem__card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--lp-shadow);
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-para-quem__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.lp-para-quem__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform var(--lp-transition);
}

.lp-para-quem__card:hover .lp-para-quem__icon {
    transform: scale(1.1);
}

.lp-para-quem__icon svg {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
    color: var(--lp-white);
}

.lp-para-quem__titulo {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--lp-gray-900);
}

.lp-para-quem__descricao {
    font-size: 0.9rem;
    color: var(--lp-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   17. GARANTIA SECTION
   ========================================================================== */

.lp-garantia {
    background: var(--lp-gray-100);
}

.lp-garantia__box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 50px;
    text-align: center;
    box-shadow: var(--lp-shadow);
    border: 3px solid var(--lp-success);
}

.lp-garantia__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.lp-garantia__icon svg {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
    color: var(--lp-success);
}

.lp-garantia__titulo {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 16px;
    color: var(--lp-gray-900);
}

.lp-garantia__texto {
    font-size: 1rem;
    color: var(--lp-gray-500);
    line-height: 1.7;
}

.lp-garantia__texto p {
    margin: 0;
}

.lp-garantia__selo {
    margin-top: 20px;
}

/* ==========================================================================
   18. CTA INTERMEDIARIO
   ========================================================================== */

.lp-cta-mid {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%);
    text-align: center;
}

.lp-cta-mid__container {
    max-width: 800px;
    margin: 0 auto;
}

.lp-cta-mid__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--lp-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.lp-cta-mid__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--lp-white);
    margin: 0 0 10px;
}

.lp-cta-mid__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin: 0 0 25px;
}

.lp-cta-mid__text strong {
    color: #fcd34d;
}

.lp-cta-mid__guarantee {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 15px 0 0;
}

/* ==========================================================================
   19. FOOTER
   ========================================================================== */

.lp-footer {
    background: var(--lp-gray-900);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 30px 20px;
    font-size: 0.875rem;
}

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

.lp-footer__logo {
    margin-bottom: 16px;
}

.lp-footer__logo img {
    height: 32px;
    width: auto;
}

.lp-footer__logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--lp-white);
}

.lp-footer__copyright {
    margin: 0 0 12px;
}

.lp-footer__legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lp-footer__legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--lp-transition);
}

.lp-footer__legal a:hover {
    color: var(--lp-white);
}

/* ==========================================================================
   20. WHATSAPP FLOAT BUTTON
   ========================================================================== */

.lp-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.lp-whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--lp-transition);
}

.lp-whatsapp-float a:hover {
    transform: scale(1.1);
}

.lp-whatsapp-float svg {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
    color: var(--lp-white);
}

/* ==========================================================================
   21. MOBILE CTA BAR
   ========================================================================== */

.lp-mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--lp-white);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 998;
    transition: bottom var(--lp-transition);
}

.lp-mobile-cta-bar--visible {
    bottom: 0;
}

.lp-mobile-cta-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.lp-mobile-cta-bar__price {
    display: flex;
    flex-direction: column;
}

.lp-mobile-cta-bar__price-label {
    font-size: 0.75rem;
    color: var(--lp-gray-500);
}

.lp-mobile-cta-bar__price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-primary);
}

.lp-mobile-cta-bar__btn {
    flex-shrink: 0;
}

/* ==========================================================================
   22. POPUP SCARCITY
   ========================================================================== */

.lp-popup-scarcity {
    position: fixed;
    bottom: 100px;
    left: 24px;
    z-index: 997;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--lp-transition), transform var(--lp-transition);
}

.lp-popup-scarcity--visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-popup-scarcity__content {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--lp-white);
    padding: 16px 20px;
    border-radius: var(--lp-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.lp-popup-scarcity__icon {
    width: 24px;
    height: 24px;
    color: var(--lp-accent);
}

.lp-popup-scarcity__text {
    font-size: 0.875rem;
    color: var(--lp-gray-700);
    margin: 0;
}

/* ==========================================================================
   23. BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--lp-transition);
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: var(--lp-primary);
    color: var(--lp-white);
}

.btn--primary:hover {
    background: var(--lp-primary-dark);
}

.btn--light {
    background: var(--lp-white);
    color: var(--lp-primary);
}

.btn--light:hover {
    background: var(--lp-gray-100);
}

.btn--sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn--full {
    width: 100%;
}

.btn__arrow {
    width: 18px;
    height: 18px;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--lp-radius);
    transition: all var(--lp-transition);
    border: none;
    cursor: pointer;
}

.lp-btn--cta {
    background: linear-gradient(135deg, var(--lp-success) 0%, #059669 100%);
    color: var(--lp-white);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.lp-btn--cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

.lp-btn--large {
    padding: 20px 48px;
    font-size: 1.25rem;
}

.lp-btn--pulse {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 12px 40px rgba(16, 185, 129, 0.6); }
}

/* ==========================================================================
   24. ANIMATIONS
   ========================================================================== */

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* AOS-like animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Mobile badges bar - escondido no desktop */
.lp-hero__badges-mobile {
    display: none;
}

/* ==========================================================================
   25. RESPONSIVE - Mobile First
   ========================================================================== */

@media (max-width: 900px) {
    /* Hero */
    .lp-hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .lp-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-hero__text {
        text-align: center;
    }

    .lp-hero__list {
        display: inline-block;
        text-align: left;
    }

    .lp-hero__slider {
        height: 320px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        position: relative;
    }

    .lp-hero__slide {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    /* Mobile: Esconder badges flutuantes */
    .lp-hero__float-cards {
        display: none !important;
    }

    /* Mobile: Mostrar badges em barra horizontal */
    .lp-hero__badges-mobile {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
        padding: 0 15px;
    }

    .lp-hero__badge-mobile {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 8px 14px;
        border-radius: 25px;
        color: white;
        font-size: 0.8rem;
    }

    .lp-hero__badge-mobile-icon {
        font-size: 1rem;
    }

    .lp-hero__badge-mobile strong {
        font-weight: 700;
    }

    .lp-hero__badge-mobile span:last-child {
        opacity: 0.85;
        font-size: 0.75rem;
    }

    .lp-hero__slider-prev,
    .lp-hero__slider-next {
        width: 40px;
        height: 40px;
    }

    .lp-hero__slider-prev { left: -10px; }
    .lp-hero__slider-next { right: -10px; }

    .lp-hero__slider-prev svg,
    .lp-hero__slider-next svg {
        width: 20px;
        height: 20px;
    }

    .lp-hero__trust {
        margin-top: 60px;
        gap: 20px;
    }

    .lp-hero__scroll {
        display: none;
    }

    /* Sections */
    .lp-section {
        padding: 60px 20px;
    }

    .lp-section__title--left {
        text-align: center;
    }

    /* Problema/Solucao */
    .lp-problema__layout,
    .lp-solucao__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-problema__image,
    .lp-solucao__image {
        order: -1;
    }

    .lp-problema__image-badge,
    .lp-solucao__image-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        right: auto;
        top: auto;
    }

    /* Como Funciona */
    .lp-como-funciona__steps {
        flex-direction: column;
        align-items: center;
    }

    .lp-step__arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    /* Garantia */
    .lp-garantia__box {
        padding: 30px 24px;
    }

    /* Stats */
    .lp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* CTA Mid */
    .lp-cta-mid {
        padding: 40px 20px;
    }

    .lp-cta-mid__title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    /* Grids */
    .lp-modulos__grid,
    .lp-bonus__grid,
    .lp-para-quem__grid {
        grid-template-columns: 1fr;
    }

    /* Timer */
    .lp-hero__timer {
        flex-direction: column;
        gap: 10px;
        padding: 14px 24px;
    }

    .lp-hero__timer-num {
        font-size: 1.4rem;
    }

    /* Slider */
    .lp-hero__slider {
        height: 300px;
    }

    .lp-hero__slide-cta {
        padding: 25px;
    }

    .lp-hero__slide-cta h3 {
        font-size: 1.15rem;
    }

    .lp-hero__slide-price strong {
        font-size: 1.75rem;
    }

    .lp-hero__slider-prev,
    .lp-hero__slider-next {
        display: none;
    }

    /* Depoimentos */
    .lp-depoimento {
        flex: 0 0 300px;
    }

    /* CTA Final */
    .lp-cta-final__trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Mobile CTA Bar */
    .lp-mobile-cta-bar {
        display: block;
    }

    /* WhatsApp adjustment */
    .lp-whatsapp-float {
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    .lp-hero__badge {
        padding: 10px 18px;
        font-size: 0.75rem;
    }

    .lp-hero__title {
        font-size: 1.75rem;
    }

    .lp-section__title {
        font-size: 1.5rem;
    }

    .lp-stats__number {
        font-size: 2rem;
    }

    .lp-btn--large {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   25. TRANSFORMERS SLIDER - 6 Epic 3D Effects
   ========================================================================== */

/* Slider container */
.lp-hero__slider {
    perspective: 2000px;
    transform-style: preserve-3d;
}

/* Slide base */
.lp-hero__slide {
    perspective: 2500px;
    transform-style: preserve-3d;
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
}

.lp-hero__slide.tf-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
}

.lp-hero__slide.tf-visible {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.lp-hero__slide.tf-active {
    z-index: 2;
    pointer-events: auto;
}

/* Container and pieces */
.tf-container {
    transform-style: preserve-3d;
}

.tf-piece {
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
    will-change: transform, opacity, filter;
}

/* Active state - assembled */
.tf-active .tf-piece,
.tf-visible:not([class*="tf-exit"]):not([class*="tf-enter"]) .tf-piece {
    opacity: 1;
    transform: none;
    filter: none;
}

/* ============ EFFECT 1: EXPLODE ============ */
.tf-exit-explode .tf-piece {
    opacity: 0;
    transform:
        translateX(var(--explode-x))
        translateY(var(--explode-y))
        translateZ(var(--explode-z))
        rotateX(var(--explode-rx))
        rotateY(var(--explode-ry))
        rotateZ(var(--explode-rz))
        scale(0.2);
    filter: blur(10px) brightness(2);
}

.tf-enter-explode .tf-piece {
    opacity: 0;
    transform:
        translateX(var(--explode-x))
        translateY(var(--explode-y))
        translateZ(var(--explode-z))
        rotateX(var(--explode-rx))
        rotateY(var(--explode-ry))
        rotateZ(var(--explode-rz))
        scale(0.2);
    filter: blur(10px);
    transition-delay: var(--delay-rev, 0s);
}

/* ============ EFFECT 2: VORTEX ============ */
.tf-exit-vortex .tf-piece {
    opacity: 0;
    transform:
        translateX(var(--vortex-x))
        translateY(var(--vortex-y))
        translateZ(var(--vortex-z))
        rotate(var(--vortex-r))
        scale(0.1);
    filter: blur(15px);
}

.tf-enter-vortex .tf-piece {
    opacity: 0;
    transform:
        translateX(var(--vortex-x))
        translateY(var(--vortex-y))
        translateZ(var(--vortex-z))
        rotate(var(--vortex-r))
        scale(0.1);
    filter: blur(15px);
    transition-delay: var(--delay-rev, 0s);
}

/* ============ EFFECT 3: SHATTER ============ */
.tf-exit-shatter .tf-piece {
    opacity: 0;
    transform:
        translateX(var(--shatter-x))
        translateY(var(--shatter-y))
        translateZ(var(--shatter-z))
        rotateX(var(--shatter-rx))
        rotateY(var(--shatter-ry))
        scale(0.3);
    filter: blur(5px) brightness(1.5);
    clip-path: polygon(
        calc(50% + var(--shatter-x) / 20) 0%,
        100% calc(50% + var(--shatter-y) / 20),
        50% 100%,
        0% 50%
    );
}

.tf-enter-shatter .tf-piece {
    opacity: 0;
    transform:
        translateX(var(--shatter-x))
        translateY(var(--shatter-y))
        translateZ(var(--shatter-z))
        rotateX(var(--shatter-rx))
        rotateY(var(--shatter-ry))
        scale(0.3);
    filter: blur(5px);
    transition-delay: var(--delay-rev, 0s);
}

/* ============ EFFECT 4: CUBE ============ */
.tf-exit-cube .tf-piece {
    opacity: 0;
    transform:
        translateX(var(--cube-x))
        translateZ(-300px)
        rotateY(var(--cube-ry))
        scale(0.5);
    filter: blur(3px);
}

.tf-enter-cube .tf-piece {
    opacity: 0;
    transform:
        translateX(calc(var(--cube-x) * -1))
        translateZ(-300px)
        rotateY(calc(var(--cube-ry) * -1))
        scale(0.5);
    filter: blur(3px);
    transition-delay: var(--delay-rev, 0s);
}

/* ============ EFFECT 5: FLIP ============ */
.tf-exit-flip .tf-piece {
    opacity: 0;
    transform:
        translateX(var(--flip-x))
        rotateY(var(--flip-y))
        scale(0.8);
    filter: blur(2px);
}

.tf-enter-flip .tf-piece {
    opacity: 0;
    transform:
        translateX(calc(var(--flip-x) * -1))
        rotateY(calc(var(--flip-y) * -1))
        scale(0.8);
    filter: blur(2px);
    transition-delay: var(--delay-rev, 0s);
}

/* ============ EFFECT 6: DISINTEGRATE (Thanos) ============ */
.tf-exit-disintegrate .tf-piece {
    opacity: 0;
    transform:
        translateX(var(--dust-x))
        translateY(var(--dust-y))
        scale(0.5);
    filter: blur(20px) grayscale(1);
}

.tf-enter-disintegrate .tf-piece {
    opacity: 0;
    transform:
        translateX(var(--dust-x))
        translateY(calc(var(--dust-y) * -1))
        scale(0.5);
    filter: blur(20px);
    transition-delay: var(--delay-rev, 0s);
}

/* ============ FLOAT CARDS - Corner Positions with Transformer Effects ============ */
.lp-hero__float-cards {
    position: absolute;
    inset: -30px -100px -30px -100px;
    z-index: 100;
    pointer-events: none;
}

.lp-hero__float-card {
    position: absolute;
    background: var(--lp-white);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    pointer-events: auto;
    cursor: pointer;
    /* Initial state - hidden until JS adds fc-visible */
    opacity: 0;
    transform: scale(0.5);
    /* Smooth transitions for hover */
    transition: box-shadow 0.3s ease;
}

/* Positions by class */
.lp-hero__float-card--top-right,
.lp-hero__float-card:nth-child(odd) {
    top: -10px;
    right: -10px;
    bottom: auto;
    left: auto;
    transform-origin: top right;
}

.lp-hero__float-card--bottom-left,
.lp-hero__float-card:nth-child(even) {
    bottom: -10px;
    left: -10px;
    top: auto;
    right: auto;
    transform-origin: bottom left;
}

.lp-hero__float-card--top-right-2 {
    top: 70px;
    right: -30px;
    bottom: auto;
    left: auto;
    transform-origin: top right;
}

.lp-hero__float-card--bottom-left-2 {
    bottom: 70px;
    left: -30px;
    top: auto;
    right: auto;
    transform-origin: bottom left;
}

/* Entry animation - smooth slide in from corners */
@keyframes floatCardEnterOdd {
    0% {
        opacity: 0;
        transform: translateX(80px) translateY(-40px) scale(0.5);
    }
    60% {
        opacity: 1;
        transform: translateX(-5px) translateY(3px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

@keyframes floatCardEnterEven {
    0% {
        opacity: 0;
        transform: translateX(-80px) translateY(40px) scale(0.5);
    }
    60% {
        opacity: 1;
        transform: translateX(5px) translateY(-3px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

/* Exit animation - smooth slide out to corners */
@keyframes floatCardExitOdd {
    0% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(80px) translateY(-40px) scale(0.5);
    }
}

@keyframes floatCardExitEven {
    0% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-80px) translateY(40px) scale(0.5);
    }
}

/* Apply animations on state change */
.lp-hero__float-card.fc-visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* Odd cards (1, 3) - come from top-right */
.lp-hero__float-card:nth-child(odd).fc-visible,
.lp-hero__float-card--top-right.fc-visible,
.lp-hero__float-card--top-right-2.fc-visible {
    animation: floatCardEnterOdd 0.5s ease-out forwards,
               floatBadge 3s ease-in-out 0.5s infinite;
}

/* Even cards (2, 4) - come from bottom-left */
.lp-hero__float-card:nth-child(even).fc-visible,
.lp-hero__float-card--bottom-left.fc-visible,
.lp-hero__float-card--bottom-left-2.fc-visible {
    animation: floatCardEnterEven 0.5s ease-out forwards,
               floatBadge 3s ease-in-out 0.5s infinite;
}

/* Stagger delays */
.lp-hero__float-card:nth-child(2).fc-visible { animation-delay: 0.1s, 0.6s; }
.lp-hero__float-card:nth-child(3).fc-visible { animation-delay: 0.15s, 0.65s; }
.lp-hero__float-card:nth-child(4).fc-visible { animation-delay: 0.2s, 0.7s; }

/* Exit animations */
.lp-hero__float-card:nth-child(odd).fc-hidden,
.lp-hero__float-card--top-right.fc-hidden,
.lp-hero__float-card--top-right-2.fc-hidden {
    animation: floatCardExitOdd 0.4s ease-in forwards !important;
}

.lp-hero__float-card:nth-child(even).fc-hidden,
.lp-hero__float-card--bottom-left.fc-hidden,
.lp-hero__float-card--bottom-left-2.fc-hidden {
    animation: floatCardExitEven 0.4s ease-in forwards !important;
}

/* Hidden base state */
.lp-hero__float-card.fc-hidden {
    pointer-events: none;
    opacity: 0;
}

/* Hover effect - 3D tilt */
.lp-hero__float-card:hover {
    transform: translateZ(20px) scale(1.1) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    animation-play-state: paused !important;
}

.lp-hero__float-card-icon {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.lp-hero__float-card:hover .lp-hero__float-card-icon {
    transform: scale(1.2) rotate(10deg);
}

.lp-hero__float-card-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.lp-hero__float-card-text strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lp-gray-900);
}

.lp-hero__float-card-text span {
    font-size: 0.8rem;
    color: var(--lp-gray-500);
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) translateZ(0); }
    25% { transform: translateY(-8px) translateZ(10px); }
    50% { transform: translateY(-15px) translateZ(20px); }
    75% { transform: translateY(-5px) translateZ(5px); }
}

/* Glow during transitions */
[class*="tf-exit"] .tf-container,
[class*="tf-enter"] .tf-container {
    animation: transitionGlow 0.6s ease-out;
}

@keyframes transitionGlow {
    0% { filter: drop-shadow(0 0 0 transparent); }
    50% { filter: drop-shadow(0 0 30px rgba(37, 99, 235, 0.8)); }
    100% { filter: drop-shadow(0 0 0 transparent); }
}

/* ==========================================================================
   25b. PARALLAX EFFECTS SITE-WIDE
   ========================================================================== */

/* Hero parallax layers */
.lp-hero {
    --parallax-y: 0;
    --mouse-x: 0;
    --mouse-y: 0;
}

.lp-hero__shapes {
    transform: translateY(calc(var(--parallax-y) * 0.3));
}

.lp-hero__shape {
    transform: translate(
        calc(var(--mouse-x) * var(--shape-speed, 20px)),
        calc(var(--mouse-y) * var(--shape-speed, 20px))
    );
}

.lp-hero__shape--1 { --shape-speed: 30px; }
.lp-hero__shape--2 { --shape-speed: 25px; }
.lp-hero__shape--3 { --shape-speed: 40px; }
.lp-hero__shape--4 { --shape-speed: 15px; }
.lp-hero__shape--5 { --shape-speed: 35px; }
.lp-hero__shape--6 { --shape-speed: 20px; }
.lp-hero__shape--7 { --shape-speed: 45px; }
.lp-hero__shape--8 { --shape-speed: 25px; }

/* Section parallax */
.lp-section {
    --section-parallax: 0;
}

.lp-section__header {
    transform: translateY(calc(var(--section-parallax) * -30px));
    transition: transform 0.1s ease-out;
}

/* Card parallax on hover */
.lp-modulos__card,
.lp-para-quem__card,
.lp-bonus__card,
.lp-depoimento {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.lp-modulos__card:hover,
.lp-para-quem__card:hover,
.lp-bonus__card:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(-5deg) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Image parallax in sections */
.lp-problema__image,
.lp-solucao__image {
    transition: transform 0.3s ease-out;
}

.lp-problema__image img,
.lp-solucao__image img {
    transition: transform 0.5s ease-out;
}

.lp-problema__image:hover img,
.lp-solucao__image:hover img {
    transform: scale(1.05) rotateY(-3deg);
}

/* Stats number parallax */
.lp-stats {
    perspective: 1000px;
}

.lp-stats__item {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.lp-stats__item:hover {
    transform: translateZ(30px) rotateX(-5deg);
}

/* FAQ parallax */
.lp-faq__item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-faq__item:hover {
    transform: translateX(10px) scale(1.01);
    box-shadow: -5px 0 20px rgba(37, 99, 235, 0.1);
}

/* Step cards parallax */
.lp-step {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp-step:hover {
    transform: translateY(-15px) scale(1.05);
}

.lp-step:hover .lp-step__icon {
    transform: rotateY(360deg);
    transition: transform 0.8s ease;
}

/* Depoimentos parallax */
.lp-depoimento {
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.lp-depoimento:hover {
    transform: translateY(-8px) rotateX(3deg) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Floating elements continuous animation */
@keyframes floatParallax {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

.lp-hero__float-card {
    animation: floatParallax 6s ease-in-out infinite;
}

.lp-hero__float-card:nth-child(2) {
    animation-delay: -2s;
}

.lp-hero__float-card:nth-child(3) {
    animation-delay: -4s;
}

/* Badge bounce on scroll */
.lp-problema__image-badge,
.lp-solucao__image-badge {
    animation: badgeBounce 3s ease-in-out infinite;
}

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

/* ==========================================================================
   26. REVEAL ANIMATIONS
   ========================================================================== */

.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Different reveal styles */
.reveal-element[data-reveal="fade-up"] {
    transform: translateY(40px);
}

.reveal-element[data-reveal="fade-left"] {
    transform: translateX(40px);
}

.reveal-element[data-reveal="fade-right"] {
    transform: translateX(-40px);
}

.reveal-element[data-reveal="zoom"] {
    transform: scale(0.9);
}

.reveal-element.revealed[data-reveal="fade-left"],
.reveal-element.revealed[data-reveal="fade-right"],
.reveal-element.revealed[data-reveal="zoom"] {
    transform: none;
}

/* ==========================================================================
   27. 3D TILT & HOVER EFFECTS
   ========================================================================== */

.lp-hero__slide-card,
.lp-modulos__card,
.lp-depoimento,
[data-tilt] {
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.lp-hero__slide-card.is-hovering,
.lp-modulos__card.is-hovering,
.lp-depoimento.is-hovering {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Magnetic buttons */
.lp-btn--cta,
.lp-header__cta,
[data-magnetic] {
    transition: transform 0.2s ease-out, background 0.3s ease, box-shadow 0.3s ease;
}

.lp-btn--cta:hover,
.lp-header__cta:hover {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Card hover lift */
.lp-modulos__card:hover,
.lp-para-quem__card:hover,
.lp-bonus__card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--lp-shadow-lg);
}

/* Icon scale on hover */
.lp-modulos__card:hover .lp-modulos__icon,
.lp-para-quem__card:hover .lp-para-quem__icon {
    transform: scale(1.1) rotate(5deg);
}

/* ==========================================================================
   28. PARALLAX STYLES
   ========================================================================== */

.lp-hero__shape {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.lp-hero__float-card {
    transition: transform 0.15s ease-out;
    will-change: transform;
}

/* Scroll-based parallax sections */
.lp-section {
    --scroll-progress: 0;
}

.lp-section__header {
    transform: translateY(calc(var(--scroll-progress) * -20px));
}

/* ==========================================================================
   29. COUNTER ANIMATION STYLES
   ========================================================================== */

.lp-stats__number,
.lp-stat__number,
[data-counter] {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.lp-stats__number.counted,
.lp-stat__number.counted {
    animation: counterPop 0.3s ease;
}

@keyframes counterPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   30. ENHANCED SLIDER NAVIGATION
   ========================================================================== */

.lp-hero__slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--lp-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.lp-hero__slider-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.lp-hero__slider-prev {
    left: 20px;
}

.lp-hero__slider-next {
    right: 20px;
}

/* Dots enhanced */
.lp-hero__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.lp-hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.lp-hero__dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.lp-hero__dot--active {
    background: var(--lp-white);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   31. GLOW & SHINE EFFECTS
   ========================================================================== */

/* Button shine effect */
.lp-btn--cta {
    position: relative;
    overflow: hidden;
}

.lp-btn--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.lp-btn--cta:hover::before {
    left: 100%;
}

/* Card glow on hover */
.lp-hero__slide-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lp-hero__slide-card:hover::after {
    opacity: 0.3;
    filter: blur(10px);
}

/* Stats glow */
.lp-stats__number {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   32. SMOOTH SCROLL INDICATOR
   ========================================================================== */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator__mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator__wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

.scroll-indicator__text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

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

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ==========================================================================
   LP FIXES - 2026-04-21
   ========================================================================== */

/* Hero Title - Force white color */
.lp-hero .lp-hero__title,
.lp-hero .lp-hero__subtitle,
.lp-hero .lp-hero__text {
    color: #FFFFFF;
}

.lp-hero h1.lp-hero__title {
    color: #FFFFFF !important;
}

/* Header Logo Centering */
.lp-header__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.lp-header__logo {
    flex: 0 0 auto;
}

.lp-header__logo img {
    height: 45px;
    width: auto;
}

/* Fix nested anchor in logo */
.lp-header__logo .custom-logo-link {
    display: flex;
    align-items: center;
}

/* ==========================================================================
   LP COLOR FIXES - Specific selectors only
   ========================================================================== */

/* Hero text content (left side) - white on blue */
.lp-hero__text > .lp-hero__title,
.lp-hero__text > .lp-hero__subtitle,
.lp-hero__text > .lp-hero__list,
.lp-hero__text > .lp-hero__list li {
    color: #FFFFFF !important;
}

/* Hero timer */
.lp-hero__timer,
.lp-hero__timer-label,
.lp-hero__timer-num {
    color: #FFFFFF !important;
}

/* CTA Final section - white on blue */
.lp-cta-final__headline,
.lp-cta-final__texto {
    color: #FFFFFF !important;
}

.lp-cta-final__timer,
.lp-cta-final__timer-label,
.lp-cta-final__timer-num,
.lp-cta-final__timer small {
    color: #FFFFFF !important;
}

.lp-cta-final__price-old {
    color: rgba(255, 255, 255, 0.7) !important;
}

.lp-cta-final__price-current {
    color: #FFFFFF !important;
}

/* Slider content (inside white card) - should be DARK */
.lp-hero__slider .slide-cta,
.lp-hero__slider .slide-cta__title,
.lp-hero__slider .slide-cta__subtitle,
.lp-hero__slider .slide-cta__price-old,
.lp-hero__slider .slide-cta__price-current {
    color: #111827 !important;
}

/* Button white variant */
.btn--white,
a.btn--white {
    background: #FFFFFF !important;
    color: #2563EB !important;
    border: none !important;
}

.btn--white:hover,
a.btn--white:hover {
    background: #F3F4F6 !important;
    color: #1D4ED8 !important;
}

/* Badges should keep their colors */
.lp-hero__badge {
    color: #1f2937 !important;
    background: rgba(245, 158, 11, 0.95) !important;
}

/* Floating badges on slider */
.lp-hero__badges .badge,
.lp-hero__float-badge {
    color: #111827 !important;
}
