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

:root {
    --bg: #06060f;
    --bg-card: #0e0e1a;
    --bg-card-hover: #151525;
    --border: #1e1e3a;
    --text: #fafafa;
    --text-muted: #a1a1c0;
    --accent: #6d5cff;
    --accent-glow: #8b7aff;
    --accent-subtle: rgba(109, 92, 255, 0.1);
    --green: #22c55e;
    --gold: #f59e0b;
}

html {
    scroll-behavior: smooth;
}

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

/* ─── STARS BACKGROUND ─── */
#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(6, 6, 15, .75);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: color .3s;
}

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

.nav-cta {
    background: var(--accent);
    color: #fff;
    padding: .6rem 1.4rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: all .3s;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--accent-glow);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(109, 92, 255, .3);
}

/* ─── GRADIENT TEXT ─── */
.gradient {
    background: linear-gradient(135deg, var(--accent), #a78bfa, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(109, 92, 255, .18), transparent);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e1e3a' fill-opacity='0.3'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5;
}

.hero-content {
    position: relative;
    max-width: 820px;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--accent-subtle);
    border: 1px solid rgba(109, 92, 255, .3);
    padding: .4rem 1rem;
    border-radius: 100px;
    font-size: .8rem;
    color: var(--accent-glow);
    margin-bottom: 2rem;
    animation: fadeInUp .8s ease-out;
}

.badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp .8s ease-out .1s both;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp .8s ease-out .2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp .8s ease-out .3s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    color: #fff;
    padding: .9rem 2.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(109, 92, 255, .4);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: .9rem 2.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all .3s;
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--text-muted);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    animation: fadeInUp .8s ease-out .4s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk';
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-glow);
}

.stat-label {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: .2rem;
}

/* ─── FLOATING PLANETS ─── */
.planet {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.planet-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    right: 8%;
    background: radial-gradient(circle at 30% 30%, #8b7aff, #3b2a8a);
    box-shadow: 0 0 40px rgba(109, 92, 255, .3), inset -10px -10px 20px rgba(0, 0, 0, .4);
    animation: float 8s ease-in-out infinite;
}

.planet-2 {
    width: 40px;
    height: 40px;
    bottom: 25%;
    left: 6%;
    background: radial-gradient(circle at 30% 30%, #ec4899, #7c1d5e);
    box-shadow: 0 0 25px rgba(236, 72, 153, .2), inset -5px -5px 10px rgba(0, 0, 0, .4);
    animation: float 10s ease-in-out infinite 3s;
}

.planet-3 {
    width: 20px;
    height: 20px;
    top: 35%;
    left: 15%;
    background: radial-gradient(circle at 30% 30%, #a78bfa, #5b21b6);
    box-shadow: 0 0 15px rgba(167, 139, 250, .2);
    animation: float 6s ease-in-out infinite 1s;
}

/* ─── SECTIONS ─── */
section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .tag {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-glow);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-family: 'Space Grotesk';
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

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

/* ─── VANTAGENS ─── */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity .4s;
}

.advantage-card:hover {
    border-color: rgba(109, 92, 255, .3);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

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

.advantage-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.advantage-card h3 {
    font-family: 'Space Grotesk';
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .6rem;
}

.advantage-card p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
}

/* ─── SERVIÇOS ─── */
.services {
    background: linear-gradient(180deg, var(--bg), #0a0a18, var(--bg));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all .4s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
    border-color: var(--accent);
}

.service-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Space Grotesk';
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .8rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin-top: 1.2rem;
}

.service-tag {
    background: var(--accent-subtle);
    color: var(--accent-glow);
    padding: .3rem .8rem;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 500;
}

/* ─── PRICING ─── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all .4s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(109, 92, 255, .08), var(--bg-card));
    transform: scale(1.03);
}

.price-card.featured::before {
    content: '🔥 MAIS POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    color: #fff;
    padding: .4rem 1.2rem;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    white-space: nowrap;
}

.price-card h3 {
    font-family: 'Space Grotesk';
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.price-card .desc {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 1.5rem;
}

.price-value {
    font-family: 'Space Grotesk';
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: .3rem;
}

.price-value span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.price-note {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    padding: .5rem 0;
    font-size: .9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .6rem;
}

.price-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
}

.price-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.price-card .btn-secondary {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: auto;
}

/* ─── DEPOIMENTOS ─── */
.testimonials {
    background: linear-gradient(180deg, var(--bg), #08081a, var(--bg));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all .3s;
}

.testimonial-card:hover {
    border-color: rgba(109, 92, 255, .2);
}

.stars {
    color: var(--gold);
    font-size: .9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card .quote {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: .9rem;
}

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

/* ─── URGÊNCIA ─── */
.urgency {
    background: linear-gradient(135deg, rgba(109, 92, 255, .1), rgba(139, 92, 246, .05));
    border: 1px solid rgba(109, 92, 255, .2);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    margin: 0 2rem;
}

.urgency h2 {
    font-family: 'Space Grotesk';
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.urgency p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.urgency-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .95rem;
}

.urgency-item .icon {
    color: var(--green);
}

/* ─── FOOTER ─── */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: .85rem;
    position: relative;
    z-index: 1;
}

footer .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

@keyframes float {

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

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

@keyframes twinkle {

    0%,
    100% {
        opacity: .2;
    }

    50% {
        opacity: 1;
    }
}

@keyframes shooting {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
        opacity: 1;
        width: 0;
    }

    30% {
        width: 80px;
        opacity: 1;
    }

    100% {
        transform: translateX(400px) translateY(400px) rotate(-45deg);
        opacity: 0;
        width: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease-out, transform .7s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── SHOOTING STAR ─── */
.shooting-star {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 122, 255, 0), rgba(139, 122, 255, .8), rgba(255, 255, 255, 1));
    border-radius: 50px;
    animation: shooting 1.5s ease-out forwards;
}

/* ─── MOBILE ─── */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

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

    .price-card.featured {
        transform: none;
    }

    .urgency {
        margin: 0 1rem;
    }

    .planet-1 {
        width: 50px;
        height: 50px;
        right: 5%;
    }

    .planet-2 {
        width: 25px;
        height: 25px;
    }
}