/* VARIABLES & RESET */
:root {
    --primary-purple: #6200EA;
    /* Exact User Request (Deep Purple A700) */
    --primary-dark: #4b067a;
    --accent-green: #00C853;
    /* Exact User Request */
    --accent-green-hover: #009624;
    --bg-black: #120a1c; /* Roxo escuro profundo em vez de preto puro */
    /* Exact User Request */
    --bg-mixed: radial-gradient(circle at top center, rgba(98, 0, 234, 0.35) 0%, var(--bg-black) 100%); /* 35% Roxo */
    --bg-dark-gray: #180d26; /* Roxo grisalho */
    --bg-lighter: #231238; /* Roxo mais claro */
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
    --glass-bg: rgba(20, 10, 30, 0.9);
    --glass-border: rgba(98, 0, 234, 0.4);
    --gradient-hero: linear-gradient(180deg, #1f0b3b 0%, var(--bg-black) 100%);
    --shadow-glow: 0 0 40px rgba(0, 200, 83, 0.3);

    --font-main: 'Outfit', sans-serif;
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: #0a0a0a;
    /* Dark base */
    background-image: var(--bg-mixed);
    /* Purple mist */
    background-attachment: fixed;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* UTILITIES */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.center {
    text-align: center;
}

.highlight {
    color: var(--accent-green);
    /* Bright green */
    text-shadow: 0 0 15px rgba(0, 200, 83, 0.8), 0 0 30px rgba(0, 200, 83, 0.6);
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -5%;
    width: 110%;
    height: 40%;
    background: rgba(0, 200, 83, 0.2);
    /* Green overlay */
    filter: blur(8px);
    z-index: -1;
    transform: skewX(-10deg);
    border-radius: 4px;
}

.text-gradient {
    color: var(--accent-green);
    background: none;
    -webkit-text-fill-color: initial;
}

.highlight-purple {
    color: #D500F9;
    /* Bright purple */
    text-shadow: 0 0 15px rgba(213, 0, 249, 0.8), 0 0 30px rgba(213, 0, 249, 0.6);
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.highlight-purple::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -5%;
    width: 110%;
    height: 40%;
    background: rgba(213, 0, 249, 0.2);
    /* Purple overlay */
    filter: blur(8px);
    z-index: -1;
    transform: skewX(-10deg);
    border-radius: 4px;
}

/* BUTTONS */
.cta-button {
    display: inline-block;
    background: var(--accent-green);
    color: #000000;
    /* High contrast black on shock green */
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: var(--transition);
    /* Matte Green Glow */
    /* Matte Green Glow - Persuasive */
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.8), 0 0 60px rgba(0, 200, 83, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Animation Ondinhas (Ripple/Shine) */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: 0.5s;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.cta-button:hover {
    transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 0 50px rgba(0, 200, 83, 0.9), 0 0 100px rgba(0, 200, 83, 0.6);
    background: var(--accent-green-hover);
}

.cta-button.large {
    font-size: 1.35rem;
    padding: 22px 50px;
}

.cta-button.pulse {
    animation: none;
}

/* HEADER */
header {
    background: rgba(46, 2, 77, 0.65); /* Roxo translúcido alinhado ao topo */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(98, 0, 234, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}



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

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 35px;
    height: 35px;
    border-radius: 10px; /* squircle (proporcional ao 28px padrão) */
    object-fit: cover;
    /* Since it's a square logo */
}

.logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

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

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    transition: var(--transition);
}

nav a:hover {
    color: var(--accent-green);
}

/* HERO SECTION */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    background: transparent;
    position: relative;
    /* overflow: hidden removed to prevent harsh clipping line */
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Ambient Glowing Orbs para o Hero (Apple Aurora Mesh Gradient) */
.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(98, 0, 234, 0.45) 0%, rgba(98, 0, 234, 0.15) 45%, transparent 75%);
    filter: blur(120px);
    z-index: 0;
    animation: float-glow-1 18s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 70%;
    height: 90%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.25) 0%, rgba(0, 200, 83, 0.08) 45%, transparent 75%);
    filter: blur(120px);
    z-index: 0;
    animation: float-glow-2 22s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Apple-style subtle noise texture to break gradient banding and add tactile premium feel */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* just above the orbs, below text */
    pointer-events: none;
    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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04; 
    mix-blend-mode: overlay;
}

@keyframes float-glow-1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(80px, 60px) scale(1.1) rotate(5deg); }
}

@keyframes float-glow-2 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(-60px, -40px) scale(1.15) rotate(-5deg); }
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o bloco texto + imagem */
    gap: clamp(30px, 5vw, 80px); /* Espaço fluido e elegante entre texto e imagem */
    width: 100%;
}

.hero-text {
    flex: 0 1 600px; /* Define base máxima sem esticar */
    max-width: 600px;
    text-align: left;
    z-index: 2;
    position: relative;
}

.mascot-hero-container {
    flex: 0 0 auto; /* Adapta-se perfeitamente ao tamanho da nova logo */
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.mascot-glow {
    display: none; /* Desativado para focar na qualidade nativa da logo */
}

.mascot-hero-img {
    width: 100%;
    max-width: 300px;
    object-fit: contain;
    border-radius: 40px;
    
    /* Iluminação direcional sutil na borda */
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.2);
    
    /* Sombra limpa e sólida para dar profundidade e destaque */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

@keyframes floating-mascot {

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

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

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--accent-green);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

/* New SVG Arrow Style */
.svg-arrow {
    width: 60px;
    height: 60px;
    position: absolute;
    top: -20px;
    right: -30px;
    filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.4));
    z-index: 10;
}

.subheadline {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

.subheadline strong {
    color: var(--text-white);
    font-weight: 600;
}

.small-text {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888;
}

/* SECTIONS COMMON */
section {
    padding: clamp(60px, 8vw, 100px) 0;
}

.section-header {
    margin-bottom: clamp(40px, 6vw, 60px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-gray);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
}

/* PAIN POINTS */
.pain-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(98, 0, 234, 0.15);
    /* Translucent dark purple */
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(98, 0, 234, 0.2);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--text-white);
}

.card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* SOLUTION */
.solution-section {
    position: relative;
    background: transparent;
    padding: 100px 0;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/banner nuvem.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    opacity: 0.15; /* Escura, sutil e premium */
    
    /* Bordas da foto desfocadas bem minimalista (fade out) */
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 80%);
}

.solution-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degrade superior e inferior para mesclar com o fundo do site */
    background: linear-gradient(180deg, var(--bg-black) 0%, transparent 15%, transparent 85%, var(--bg-black) 100%);
    z-index: -1;
    pointer-events: none;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.lead {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 20px;
}

.check-list {
    margin-top: 30px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 800;
}

/* COMPOSITION MOCKUP */
.composition-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    background-color: #000;
    border-radius: 44px;
    border: 18px solid #1a1a1a;
    padding: 0;
    width: 280px;
    height: 580px;
    box-shadow: 0 0 50px rgba(98, 0, 234, 0.3), inset 0 0 4px rgba(255, 255, 255, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: visible;
    z-index: 5;
    transition: var(--transition);
    transform: none;
}

/* Side Buttons (iPhone Volume) */
.phone-mockup::after {
    content: '';
    position: absolute;
    top: 100px;
    left: -20px;
    width: 3px;
    height: 45px;
    background: #333;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 60px 0 0 #333;
    z-index: 4;
}

/* Side Buttons (iPhone Power) */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 120px;
    right: -20px;
    width: 3px;
    height: 65px;
    background: #333;
    border-radius: 0 4px 4px 0;
    display: block;
    z-index: 4;
}

.phone-mockup .screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

/* iPhone XR Notch */
.phone-mockup .notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #1a1a1a;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

/* Camera and Speaker inside notch */
.phone-mockup .notch::before {
    content: '';
    width: 45px;
    height: 6px;
    background: #333;
    border-radius: 10px;
}
.phone-mockup .notch::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #111;
    border-radius: 50%;
    border: 1px solid #333;
}

/* Glass Reflection Effect */
.phone-mockup .screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 10;
}

.floating-bag {
    position: absolute;
    right: -20px;
    bottom: 50px;
    width: 280px;
    z-index: 6;
    animation: float-bag 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
}

@keyframes float-bag {

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

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

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.02);
    z-index: 10;
}

/* Phone Screen Images Carousel */
.phone-mockup .screen .app-screen-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    image-rendering: high-quality;
    /* Removed artificial filter that was exposing WhatsApp JPEG artifacts */

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index: 1;
}

.phone-mockup .screen .app-screen-img.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* BENEFITS */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    align-items: flex-start;
}

.check-icon {
    color: var(--accent-green);
    font-weight: bold;
    margin-top: 2px;
}

.benefit-text h4 {
    margin-bottom: 5px;
    color: var(--text-white);
}

.benefit-text p {
    font-size: 0.9rem;
    color: #aaa;
}

/* AUTHORITY */
.authority-section {
    background: transparent;
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* OFFER & COUNTDOWN */
.offer-section {
    padding: 100px 0;
}

.countdown-container {
    text-align: center;
    margin-bottom: 50px;
}

.countdown-container p {
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.time-box {
    background: linear-gradient(145deg, rgba(98, 0, 234, 0.25), rgba(98, 0, 234, 0.08));
    border: 1px solid var(--primary-purple);
    border-radius: 16px;
    padding: 15px 25px;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(98, 0, 234, 0.15);
    position: relative;
}

.time-box span {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.time-box small {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Faíscas de Fogo no Cronômetro */
.fire-spark {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #ff9d00;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px #ff4500, 0 0 15px 3px #ff9d00;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.spark-l1 { width: 5px; height: 5px; top: 10%; left: -5px; animation: floatSparkL1 2.5s infinite ease-in-out; }
.spark-l2 { width: 3px; height: 3px; top: 40%; left: -10px; animation: floatSparkL2 3s infinite ease-in-out 0.5s; }
.spark-l3 { width: 4px; height: 4px; top: -5px; left: 15%; animation: floatSparkL3 2s infinite ease-in-out 1.2s; }

.spark-r1 { width: 5px; height: 5px; bottom: 10%; right: -5px; animation: floatSparkR1 2.8s infinite ease-in-out; }
.spark-r2 { width: 4px; height: 4px; bottom: 30%; right: -10px; animation: floatSparkR2 3.2s infinite ease-in-out 0.8s; }
.spark-r3 { width: 3px; height: 3px; bottom: -5px; right: 15%; animation: floatSparkR3 2.5s infinite ease-in-out 1.5s; }

@keyframes floatSparkL1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    30% { opacity: 0.9; }
    100% { transform: translate(-20px, -40px) scale(0); opacity: 0; }
}
@keyframes floatSparkL2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    30% { opacity: 0.7; }
    100% { transform: translate(-30px, -20px) scale(0); opacity: 0; }
}
@keyframes floatSparkL3 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    30% { opacity: 0.8; }
    100% { transform: translate(-10px, -50px) scale(0); opacity: 0; }
}
@keyframes floatSparkR1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    30% { opacity: 0.9; }
    100% { transform: translate(25px, -35px) scale(0); opacity: 0; }
}
@keyframes floatSparkR2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    30% { opacity: 0.7; }
    100% { transform: translate(35px, -15px) scale(0); opacity: 0; }
}
@keyframes floatSparkR3 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    30% { opacity: 0.8; }
    100% { transform: translate(15px, -45px) scale(0); opacity: 0; }
}

.plans-grid {
    display: grid;
    grid-template-columns: minmax(280px, 520px);
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.offer-card {
    background: linear-gradient(145deg, rgba(98, 0, 234, 0.25), rgba(98, 0, 234, 0.08));
    border: 1px solid var(--primary-purple);
    border-radius: 28px; /* Squircle effect */
    padding: 40px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(98, 0, 234, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.4);
}

/* .offer-card.popular removido para manter todos os cards iguais */

.offer-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price-box {
    margin: 30px 0;
}

.old-price {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-size: 0.9rem;
    margin: 0;
}

.current-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.current-price .value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
}

.vista-price {
    font-size: 1.1rem;
    color: #ccc;
}

.offer-features {
    margin: 30px 0;
    display: inline-block;
    text-align: left;
}

.offer-features li {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.offer-features li::before {
    content: '★ ';
    color: #ffd700;
}

/* FOOTER */
footer {
    background: transparent; /* Remove a barra preta para seguir o roxo do site */
    padding: 60px 0 20px;
    border-top: 1px solid var(--glass-border); /* Borda com leve tom de roxo */
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    text-align: center;
}

.footer-contact a {
    color: var(--accent-green);
    font-weight: 600;
}

.copyright {
    margin-top: 40px;
    color: #555;
    font-size: 0.8rem;
}

/* RESPONSIVE */
/* =========================================
   RESPONSIVIDADE (TABLETS E CELULARES)
========================================= */

/* Tablets (1024px e menores) */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        gap: 20px;
    }
    
    .hero-text h1 {
        font-size: 3.2rem;
    }
    
    .mascot-hero-img {
        max-width: 400px;
    }
    
    .split-layout {
        gap: 30px;
    }
}

/* Celulares e Tablets verticais (768px e menores) */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 15px;
        padding: 0 20px 10px 20px; /* Padding simétrico explícito */
        max-width: 100%; /* Remove o limite de 1200px que pode causar offset */
        width: 100%;
    }

    .logo-container {
        justify-content: center; /* Centraliza o ícone + texto da logo */
    }

    nav {
        display: flex;
        gap: 20px;
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        margin-top: 40px;
    }

    .offer-card {
        padding: 40px 20px;
    }

    /* Hero Fixes for Mobile */
    .hero-section {
        padding-top: 130px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        flex: none; /* Previne que o flex-basis de 600px vire altura em flex-direction: column */
        text-align: center;
        max-width: 100%;
        margin-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mascot-hero-container {
        width: 100%;
        margin-top: 10px;
    }

    .mascot-hero-img {
        max-width: 260px; /* Reduzido de 90% para um tamanho cirúrgico e elegante no celular */
        height: auto;
        margin-top: 20px;
    }

    /* CRONOMETRO RESPONSIVO PARA TODOS OS CELULARES E TABLETS */
    .countdown-timer {
        gap: 6px; /* Reduz o espaço para caber tudo */
        flex-wrap: nowrap; /* Força todos os 4 blocos na mesma linha */
    }
    
    .time-box {
        min-width: 0; /* Remove restrição de largura */
        flex: 1; /* Divide o espaço proporcionalmente */
        padding: 12px 5px; /* Reduz padding lateral para não estourar */
    }
    
    .time-box span {
        font-size: clamp(1.2rem, 5vw, 1.8rem); /* Escala perfeitamente com a tela */
    }
    
    .time-box small {
        font-size: clamp(0.55rem, 2.5vw, 0.75rem); /* Diminui a legenda para caber em telas estreitas */
    }
}

/* Celulares pequenos (480px e menores) */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .card-price {
        font-size: 1.4rem;
    }
    
    .offer-card {
        padding: 30px 15px;
    }
    
    .offer-title {
        font-size: 1.1rem;
    }

    .cards-grid,
    .benefits-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    section, .offer-section, .pain-section {
        padding: 60px 0;
    }
}

/* ANIMATIONS */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* OFERTA – HIERARQUIA DE PREÇO */
.offer-badge {
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffd54f;
}

.offer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* .old-price removed to avoid duplication */

.card-price {
    color: var(--accent-green);
    margin: 0;
    white-space: nowrap; /* Impede a quebra de linha entre o "Por" e o "Valor" */
    letter-spacing: -0.5px;
    text-shadow: 0 0 8px rgba(0, 200, 83, 0.5), 0 0 15px rgba(0, 200, 83, 0.3);
}

.price-prefix {
    font-size: 1.1rem;
    font-weight: 600;
    margin-right: 4px;
}

.price-value {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #ffffff;
    text-shadow: 0 0 7px rgba(255, 255, 255, 0.72), 0 0 16px rgba(255, 255, 255, 0.34);
}

.real-price {
    font-size: 1.05rem;
    color: #ccc;
    margin-top: 0;
    margin-bottom: 25px;
}

.text-white {
    color: #ffffff;
    font-weight: 600;
}

.benefits {
    margin-top: 25px;
    text-align: left;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.benefits li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.urgency {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #ffcc80;
}

/* Floating Animation for Phone Container */
.floating-phone {
    animation: floating-mascot 6s ease-in-out infinite;
}

/* ... existing content ... */

/* PARTICLES ANIMATION */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: transparent;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(98, 0, 234, 0.6);
    /* Purple */
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(98, 0, 234, 0.4);
    animation: rise 15s infinite linear;
}

@keyframes rise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
        transform: translateY(90vh) scale(1);
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-20vh) scale(0.5);
        opacity: 0;
    }
}

/* Ensure floating animation is smooth for phone */
@keyframes floating-mascot {

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

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

/* Sales Notification Popups */
.sale-popup {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    
    /* Premium Glassmorphism Dark */
    background: rgba(20, 10, 30, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    color: var(--text-white);
    padding: 8px 18px; /* Mais área de respiro */
    border-radius: 25px; /* Bordas mais suaves */
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    
    /* Borda e Brilho Verde Neon */
    border: 1px solid rgba(0, 200, 83, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 200, 83, 0.15);
    
    z-index: 20;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes floatSale {
    0% {
        opacity: 0;
        transform: translate(-50%, 0) scale(0.8);
    }

    15% {
        opacity: 1;
        transform: translate(-50%, -20px) scale(1);
    }

    80% {
        opacity: 1;
        transform: translate(-50%, -80px) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -120px) scale(0.95);
    }
}

/* GALAXY OPENING EFFECT (PERFORMANCE OPTIMIZED) */
#galaxy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0b0d;
    display: flex;
    flex-direction: column; /* Organiza logo e animação verticalmente */
    justify-content: center;
    align-items: center;
    z-index: 99999;
    overflow: hidden;
    transition: opacity 1.5s ease; /* Fade out suave */
}

#galaxy-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 4; /* Entre a galáxia e o logo */
    pointer-events: none;
}

#galaxy-overlay .stars-bg {
    position: absolute;
    inset: -50%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #fff, transparent),
        radial-gradient(1.5px 1.5px at 150px 180px, #D500F9, transparent),
        radial-gradient(2px 2px at 200px 70px, #6200EA, transparent);
    background-size: 250px 250px;
    animation: driftStars 30s linear infinite;
    opacity: 0.5;
}

#galaxy-overlay .stars-dust {
    position: absolute;
    inset: -50%;
    background-image: 
        radial-gradient(1px 1px at 50px 50px, #fff, transparent),
        radial-gradient(1px 1px at 220px 220px, #D500F9, transparent);
    background-size: 200px 200px;
    animation: driftStars 25s linear infinite reverse;
    opacity: 0.3;
}

#galaxy-overlay .galaxy-center {
    position: relative;
    width: 0;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: galaxySequence 4s forwards;
}

#galaxy-overlay .galaxy-core {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 
        0 0 20px 5px #fff,
        0 0 40px 15px #D500F9,
        0 0 80px 30px #6200EA;
    z-index: 3;
}

#galaxy-overlay .galaxy-halo {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213,0,249,0.6) 0%, rgba(98,0,234,0.2) 50%, transparent 70%);
    z-index: 1;
    animation: pulseHalo 2s ease-in-out infinite alternate;
}

#galaxy-overlay .galaxy-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid rgba(213,0,249,0.8);
    border-right: 2px solid rgba(98,0,234,0.4);
}

#galaxy-overlay .ring-1 {
    width: 300px;
    height: 300px;
    transform: rotateX(75deg);
    box-shadow: 0 0 15px rgba(213,0,249,0.3), inset 0 0 15px rgba(98,0,234,0.3);
    animation: spinDisk1 4s linear infinite;
    z-index: 2;
}

#galaxy-overlay .ring-2 {
    width: 450px;
    height: 450px;
    transform: rotateX(75deg) rotateY(10deg);
    border-left: 2px solid rgba(213,0,249,0.5);
    box-shadow: 0 0 20px rgba(98,0,234,0.2), inset 0 0 20px rgba(213,0,249,0.2);
    animation: spinDisk2 6s linear infinite reverse;
    z-index: 1;
}

/* O Logo dentro da nebulosa */
#galaxy-overlay .galaxy-logo {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(to right, #D500F9, #6200EA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 20px; /* Espaçamento da animação */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes driftStars {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-300px) rotate(5deg); }
}

@keyframes spinDisk1 {
    0% { transform: rotateX(75deg) rotateZ(0deg); }
    100% { transform: rotateX(75deg) rotateZ(360deg); }
}

@keyframes spinDisk2 {
    0% { transform: rotateX(75deg) rotateY(10deg) rotateZ(0deg); }
    100% { transform: rotateX(75deg) rotateY(10deg) rotateZ(360deg); }
}

@keyframes pulseHalo {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
}

@keyframes galaxySequence {
    0% { transform: scale(0); opacity: 0; filter: brightness(1); }
    10% { transform: scale(1); opacity: 1; filter: brightness(1); }
    60% { transform: scale(1.2); opacity: 1; filter: brightness(1); }
    70% { transform: scale(0.01); opacity: 1; filter: brightness(10); } /* Implosão Crítica */
    71%, 100% { transform: scale(0); opacity: 0; }
}

@keyframes revealLogo {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); filter: blur(10px); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); filter: blur(0px); }
}
