/* Reset e Variáveis - Tema Escuro */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta Deep Dark / Tech */
    /* Bases profundas */
    --bg-deep: #050505;
    --bg-dark: #0A0F1C;
    --bg-card-glass: rgba(15, 23, 42, 0.6);
    --bg-card-glass-strong: rgba(15, 23, 42, 0.85);

    /* Acentos Vivos & Neon */
    --accent-electric: #3B82F6;
    /* Blue 500 */
    --accent-glow: #60A5FA;
    /* Blue 400 */
    --accent-deep: #2563EB;
    /* Blue 600 */
    --accent-purple: #8B5CF6;
    /* Violet 500 */
    --accent-cyan: #06B6D4;
    /* Cyan 500 */

    /* Gradientes Mesh */
    --mesh-1: radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%);
    --mesh-2: radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%);
    --mesh-3: radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);

    /* Cores de Texto */
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-tertiary: #94A3B8;
    --text-muted: #64748B;

    /* Bordas e Divisores */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-highlight: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-heading: 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-glow: 0 0 40px -10px rgba(59, 130, 246, 0.5);
    --glass-blur: blur(12px);

    /* Transitions */
    --transition: cubic-bezier(0.4, 0, 0.2, 1);

    /* Legacy Mappings (Compatibilidade) */
    --bg-primary: var(--bg-deep);
    --bg-secondary: var(--bg-dark);
    --bg-tertiary: var(--bg-card-glass);
    --bg-card: var(--bg-card-glass-strong);
    --border-color: var(--border-subtle);
    --blue-vibrant: var(--accent-electric);
    --blue-dark: var(--accent-deep);
    --purple-vibrant: var(--accent-purple);
}

[data-theme="light"] {
    /* Paleta Light / Tech Clean */
    --bg-deep: #F8FAFC;
    --bg-dark: #FFFFFF;
    --bg-card-glass: rgba(255, 255, 255, 0.7);
    --bg-card-glass-strong: rgba(255, 255, 255, 0.9);

    /* Acentos */
    --accent-electric: #2563EB;
    /* Blue 600 */
    --accent-glow: #3B82F6;
    /* Blue 500 */
    --accent-deep: #1D4ED8;
    /* Blue 700 */
    --accent-purple: #7C3AED;
    /* Violet 600 */
    --accent-cyan: #0891B2;
    /* Cyan 600 */

    /* Gradientes Mesh Suaves */
    --mesh-1: radial-gradient(at 0% 0%, hsla(210, 100%, 96%, 1) 0, transparent 50%);
    --mesh-2: radial-gradient(at 50% 0%, hsla(220, 100%, 94%, 1) 0, transparent 50%);
    --mesh-3: radial-gradient(at 100% 0%, hsla(230, 100%, 96%, 1) 0, transparent 50%);

    /* Cores de Texto */
    --text-primary: #0F172A;
    --text-secondary: #334155;
    --text-tertiary: #64748B;
    --text-muted: #94A3B8;

    /* Bordas */
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-glass: rgba(0, 0, 0, 0.08);
    --border-highlight: rgba(0, 0, 0, 0.12);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-glow: 0 0 40px -10px rgba(37, 99, 235, 0.2);

    /* Legacy Mappings (Compatibilidade) */
    --bg-primary: var(--bg-deep);
    --bg-secondary: var(--bg-dark);
    --bg-tertiary: var(--bg-card-glass);
    --bg-card: var(--bg-card-glass-strong);
    --border-color: var(--border-highlight);
    /* Mais visível no light */
    --blue-vibrant: var(--accent-electric);
    --blue-dark: var(--accent-deep);
    --purple-vibrant: var(--accent-purple);
}

/* Base Body Styles Reset */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

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

/* Utilitários Glassmorphism */
.glass-panel {
    background: var(--bg-card-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Tipografia Mono */
.font-mono {
    font-family: var(--font-mono);
}

/* Base Body Styles Reset */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Smooth transitions no estilo Apple - applied to specific elements */
section,
.header,
.footer,
.preco-card,
.depoimento-card,
.conteudo-item,
.bonus-item,
.caso-item,
.atencao-item,
.faq-item {
    transition: background-color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
        color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
        border-color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
        box-shadow 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Animações no Estilo Apple - Suaves e Progressivas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Apple-style easing para animações */
* {
    --apple-easing: cubic-bezier(0.25, 0.1, 0.25, 1);
    --apple-easing-smooth: cubic-bezier(0.42, 0, 0.58, 1);
    --apple-easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }

    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes slideInUp {
    from {
        visibility: visible;
        transform: translate3d(0, 100%, 0);
    }

    to {
        visibility: visible;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        visibility: visible;
        transform: translate3d(0, -100%, 0);
    }

    to {
        visibility: visible;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        visibility: visible;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        visibility: visible;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        visibility: visible;
        transform: translate3d(100%, 0, 0);
    }

    to {
        visibility: visible;
        transform: translate3d(0, 0, 0);
    }
}

/* Classes de animação */
.animate-zoom-in {
    animation: zoomIn 0.6s ease-out;
}

.animate-bounce-in {
    animation: bounceIn 0.75s ease-out;
}

.animate-slide-up {
    animation: slideInUp 0.8s ease-out;
}

.animate-slide-down {
    animation: slideInDown 0.8s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

/* Estilos para letras animadas */
.letter {
    display: inline-block;
    overflow: hidden;
}

/* Parallax elements */
.parallax {
    will-change: transform;
}

@keyframes bounce {

    0%,
    20%,
    53%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    40%,
    43% {
        transform: translate3d(0, -30px, 0) scaleY(1.1);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    }

    70% {
        transform: translate3d(0, -15px, 0) scaleY(1.05);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    }

    80% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0) scaleY(0.95);
    }

    90% {
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }

    100% {
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        opacity: 0;
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
    }

    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        opacity: 1;
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    }

    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        animation-timing-function: ease-in;
    }

    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        opacity: 1;
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    }

    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
}

@keyframes slideInDown {
    0% {
        visibility: visible;
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideInUp {
    0% {
        visibility: visible;
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideInLeft {
    0% {
        visibility: visible;
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideInRight {
    0% {
        visibility: visible;
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
    }
}

@keyframes swing {
    20% {
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, -5deg);
    }
}

/* Classes de animação */
.animate-zoomIn {
    animation: zoomIn 0.6s ease-out;
}

.animate-bounce {
    animation: bounce 1s ease-in-out;
}

.animate-bounceIn {
    animation: bounceIn 0.75s ease-out;
}

.animate-flipInX {
    animation: flipInX 0.75s ease-out;
    backface-visibility: visible !important;
}

.animate-flipInY {
    animation: flipInY 0.75s ease-out;
    backface-visibility: visible !important;
}

.animate-slideInDown {
    animation: slideInDown 0.6s ease-out;
}

.animate-slideInUp {
    animation: slideInUp 0.6s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease-out;
}

.animate-rollIn {
    animation: rollIn 0.6s ease-out;
}

.animate-swing {
    animation: swing 1s ease-in-out;
    transform-origin: top center;
}

/* Scroll Bottom Animation */
.scroll-bottom {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-bottom.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Letter Animation */
.letter-animate .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.letter-animate.animated .letter {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 102, 255, 0.5), 0 0 40px rgba(123, 0, 255, 0.3);
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-vibrant), var(--purple-vibrant));
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
}

/* Header */
.header {
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 102, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 0%, rgba(123, 0, 255, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08), 0 0 30px rgba(0, 102, 255, 0.12);
}

[data-theme="dark"] .header {
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 102, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 0%, rgba(123, 0, 255, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 102, 255, 0.15);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 50px,
            rgba(124, 58, 237, 0.03) 50px,
            rgba(124, 58, 237, 0.03) 51px);
    pointer-events: none;
    opacity: 0.5;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.4), rgba(230, 0, 126, 0.4), rgba(124, 58, 237, 0.4), transparent);
    pointer-events: none;
}

.header.scrolled {
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 102, 255, 0.18) 0%, transparent 60%),
        radial-gradient(circle at 80% 0%, rgba(123, 0, 255, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12), 0 0 40px rgba(0, 102, 255, 0.18);
    padding: 16px 0;
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .header.scrolled {
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 102, 255, 0.18) 0%, transparent 60%),
        radial-gradient(circle at 80% 0%, rgba(123, 0, 255, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 102, 255, 0.2);
}

.header.scrolled::after {
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), rgba(123, 0, 255, 0.3), rgba(0, 102, 255, 0.3), transparent);
}

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

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.2));
}

.logo-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.4));
}

.nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Switch estilo Apple */
.theme-toggle {
    position: relative;
    width: 52px;
    height: 32px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: visible;
}

[data-theme="dark"] .theme-toggle {
    background: #34C759;
    border-color: #34C759;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 28px;
    height: 28px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

[data-theme="dark"] .theme-toggle::before {
    transform: translateX(20px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
}


.theme-toggle:hover {
    transform: scale(1.05);
}

.theme-toggle:active::before {
    width: 32px;
}

@media (max-width: 768px) {
    .theme-toggle {
        width: 48px;
        height: 30px;
    }

    .theme-toggle::before {
        width: 26px;
        height: 26px;
    }

    [data-theme="dark"] .theme-toggle::before {
        transform: translateX(18px);
    }

}

.btn-nav {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white !important;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    border: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

[data-theme="dark"] .btn-nav {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-nav:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FFA500 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

[data-theme="dark"] .btn-nav:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FFA500 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Hero Section Redesign */
.hero {
    background-color: var(--bg-deep);
    background-image:
        var(--mesh-1),
        var(--mesh-2),
        var(--mesh-3);
    background-size: 140% 140%;
    animation: meshFlow 20s ease infinite alternate;
    padding: 120px 0 100px;
    /* Mais espaço para respirar */
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes meshFlow {
    0% {
        background-position: 0% 0%, 50% 0%, 100% 0%;
    }

    100% {
        background-position: 100% 100%, 50% 100%, 0% 100%;
    }
}

/* Ajuste do z-index do ::before do Hero para não conflitar */
.hero::before {
    z-index: 1;
}

/* Divisor suave no final do Hero */
.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.3) 50%,
            transparent 100%);
    z-index: 0;
    pointer-events: none;
}

[data-theme="dark"] .hero {
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(123, 0, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 128, 255, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 25%, var(--bg-primary) 50%, var(--bg-secondary) 75%, var(--bg-primary) 100%);
}

.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.red-line {
    height: 2px;
    flex: 1;
    max-width: 150px;
    background: linear-gradient(90deg, transparent, var(--purple-vibrant), var(--blue-vibrant), transparent);
    box-shadow: 0 0 10px rgba(123, 0, 255, 0.4);
}

.hero-logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.3));
    transition: var(--transition-smooth);
}

.hero-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(0, 102, 255, 0.5));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 102, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(123, 0, 255, 0.18) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(0, 128, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    /* animation: float 6s ease-in-out infinite; Removido */
    opacity: 0.7;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 40%),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 2px,
            rgba(124, 58, 237, 0.02) 2px,
            rgba(124, 58, 237, 0.02) 4px);
    /* animation: float 8s ease-in-out infinite reverse; Removido */
    pointer-events: none;
    opacity: 0.5;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-list {
    list-style: none;
    text-align: left;
    max-width: 650px;
    margin: 0 auto 32px;
    padding: 0;
}

.hero-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 28px;
    line-height: 1.6;
}

.hero-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    box-shadow: var(--shadow-md), 0 4px 15px rgba(255, 107, 53, 0.4);
    border: none;
    min-height: 44px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

[data-theme="dark"] .btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff;
    box-shadow: var(--shadow-md), 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FFA500 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg), 0 6px 20px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 140, 66, 0.4);
}

[data-theme="dark"] .btn-primary:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FFA500 100%);
    box-shadow: var(--shadow-lg), 0 6px 20px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 140, 66, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid #FF6B35;
    color: #FF6B35;
}

[data-theme="dark"] .btn-outline {
    border: 2px solid #FF6B35;
    color: #FF6B35;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    border-color: transparent;
}

[data-theme="dark"] .btn-outline:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff;
    border-color: transparent;
}

/* Facebook Highlight - Estilo igual à logo do Facebook */
.facebook-highlight {
    background: #1877F2;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    line-height: 1.4;
    box-shadow: 0 2px 4px rgba(24, 119, 242, 0.3);
}

/* Atenção Section */
.atencao {
    padding: 80px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(123, 0, 255, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    position: relative;
    overflow: hidden;
}

/* Divisor suave entre seções */
.atencao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.3) 50%,
            transparent 100%);
    z-index: 0;
}

[data-theme="dark"] .atencao {
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(123, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
}

.atencao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 100px,
            rgba(49, 39, 131, 0.02) 100px,
            rgba(49, 39, 131, 0.02) 101px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 150px,
            rgba(230, 0, 126, 0.015) 150px,
            rgba(230, 0, 126, 0.015) 151px);
    pointer-events: none;
    opacity: 0.3;
}

.section-title-large {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.atencao-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.atencao-item {
    background: var(--bg-card);
    padding: 20px 24px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.atencao-item:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--blue-vibrant);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 102, 255, 0.15);
}

.atencao-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.atencao-item.highlight-box {
    background: linear-gradient(135deg, var(--blue-vibrant) 0%, var(--purple-vibrant) 100%);
    border-color: var(--blue-vibrant);
    color: white;
    grid-column: 1 / -1;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    padding: 16px 24px;
    margin-top: 8px;
}

.atencao-item.highlight-box h3 {
    color: white;
    font-size: 18px;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 102, 255, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse at 70% 50%, rgba(123, 0, 255, 0.15) 0%, transparent 70%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .stats {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at 70% 50%, rgba(123, 0, 255, 0.12) 0%, transparent 70%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.stats::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background:
        radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%),
        radial-gradient(circle, rgba(230, 0, 126, 0.06) 0%, transparent 60%);
    pointer-events: none;
    /* animation: float 10s ease-in-out infinite; Removido */
}

.stats-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue-vibrant) 0%, var(--purple-vibrant) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.4)) drop-shadow(0 0 10px rgba(123, 0, 255, 0.3));
    /* animation: scaleIn 1s ease-out; Removido */
    transition: var(--transition-smooth);
}

.stat-number:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(0, 102, 255, 0.6)) drop-shadow(0 0 20px rgba(123, 0, 255, 0.4));
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Professor Section */
.professor {
    padding: 80px 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 102, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(123, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 30%, var(--bg-secondary) 70%, var(--bg-secondary) 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    position: relative;
    overflow: hidden;
}

/* Divisor suave entre seções */
.professor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.3) 50%,
            transparent 100%);
    z-index: 0;
}

[data-theme="dark"] .professor {
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(123, 0, 255, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 30%, var(--bg-secondary) 70%, var(--bg-secondary) 100%);
}

.professor-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.professor-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3), 0 0 40px rgba(123, 0, 255, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.professor-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 102, 255, 0.4), 0 0 50px rgba(123, 0, 255, 0.3);
}

.professor-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 20px;
}

.professor-name {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -1px;
}

.professor-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.professor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.professor-stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.professor-stat:hover {
    transform: translateY(-4px);
    border-color: var(--blue-vibrant);
    box-shadow: var(--shadow-md);
}

.professor-stat .stat-number {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue-vibrant) 0%, var(--purple-vibrant) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.professor-stat .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsivo - Professor */
@media (max-width: 768px) {
    .professor-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .professor-photo {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .professor-info {
        padding-top: 0;
    }

    .professor-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .professor-name {
        font-size: 28px;
    }

    .professor-description {
        font-size: 16px;
    }
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.section-description {
    font-size: 16px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.depoimento-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 30px rgba(0, 102, 255, 0.15);
    border-color: var(--blue-vibrant);
}

.depoimento-stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 20px;
}

.depoimento-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 16px;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-vibrant) 0%, var(--purple-vibrant) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.author-role {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Casos Reais Section */
.casos-reais {
    padding: 80px 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 102, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 0%, rgba(123, 0, 255, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 25%, var(--bg-primary) 50%, var(--bg-secondary) 75%, var(--bg-primary) 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    position: relative;
    overflow: hidden;
}

/* Divisor suave entre seções */
.casos-reais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.3) 50%,
            transparent 100%);
    z-index: 0;
}

[data-theme="dark"] .casos-reais {
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 102, 255, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 0%, rgba(123, 0, 255, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 25%, var(--bg-primary) 50%, var(--bg-secondary) 75%, var(--bg-primary) 100%);
}

.casos-reais::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-conic-gradient(from 0deg at 50% 50%,
            transparent 0deg,
            rgba(124, 58, 237, 0.01) 1deg,
            transparent 2deg);
    pointer-events: none;
    opacity: 0.4;
}

.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.caso-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.caso-item:hover {
    transform: translateY(-10px) scale(1.05) rotate(1deg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 25px rgba(0, 102, 255, 0.2);
    border-color: var(--blue-vibrant);
}

.caso-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-vibrant) 0%, var(--purple-vibrant) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 12px;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3), 0 0 10px rgba(123, 0, 255, 0.2);
    transition: var(--transition-smooth);
}

.caso-item:hover .caso-avatar {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.5), 0 0 20px rgba(123, 0, 255, 0.3);
    /* animation: float 3s ease-in-out infinite; Removido */
}

.caso-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.caso-role {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 10px;
}

.caso-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Conteúdo Section */
.conteudo-curso {
    padding: 80px 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(123, 0, 255, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 25%, var(--bg-secondary) 50%, var(--bg-primary) 75%, var(--bg-secondary) 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    position: relative;
    overflow: hidden;
}

/* Divisor suave entre seções */
.conteudo-curso::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.3) 50%,
            transparent 100%);
    z-index: 0;
}

[data-theme="dark"] .conteudo-curso {
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(123, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 25%, var(--bg-secondary) 50%, var(--bg-primary) 75%, var(--bg-secondary) 100%);
}

.conteudo-curso::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 80px,
            rgba(124, 58, 237, 0.02) 80px,
            rgba(124, 58, 237, 0.02) 81px);
    pointer-events: none;
    opacity: 0.3;
}

/* Bento Grid Moderno */
.conteudo-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto;
    position: relative;
    z-index: 1;
}

/* No Desktop, cria o layout assimétrico */
@media (min-width: 768px) {
    .conteudo-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }

    /* Item de destaque (UTM - 4º item) ocupa 2 colunas */
    .conteudo-item:nth-child(1) {
        grid-column: span 2;
        background: linear-gradient(135deg, var(--bg-card) 0%, rgba(123, 0, 255, 0.1) 100%);
    }

    /* Item alto (2º item) ocupa 2 linhas */
    .conteudo-item:nth-child(2) {
        grid-row: span 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.conteudo-item {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.conteudo-item:nth-child(odd):hover {
    transform: translateY(-6px) scale(1.03);
    border-color: var(--blue-vibrant);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 102, 255, 0.15);
}

.conteudo-item:nth-child(even):hover {
    transform: translateY(-6px) scale(1.03);
    border-color: var(--purple-vibrant);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 20px rgba(123, 0, 255, 0.15);
}

.conteudo-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.conteudo-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* Bônus Section */
.bonus {
    padding: 80px 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at 70% 50%, rgba(123, 0, 255, 0.15) 0%, transparent 70%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 30%, var(--bg-primary) 60%, var(--bg-primary) 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    position: relative;
    overflow: hidden;
}

/* Divisor suave entre seções */
.bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.3) 50%,
            transparent 100%);
    z-index: 0;
}

[data-theme="dark"] .bonus {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse at 70% 50%, rgba(123, 0, 255, 0.12) 0%, transparent 70%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 30%, var(--bg-primary) 60%, var(--bg-primary) 100%);
}

.bonus::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 120px,
            rgba(139, 92, 246, 0.02) 120px,
            rgba(139, 92, 246, 0.02) 121px);
    /* animation: float 12s ease-in-out infinite; Removido */
    pointer-events: none;
    opacity: 0.5;
}

/* Bônus Timeline Moderno */
.bonus-label {
    font-size: 14px;
    color: #A855F7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.bonus-timeline {
    position: relative;
    margin-top: 60px;
    padding-left: 80px;
}

.bonus-timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
            rgba(168, 85, 247, 0.6) 0%,
            rgba(139, 92, 246, 0.4) 50%,
            transparent 100%);
}

.bonus-item-modern {
    position: relative;
    margin-bottom: 60px;
    padding-left: 20px;
}

.bonus-item-modern::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid #A855F7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.bonus-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.bonus-content {
    position: relative;
}

.bonus-icon-modern {
    display: inline-block;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
}

.bonus-title-modern {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.bonus-text-modern {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.bonus-grid.bonus-single {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-item {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.bonus-item:hover {
    border-color: var(--blue-vibrant);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 30px rgba(0, 102, 255, 0.25);
    transform: translateY(-8px) scale(1.05);
    /* animation: glow 2s ease-in-out infinite; Removido */
}

.bonus-icon {
    font-size: 36px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.3));
}

.bonus-item h3 {
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue-vibrant) 0%, var(--purple-vibrant) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.bonus-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.bonus-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* Preço Section */
.preco {
    padding: 80px 0;
    background:
        radial-gradient(circle at 0% 50%, rgba(0, 102, 255, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(123, 0, 255, 0.18) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 20%, var(--bg-secondary) 40%, var(--bg-primary) 60%, var(--bg-secondary) 80%, var(--bg-secondary) 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    position: relative;
    overflow: hidden;
}

/* Divisor suave entre seções */
.preco::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.3) 50%,
            transparent 100%);
    z-index: 0;
}

[data-theme="dark"] .preco {
    background:
        radial-gradient(circle at 0% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(123, 0, 255, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 20%, var(--bg-secondary) 40%, var(--bg-primary) 60%, var(--bg-secondary) 80%, var(--bg-secondary) 100%);
}

.preco::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 200px,
            rgba(124, 58, 237, 0.02) 200px,
            rgba(124, 58, 237, 0.02) 201px);
    pointer-events: none;
    opacity: 0.4;
}

/* Novo Layout de Checkout Inspirado */
.preco-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    align-items: start;
}

/* Coluna Esquerda */
.preco-left {
    padding-top: 20px;
}

.preco-question {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.preco-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Coluna Central - Card Moderno */
.preco-center {
    position: relative;
}

.preco-card-modern {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(123, 0, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(123, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.preco-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(0, 102, 255, 0.8) 0%,
            rgba(123, 0, 255, 0.8) 50%,
            rgba(255, 20, 147, 0.8) 100%);
    box-shadow: 0 0 20px rgba(123, 0, 255, 0.5);
}

.preco-card-wrapper:hover .preco-card-modern {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(168, 85, 247, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(168, 85, 247, 0.8);
}

.preco-card-wrapper:hover .preco-card-glow-layer-1 {
    border-color: rgba(168, 85, 247, 0.8);
}

.preco-card-wrapper:hover .preco-card-glow-layer-2 {
    border-color: rgba(168, 85, 247, 1);
}

.preco-card-wrapper:hover .preco-card-background-glow {
    opacity: 0.5;
}

.preco-card-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.preco-logo-section {
    text-align: center;
}

.preco-logo-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.preco-logo-subtitle {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.preco-access-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.preco-access-active {
    padding: 8px 16px;
    background: var(--bg-card);
    color: var(--text-primary);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.preco-value-modern {
    text-align: center;
    margin-bottom: 12px;
}

.preco-currency-modern {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    vertical-align: top;
    margin-right: 4px;
}

.preco-amount-modern {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg,
            #8B5CF6 0%,
            #A855F7 25%,
            #EC4899 50%,
            #F43F5E 75%,
            #FB7185 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -3px;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.6)) drop-shadow(0 0 15px rgba(236, 72, 153, 0.4));
    display: inline-block;
    line-height: 1;
}

.preco-parcela-modern {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
    font-weight: 500;
}

.btn-primary-modern {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF !important;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 52px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4), var(--shadow-md);
    margin-bottom: 24px;
    text-decoration: none;
}

.btn-primary-modern:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FFA500 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 140, 66, 0.4), var(--shadow-lg);
}

[data-theme="dark"] .btn-primary-modern {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5), var(--shadow-md);
}

[data-theme="dark"] .btn-primary-modern:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FFA500 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.7), 0 0 30px rgba(255, 140, 66, 0.5), var(--shadow-lg);
}

.preco-seguranca-modern {
    text-align: center;
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.preco-payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.payment-method {
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--border-color);
}

/* Coluna Direita - Benefícios */
.preco-right {
    padding-top: 20px;
}

.preco-benefits-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.preco-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preco-benefits-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.3s ease;
}

.preco-benefits-list li:last-child {
    border-bottom: none;
}

.preco-benefits-list li:hover {
    color: var(--text-primary);
    padding-left: 8px;
    transition: all 0.3s ease;
}

.preco-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.preco-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.preco-card.preco-single {
    width: 100%;
    max-width: 500px;
}

.preco-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 102, 255, 0.12);
    border: 2px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.preco-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 30px rgba(0, 102, 255, 0.2);
    border-color: var(--blue-vibrant);
    /* animation: glow 2s ease-in-out infinite; Removido */
}

.preco-card.preco-destaque {
    border-color: var(--blue-vibrant);
    border-width: 3px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 30px rgba(0, 102, 255, 0.2);
}

.preco-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(123, 0, 255, 0.1) 100%);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-vibrant);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.preco-badge-destaque {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue-vibrant) 0%, var(--purple-vibrant) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.preco-value {
    text-align: center;
    margin-bottom: 16px;
}

.preco-currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    vertical-align: top;
}

.preco-amount {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 20px rgba(37, 211, 102, 0.5)) drop-shadow(0 0 10px rgba(32, 186, 90, 0.4));
}

.preco-parcela {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
}

.preco-features {
    list-style: none;
    margin-top: 32px;
}

.preco-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.preco-features li:last-child {
    border-bottom: none;
}

.preco-seguranca {
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

/* Garantia Simplificada */
.garantia-box-simple {
    text-align: center;
    max-width: 700px;
    margin: 60px auto 0;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.garantia-subtitle-simple {
    font-size: 20px;
    font-weight: 700;
    color: #A855F7;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.garantia-title-simple {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.garantia-text-simple {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.garantia-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--success-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.garantia-box h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.garantia-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 16px;
}

.garantia-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background:
        radial-gradient(circle at 30% 0%, rgba(0, 102, 255, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 0%, rgba(123, 0, 255, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 25%, var(--bg-primary) 50%, var(--bg-secondary) 75%, var(--bg-primary) 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    position: relative;
    overflow: hidden;
}

/* FAQ Layout em 2 Colunas */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.faq-left {
    padding-top: 20px;
}

.faq-title-main {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.faq-subtitle-main {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.faq-buttons-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-faq-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(123, 0, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-faq-modern:hover {
    border-color: rgba(123, 0, 255, 0.6);
    box-shadow: 0 6px 20px rgba(123, 0, 255, 0.2);
    transform: translateY(-2px);
}

.btn-faq-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 0, 255, 0.1);
    border-radius: 10px;
    color: #A855F7;
}

.btn-faq-content {
    flex: 1;
}

.btn-faq-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-faq-subtitle {
    font-size: 13px;
    color: var(--text-tertiary);
}

.faq-right {
    position: relative;
}

/* Divisor suave entre seções */
.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.3) 50%,
            transparent 100%);
    z-index: 0;
}

[data-theme="dark"] .faq {
    background:
        radial-gradient(circle at 30% 0%, rgba(0, 102, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 0%, rgba(123, 0, 255, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 25%, var(--bg-primary) 50%, var(--bg-secondary) 75%, var(--bg-primary) 100%);
}

.faq::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-conic-gradient(from 45deg at 50% 50%,
            transparent 0deg,
            rgba(124, 58, 237, 0.01) 0.5deg,
            transparent 1deg);
    pointer-events: none;
    opacity: 0.3;
}

.faq-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.faq-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-whatsapp {
    background: #25D366;
    color: white !important;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: transparent;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
    border: none;
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
    transition: var(--transition);
    box-shadow: none;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    border-color: var(--blue-vibrant);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 102, 255, 0.03);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #A855F7;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

/* CTA Final */
.cta-final {
    padding: 80px 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 102, 255, 0.18) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(123, 0, 255, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .cta-final {
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 102, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(123, 0, 255, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
}

/* Divisor suave entre seções */
.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.3) 50%,
            transparent 100%);
    z-index: 0;
}

.cta-final .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 70%),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 100px,
            rgba(124, 58, 237, 0.02) 100px,
            rgba(124, 58, 237, 0.02) 101px);
    pointer-events: none;
    /* animation: float 8s ease-in-out infinite; Removido */
    opacity: 0.6;
    z-index: 1;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 102, 255, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-tertiary) 50%, var(--bg-primary) 100%);
    background-size: 100% 100%, 100% 100%;
    color: var(--text-primary);
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .footer {
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-tertiary) 50%, var(--bg-primary) 100%);
}

/* Divisor suave entre seções */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.3) 50%,
            transparent 100%);
    z-index: 0;
}

.footer .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), rgba(123, 0, 255, 0.2), transparent);
    pointer-events: none;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.logo-img-footer {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.logo-img-footer:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-text {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--text-tertiary);
    font-size: 13px;
}

.footer-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

    .btn-nav {
        width: 100%;
        text-align: center;
        min-height: 48px;
        padding: 14px 24px;
    }

    .hero {
        padding: 80px 0 100px;
    }

    .hero-logo-container {
        gap: 15px;
        margin-bottom: 30px;
    }

    .red-line {
        max-width: 80px;
    }

    .hero-logo {
        height: 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-cta-text {
        font-size: 18px;
    }

    .hero-list li {
        font-size: 16px;
    }

    .section-title-large,
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 24px;
    }

    .stat-number {
        font-size: 64px;
    }

    .atencao,
    .stats,
    .professor,
    .casos-reais,
    .conteudo-curso,
    .bonus,
    .preco,
    .faq,
    .cta-final {
        padding: 80px 0;
    }

    .preco-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .preco-left,
    .preco-right {
        padding-top: 0;
    }

    .preco-question {
        font-size: 32px;
        text-align: center;
    }

    .preco-description {
        text-align: center;
        font-size: 16px;
    }

    .preco-card-modern {
        padding: 32px 24px;
    }

    .preco-amount-modern {
        font-size: 56px;
    }

    .preco-benefits-title {
        text-align: center;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-title-main {
        font-size: 36px;
        text-align: center;
    }

    .faq-subtitle-main {
        text-align: center;
    }

    .bonus-timeline {
        padding-left: 60px;
    }

    .bonus-timeline-line {
        left: 30px;
    }

    .bonus-item-modern::before {
        left: -50px;
    }

    .garantia-badge-circle {
        width: 160px;
        height: 160px;
    }

    .garantia-title {
        font-size: 32px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .preco-layout {
        grid-template-columns: 1fr 1.3fr 1fr;
        gap: 30px;
    }

    .preco-question {
        font-size: 36px;
    }

    .preco-amount-modern {
        font-size: 64px;
    }

    .preco-card-modern {
        padding: 36px 28px;
    }

    .conteudo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .conteudo-item:nth-child(1) {
        grid-column: span 2;
    }

    .conteudo-item:nth-child(2) {
        grid-row: span 1;
    }

    .cta-title {
        font-size: 32px;
    }

    .faq-buttons {
        flex-direction: column;
    }

    .faq-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-logo-container {
        gap: 10px;
        margin-bottom: 24px;
    }

    .red-line {
        max-width: 60px;
        height: 1.5px;
    }

    .hero-logo {
        height: 60px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.5;
    }

    .section-title-large,
    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .atencao-grid,
    .depoimentos-grid,
    .casos-grid,
    .conteudo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bonus-grid.bonus-single {
        display: flex;
    }

    /* Modal ainda mais otimizado para telas muito pequenas */
    .modal.active {
        padding: 12px;
        align-items: center;
        justify-content: center;
    }

    .modal-content {
        padding: 20px 16px;
        border-radius: 14px;
        max-height: calc(100vh - 24px);
        height: auto;
        padding-bottom: max(100px, env(safe-area-inset-bottom, 100px));
    }

    .modal-content h2 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .modal-logo-img {
        max-width: 110px;
        margin-bottom: 8px;
    }

    .modal-logo-section {
        margin-bottom: 12px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 34px;
        height: 34px;
        font-size: 22px;
    }

    .modal-inner-content .modal-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .modal-form {
        gap: 16px;
    }

    .form-group {
        gap: 6px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input {
        padding: 13px 15px;
        font-size: 16px;
        min-height: 48px;
    }

    .form-group input:focus {
        scroll-margin-bottom: 80px;
    }

    .btn-primary,
    .btn-primary-modern {
        min-height: 50px;
        font-size: 15px;
        padding: 13px 22px;
        width: 100%;
        margin-top: 8px;
    }

    .form-note {
        font-size: 10px;
        margin-top: 12px;
    }

    .form-error,
    .form-success {
        padding: 10px 12px;
        font-size: 12px;
        margin-bottom: 12px;
        gap: 6px;
    }

    .form-error svg,
    .form-success svg {
        width: 16px;
        height: 16px;
    }

    /* Ajustes gerais para telas pequenas */
    .header {
        padding: 12px 0;
    }

    .header-content {
        gap: 12px;
    }

    .btn-nav {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-typewriter {
        font-size: 13px;
        word-break: break-all;
        overflow-wrap: break-word;
    }

    .hero-list {
        padding-left: 20px;
    }

    .hero-list li {
        font-size: 15px;
        margin-bottom: 8px;
        line-height: 1.5;
    }

    /* Ajustes para seções */
    .professor-content {
        flex-direction: column;
        gap: 24px;
    }

    .professor-image {
        width: 100%;
        text-align: center;
    }

    .professor-photo {
        max-width: 100%;
        height: auto;
    }

    .casos-grid {
        gap: 20px;
    }

    .caso-item {
        padding: 20px;
    }

    .preco-layout {
        gap: 32px;
    }

    .preco-benefits-list {
        font-size: 14px;
    }

    .faq-item {
        padding: 16px;
    }

    .faq-answer {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Ajustes para UTM builder */
    .utm-builder-input label {
        font-size: 12px;
    }

    .utm-result label {
        font-size: 12px;
    }

    .utm-preview h3 {
        font-size: 14px;
    }

    .utm-preview-item {
        font-size: 13px;
    }

    .preco-card-modern {
        padding: 24px 16px;
    }

    .preco-amount-modern {
        font-size: 48px;
    }

    .faq-item {
        padding: 16px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Modal de Inscrição */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Modal Wrapper - Mesmo estilo do checkout */
.modal-wrapper {
    position: relative;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(-30deg,
            rgba(168, 85, 247, 0.4),
            transparent,
            rgba(168, 85, 247, 0.4)),
        linear-gradient(to bottom,
            var(--bg-primary),
            var(--bg-primary));
    /* filter: url(#electric-border); Removido - estava distorcendo o conteúdo */
}

.modal-border-outer {
    border: 2px solid rgba(168, 85, 247, 0.5);
    border-radius: 20px;
    padding-right: 0.15em;
    padding-bottom: 0.15em;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px 32px;
    /* Reduzido de 32px para 24px vertical */
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(123, 0, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(123, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* margin-top: -4px; Removido para centralizar */
    width: 100%;
    max-width: 420px;
    z-index: 1;
    max-height: 85vh;
    /* overflow-y: auto; Removido */
    display: flex;
    flex-direction: column;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(0, 102, 255, 0.8) 0%,
            rgba(123, 0, 255, 0.8) 50%,
            rgba(255, 20, 147, 0.8) 100%);
    box-shadow: 0 0 20px rgba(123, 0, 255, 0.5);
    z-index: 2;
}

/* Camadas de Glow - Mesmo estilo do checkout */
.modal-glow-layer-1 {
    border: 2px solid rgba(168, 85, 247, 0.6);
    border-radius: 20px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(1px);
    pointer-events: none;
    z-index: 0;
}

.modal-glow-layer-2 {
    border: 2px solid rgba(168, 85, 247, 1);
    border-radius: 20px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(4px);
    pointer-events: none;
    z-index: 0;
}

.modal-overlay-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    opacity: 1;
    mix-blend-mode: overlay;
    transform: scale(1.1);
    filter: blur(16px);
    background: linear-gradient(-30deg,
            white,
            transparent 30%,
            transparent 70%,
            white);
    pointer-events: none;
    z-index: 0;
}

.modal-overlay-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    opacity: 0.5;
    mix-blend-mode: overlay;
    transform: scale(1.1);
    filter: blur(16px);
    background: linear-gradient(-30deg,
            white,
            transparent 30%,
            transparent 70%,
            white);
    pointer-events: none;
    z-index: 0;
}

.modal-background-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    filter: blur(32px);
    transform: scale(1.1);
    opacity: 0.3;
    z-index: -1;
    background: linear-gradient(-30deg,
            rgba(168, 85, 247, 1),
            transparent,
            rgba(123, 0, 255, 1));
}

.modal-inner-content {
    position: relative;
    z-index: 10;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
}

/* Garantir que o botão de fechar não seja bloqueado */
.modal-inner-content .modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Animação de gradiente móvel no formulário */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.modal-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(-45deg,
            rgba(0, 102, 255, 0.1),
            rgba(123, 0, 255, 0.15),
            rgba(168, 85, 247, 0.1),
            rgba(0, 102, 255, 0.1));
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Efeito 3D no formulário */
.modal-wrapper {
    perspective: 1000px;
}

.modal-content {
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Efeito 3D ao passar o mouse no formulário */
.modal-wrapper:hover .modal-content {
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(168, 85, 247, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(168, 85, 247, 0.8);
}

.modal-wrapper:hover .modal-glow-layer-1 {
    border-color: rgba(168, 85, 247, 0.8);
}

.modal-wrapper:hover .modal-glow-layer-2 {
    border-color: rgba(168, 85, 247, 1);
}

.modal-wrapper:hover .modal-background-glow {
    opacity: 0.5;
}

[data-theme="dark"] .modal-content {
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(123, 0, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
    color: var(--text-secondary);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    color: var(--text-primary);
    background: var(--border-color);
    transform: rotate(90deg);
}

.modal-close:hover {
    color: var(--text-primary);
    background: var(--border-color);
    transform: rotate(90deg);
}

.modal-logo-section {
    text-align: center;
    margin: 0 auto 8px;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
}

.modal-logo-img {
    max-width: 180px;
    /* Reduzido de 260px */
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.2));
    margin: 0 auto;
    display: block;
}

.modal-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.4));
}

/* Logo no modo claro - mesmo estilo do cabeçalho */
[data-theme="light"] .modal-logo-img {
    filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.2));
}

[data-theme="light"] .modal-logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.4));
}

.modal-inner-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 6px;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.2;
    width: 100%;
    max-width: 100%;
    padding: 0;
    flex-shrink: 0;
}

.modal-inner-content .modal-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin: 0 auto 14px;
    font-size: 14px;
    line-height: 1.4;
    padding: 0;
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    flex: 1;
    min-height: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* Reduzido de 8px */
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
    min-height: 48px;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus {
    outline: none;
    border-color: var(--blue-vibrant);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group input::placeholder {
    color: var(--text-tertiary);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 8px;
    line-height: 1.5;
}

/* Mensagens de erro e sucesso do formulário */
.form-error,
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
    animation: slideDown 0.3s ease-out;
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #FCA5A5;
}

.form-error svg {
    color: #EF4444;
    flex-shrink: 0;
}

.form-success {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: #86EFAC;
}

.form-success svg {
    color: #22C55E;
    flex-shrink: 0;
}

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

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

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

@media (max-width: 768px) {
    .modal.active {
        padding: 16px;
        align-items: center;
        justify-content: center;
    }

    .modal-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .modal-content {
        padding: 24px 20px;
        margin: 0;
        max-width: 100%;
        width: 100%;
        max-height: calc(100vh - 32px);
        height: auto;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-bottom: max(100px, env(safe-area-inset-bottom, 100px));
    }

    .modal-content h2 {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .modal-close {
        top: 14px;
        right: 14px;
        font-size: 24px;
        width: 36px;
        height: 36px;
    }

    .modal-logo-img {
        max-width: 120px;
        margin-bottom: 10px;
        height: auto;
    }

    .modal-logo-section {
        margin-bottom: 14px;
        flex-shrink: 0;
    }

    .modal-inner-content {
        padding-top: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 0;
        width: 100%;
    }

    .modal-inner-content .modal-subtitle {
        font-size: 13px;
        margin-bottom: 22px;
        line-height: 1.5;
        flex-shrink: 0;
    }

    .modal-form {
        gap: 18px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 0;
        width: 100%;
        padding-bottom: 20px;
    }

    .form-group {
        gap: 8px;
        flex-shrink: 0;
        width: 100%;
    }

    .form-group label {
        font-size: 14px;
        line-height: 1.4;
        font-weight: 600;
    }

    .form-group input {
        padding: 14px 16px;
        font-size: 16px;
        min-height: 48px;
        border-radius: 10px;
        line-height: 1.5;
        width: 100%;
    }

    .form-group input:focus {
        scroll-margin-bottom: 80px;
    }

    .btn-primary,
    .btn-primary-modern {
        min-height: 52px;
        font-size: 16px;
        padding: 14px 24px;
        margin-top: 10px;
        margin-bottom: 20px;
        flex-shrink: 0;
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .form-note {
        font-size: 11px;
        margin-top: 14px;
        line-height: 1.5;
        flex-shrink: 0;
    }

    .form-error,
    .form-success {
        padding: 12px 14px;
        font-size: 13px;
        margin-bottom: 14px;
        gap: 8px;
    }

    .form-error svg,
    .form-success svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   NOVAS FUNCIONALIDADES
   ============================================ */

/* 1. Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.3);
    z-index: 9998;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    color: white;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 50px rgba(37, 211, 102, 0.5);
    }
}

/* 2. Notificações Flutuantes Dinâmicas */
.floating-notification {
    position: fixed;
    z-index: 9998;
    background: var(--bg-card);
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-left: 4px solid #FF6B35;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 14px;
    color: var(--text-primary);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.3);
    max-width: 320px;
    min-width: 280px;
    animation: floatInNotification 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

/* Esconder notificações quando o modal estiver aberto */
.modal.active ~ .floating-notification,
body:has(.modal.active) .floating-notification {
    opacity: 0 !important;
    pointer-events: none;
    transform: translateY(20px) scale(0.9) !important;
}

.floating-notification:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 107, 53, 0.4);
}

.floating-notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 12px 0 0 12px;
    animation: pulseNotification 2s ease-in-out infinite;
}

.floating-notification.fade-out {
    animation: floatOutNotification 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.floating-notification-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    z-index: 1;
    padding-right: 30px;
    /* Espaço para o botão de fechar */
}

.floating-notification-icon {
    font-size: 24px;
    flex-shrink: 0;
    animation: bounceIcon 1.5s ease-in-out infinite;
    line-height: 1;
}

.floating-notification-text {
    flex: 1;
    line-height: 1.5;
    min-width: 0;
    /* Permite que o texto quebre corretamente */
}

.floating-notification-text strong {
    color: #FF6B35;
    font-weight: 700;
}

.floating-notification-time {
    font-size: 11px;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 6px;
    display: block;
}

.floating-notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s ease;
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1;
    z-index: 10;
    flex-shrink: 0;
}

.floating-notification:hover .floating-notification-close {
    opacity: 1;
}

.floating-notification-close:hover {
    background: rgba(255, 107, 53, 0.3);
    color: #FF6B35;
}

/* Posições possíveis para as notificações */
.notification-position-top-right {
    top: 80px;
    right: 20px;
}

.notification-position-top-left {
    top: 80px;
    left: 20px;
}

.notification-position-bottom-right {
    bottom: 100px;
    right: 20px;
}

.notification-position-bottom-left {
    bottom: 100px;
    left: 20px;
}

.notification-position-center-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.notification-position-center-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.notification-position-middle-top {
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
}

.notification-position-middle-bottom {
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes floatInNotification {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

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

@keyframes floatOutNotification {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
}

@keyframes pulseNotification {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    }
}

@keyframes bounceIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .floating-notification {
        max-width: calc(100vw - 40px);
        min-width: 280px;
    }

    .notification-position-center-right,
    .notification-position-center-left {
        top: auto;
        bottom: 100px;
        transform: none;
    }

    .notification-position-middle-top,
    .notification-position-middle-bottom {
        left: 20px;
        right: 20px;
        transform: none;
    }
}

/* 3. Exit Intent Popup */
.exit-intent-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10002;
    align-items: center;
    justify-content: center;
}

.exit-intent-modal.active {
    display: flex;
}

.exit-intent-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 107, 53, 0.5);
}

.exit-intent-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-tertiary);
}

.exit-intent-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
    background: var(--border-color);
}

.exit-intent-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.exit-intent-offer {
    font-size: 24px;
    color: #FF6B35;
    font-weight: 700;
    margin: 20px 0;
}

.exit-intent-code {
    font-size: 18px;
    margin: 16px 0 24px;
    padding: 12px;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.exit-intent-code strong {
    color: #FF6B35;
    font-size: 20px;
}


/* 6. Comparação Antes/Depois */
.comparacao {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.comparacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparacao-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.comparacao-card.antes {
    border-color: rgba(239, 68, 68, 0.3);
}

.comparacao-card.depois {
    border-color: rgba(34, 197, 94, 0.3);
}

.comparacao-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.comparacao-badge {
    text-align: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 24px;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.comparacao-badge.sucesso {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
}

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

.comparacao-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-light);
}

.comparacao-list li:last-child {
    border-bottom: none;
}

/* 7. Timeline de Resultados */
.timeline-resultados {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--blue-vibrant) 0%, var(--purple-vibrant) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-vibrant) 0%, var(--purple-vibrant) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    border: 4px solid var(--bg-primary);
}

.timeline-content {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    flex: 1;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* 10. Depoimentos em Vídeo */
.depoimentos-video {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.video-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    gap: 16px;
}

.video-placeholder svg {
    opacity: 0.5;
}

.video-placeholder p {
    font-size: 14px;
    margin: 0;
}

.video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card h4 {
    padding: 20px 24px 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.video-card p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsivo - Novas Funcionalidades */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

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

    .timeline-container {
        padding-left: 50px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        left: -50px;
        font-size: 20px;
    }

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

/* ============================================
   MELHORIAS MODERNAS 2025
   ============================================ */

/* 1. Tipografia Monospace para Termos Técnicos */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');

.code-term {
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 500;
    display: inline-block;
}

[data-theme="dark"] .code-term {
    background: rgba(0, 102, 255, 0.2);
    color: #3399FF;
}

/* 2. Hero Typewriter Effect */
.hero-typewriter {
    margin: 24px 0;
    text-align: center;
    min-height: 40px;
}

.typewriter-url {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: var(--text-secondary);
}

.typewriter-code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    color: #00ff88;
    font-size: 18px;
    font-weight: 600;
}

[data-theme="dark"] .typewriter-code {
    color: #00ff88;
}

/* 3. Demonstração Interativa de UTMs */
.utm-demo {
    padding: 80px 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.utm-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* UTM Builder Control Panel - Glassmorphism */
.utm-builder {
    max-width: 800px;
    margin: 40px auto 0;
    background: var(--bg-card-glass-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.utm-builder-input {
    margin-bottom: 24px;
}

.utm-builder-input label {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 8px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.utm-builder-input input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-highlight);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    color: var(--accent-cyan);
    font-size: 1rem;
    font-family: var(--font-mono);
    transition: var(--transition);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.utm-builder-input input:focus {
    outline: none;
    border-color: var(--accent-electric);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.6);
}

.utm-builder-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.utm-source-btn {
    flex: 1;
    min-width: 150px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    -webkit-tap-highlight-color: transparent;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.utm-source-btn:hover {
    border-color: var(--accent-electric);
    background: rgba(59, 130, 246, 0.1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.utm-source-btn.active {
    background: var(--accent-electric);
    border-color: var(--accent-deep);
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.utm-result {
    margin-bottom: 32px;
}

.utm-result label {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 8px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.utm-result-box {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #0D1117;
    /* Code Editor Dark */
    border: 1px solid var(--border-highlight);
    border-radius: 12px;
    padding: 16px 20px;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.utm-url-code {
    flex: 1;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent-cyan);
    /* Matrix/Cyber green/cyan */
    word-break: break-all;
    line-height: 1.5;
}

.utm-copy-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    flex-shrink: 0;
}

.utm-copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.utm-copy-btn.copied {
    background: rgba(16, 185, 129, 0.2);
    color: #34D399;
    border-color: rgba(16, 185, 129, 0.3);
}

.utm-preview {
    padding-top: 24px;
    border-top: 1px solid var(--border-glass);
}

.utm-preview h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.utm-preview-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.utm-preview-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.utm-preview-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.utm-preview-value {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--accent-purple);
    font-weight: 500;
}

/* 4. Logos Marquee (Tech Brands) */
.logos-marquee {
    padding: 40px 0;
    background: var(--bg-deep);
    /* Fundo escuro */
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.logos-marquee::before,
.logos-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-deep), transparent);
}

.logos-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-deep), transparent);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: var(--transition);
    opacity: 0.6;
}

.marquee-item:hover {
    transform: translateY(-2px);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 5. Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    max-width: 1200px;
}

.bento-item {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.bento-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 102, 255, 0.05) 100%);
    border-color: var(--blue-vibrant);
}

.bento-vertical {
    grid-row: span 2;
}

.bento-item:hover {
    transform: translateY(-4px);
    border-color: var(--blue-vibrant);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
}

.bento-featured:hover {
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.25);
}

/* 6. Micro-interações Magnéticas */
.btn-primary,
.btn-primary-modern,
.btn-nav {
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn-primary:hover,
.btn-primary-modern:hover,
.btn-nav:hover {
    transform: translateY(-4px) scale(1.05);
}

/* Efeito magnético suave */
@supports (pointer-events: auto) {

    .btn-primary,
    .btn-primary-modern,
    .btn-nav {
        will-change: transform;
    }
}

/* 7. Noise Texture e Glassmorphism Refinado */
.hero::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    mix-blend-mode: overlay;
}

/* 8. Card Holográfico Interativo */
.holographic-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.holographic-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            rgba(0, 102, 255, 0.4),
            rgba(123, 0, 255, 0.4),
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
    transform: skewX(-25deg);
    z-index: -1;
}

.holographic-card:hover::before {
    left: 100%;
    transition: 0.7s ease-in-out;
}

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

/* Responsivo - Melhorias Modernas */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-featured {
        grid-column: span 2;
    }

    .bento-vertical {
        grid-row: span 1;
    }

    .utm-preview-data {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-featured,
    .bento-vertical {
        grid-column: span 1;
        grid-row: span 1;
    }

    .utm-builder {
        padding: 24px;
    }

    .utm-builder-buttons {
        flex-direction: column;
    }

    .utm-source-btn {
        width: 100%;
        min-height: 52px;
        padding: 14px 20px;
    }

    .utm-result-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .utm-copy-btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
        padding: 12px 16px;
    }

    .utm-builder-input input {
        min-height: 48px;
        padding: 14px 16px;
        font-size: 16px;
    }
}

/* Media query para telas muito pequenas (320px - 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }

    .modal-content {
        padding: 14px 12px;
    }

    .modal-content h2 {
        font-size: 18px;
    }

    .modal-logo-img {
        max-width: 100px;
    }

    .form-group input {
        padding: 14px;
        font-size: 16px;
    }

    .btn-primary,
    .btn-primary-modern {
        padding: 14px 16px;
        font-size: 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .utm-builder {
        padding: 16px;
    }

    .utm-source-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* ============================================
   EFEITOS VISUAIS PREMIUM 2025
   ============================================ */

/* 1. Efeito Spotlight Premium (Holofote no Mouse) */
.spotlight-card {
    position: relative;
    overflow: hidden;
}

/* O brilho que segue o mouse */
.spotlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.08),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 2;
}

.spotlight-card:hover::before {
    opacity: 1;
}

/* Borda iluminada sutil */
.spotlight-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(123, 0, 255, 0.4),
            transparent 40%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    /* Máscara para mostrar apenas a borda */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    /* Espessura da borda */
    border-radius: inherit;
}

.spotlight-card:hover::after {
    opacity: 1;
}

/* Conteúdo acima do brilho */
.spotlight-card>* {
    position: relative;
    z-index: 3;
}

/* Ajuste para modo dark */
[data-theme="dark"] .spotlight-card::before {
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(0, 102, 255, 0.12),
            transparent 40%);
}

[data-theme="dark"] .spotlight-card::after {
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(123, 0, 255, 0.5),
            transparent 40%);
}

/* 2. Border Beam Animado (Card de Preço) */
.border-beam-card {
    position: relative;
}

.border-beam-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(90deg, transparent 20%, var(--blue-vibrant), var(--purple-vibrant), transparent 80%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background-size: 200% 100%;
    animation: borderBeam 4s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes borderBeam {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* Garantir que o conteúdo fique acima do border beam */
.border-beam-card .preco-card-content {
    position: relative;
    z-index: 1;
}

/* 3. Noise Overlay - Mais sutil */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

[data-theme="dark"] .noise-overlay {
    opacity: 0.08;
}