:root {
    --bg-color: #060b19;
    --primary: #f29f05; /* Orange/Yellow from the fox */
    --secondary: #1d4ed8; /* Blue from the puzzle piece */
    --accent: #f97316;
    --text-color: #ffffff;
    --text-muted: #94a3b8;
    --glow-primary: rgba(242, 159, 5, 0.4);
    --glow-secondary: rgba(29, 78, 216, 0.4);
    --glow-red: rgba(239, 68, 68, 0.3);
    --card-bg: rgba(15, 23, 42, 0.6);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Galaxy Background Elements */
.galaxy-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at center, #0f172a 0%, #060b19 100%);
    overflow: hidden;
}

#stars, #stars2, #stars3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

#stars {
    animation: animStar 50s linear infinite;
}

#stars2 {
    animation: animStar 100s linear infinite;
}

#stars3 {
    animation: animStar 150s linear infinite;
}

@keyframes animStar {
    from { transform: translateY(0px); }
    to { transform: translateY(-2000px); }
}

/* Mascot Section */
.mascot-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}
.mascot-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px var(--glow-secondary);
}
.float-anim {
    animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.mascot-speech {
    border-left: 4px solid var(--primary);
    position: relative;
    max-width: 500px;
}

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 10px var(--glow-primary);
}

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

.lead {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Layout */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.section {
    padding: 4rem 0;
    margin: 2rem 0;
}

/* Header / Hero */
.hero {
    text-align: center;
    padding: 3rem 0;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0,0,0,0.8), 0 0 20px var(--glow-secondary);
    border: 1px solid rgba(255,255,255,0.1);
    margin: 2rem 0;
}

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

/* Benefits Box */
.box-glow {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px var(--glow-secondary);
}

.box-glow-red {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.02);
}

.box-glow-red:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px var(--glow-red);
}

ul {
    list-style: none;
    text-align: left;
}

ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check {
    color: var(--primary);
    font-weight: bold;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px var(--glow-primary);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(242, 159, 5, 0.6);
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    width: 100%;
}

/* Split Cards */
.split-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

/* Testimonials */
.testimonials {
    column-count: 1;
    column-gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial {
    background: rgba(255,255,255,0.03);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

.testimonial-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: block;
}

.mt-3 {
    margin-top: 1rem;
}

.author {
    display: flex;
    flex-direction: column;
}

.name {
    font-weight: 700;
    color: var(--primary);
}

.role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Method Section */
.mtr-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0,0,0,0.3);
    padding: 1rem;
    border-radius: 10px;
}

.step-letter {
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary);
    background: rgba(255,255,255,0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-shadow: 0 0 10px var(--glow-secondary);
}

/* Pricing */
.pricing-section {
    border: 2px solid var(--primary);
}

.price {
    margin: 2rem 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
    display: block;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 900;
}

.guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 1rem 1rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.8);
    position: relative;
    z-index: 1;
}

.legal {
    margin-top: 1rem;
}

.legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.legal a:hover {
    color: var(--primary);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 100;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 1; /* Always visible to draw attention */
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

/* Background Planets (Image based) */
.planet-image {
    position: absolute;
    z-index: -1;
    opacity: 0.85;
    mix-blend-mode: screen; /* Removes dark background */
    pointer-events: none;
    border-radius: 50%;
    -webkit-mask-image: radial-gradient(circle closest-side, black 80%, transparent 100%);
    mask-image: radial-gradient(circle closest-side, black 80%, transparent 100%);
}

/* 2 no início */
.planet-p1 { top: 5%; left: 8%; width: 140px; }
.planet-p2 { top: 18%; right: 5%; width: 180px; filter: hue-rotate(90deg); }

/* 3 no meio */
.planet-p3 { top: 40%; left: 5%; width: 150px; filter: hue-rotate(180deg); }
.planet-p4 { top: 48%; right: 10%; width: 130px; filter: hue-rotate(270deg); }
.planet-p5 { top: 58%; left: 12%; width: 170px; filter: hue-rotate(45deg); }

/* 3 no fim */
.planet-p6 { top: 80%; right: 8%; width: 160px; }
.planet-p7 { top: 88%; left: 5%; width: 120px; filter: hue-rotate(120deg); }
.planet-p8 { top: 96%; right: 15%; width: 200px; filter: hue-rotate(210deg); }

.floating-element {
    animation: floatElement 6s ease-in-out infinite;
}

.floating-element-slow {
    animation: floatElementSlow 10s ease-in-out infinite;
}

@keyframes floatElement {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, 20px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes floatElementSlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -15px) rotate(-3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Sound Button */
.btn-sound {
    position: fixed;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--secondary), #3b82f6);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.2);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5), 0 0 15px var(--glow-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-sound:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6), 0 0 20px var(--glow-secondary);
}

/* Animations */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.scroll-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .split-cards {
        flex-direction: row;
    }
    
    .card {
        flex: 1;
    }
    
    .testimonials {
        column-count: 2;
        display: block;
    }
    
    .mtr-steps {
        flex-direction: row;
    }
    
    .step {
        flex: 1;
        flex-direction: column;
        text-align: center;
    }

    .mascot-container {
        flex-direction: row;
        justify-content: center;
    }
}
