:root {
    /* Paleta de Cores */
    /* Paleta de Cores - Vivid Update */
    --primary-color: #9b20ce;
    --primary-dark: #6a008a;
    --secondary-color: #ff0055;
    --accent-color: #ffd700;
    --text-color: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);

    /* --- Gender Reveal Section (Final Polish) --- */
    .gender-reveal-card {
        background: #fff;
        background: linear-gradient(to bottom right, #ffffff 0%, #fdfbff 100%);
        padding: 80px 40px;
        border-radius: 40px;
        box-shadow: 0 30px 60px rgba(100, 50, 100, 0.08);
        /* Sombra mais difusa e colorida */
        text-align: center;
        max-width: 950px;
        margin: 0 auto;
        border: 1px solid #fff;
    }

    .reveal-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #ffe5f2;
        /* Rosa bem claro */
        color: #e91e63;
        padding: 10px 30px;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 30px;
        letter-spacing: 0.5px;
    }

    .reveal-title {
        font-size: 3.2rem;
        font-weight: 800;
        line-height: 1.1;
        color: #201a30;
        /* Quase preto, levemente roxo */
        margin-bottom: 20px;
    }

    .reveal-gradient-text {
        /* Gradiente Rosa -> Roxo -> Azulado suave */
        background: linear-gradient(90deg, #ff6b81 0%, #e056fd 50%, #8e44ad 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        margin-top: 5px;
        font-weight: 900;
    }

    .reveal-description {
        font-size: 1.15rem;
        color: #888;
        max-width: 750px;
        margin: 0 auto 50px;
        line-height: 1.7;
        font-weight: 400;
    }

    .reveal-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(90deg, #ff0055 0%, #aa00ff 100%);
        /* Gradiente Mais Vivo: Rosa Choque -> Roxo Elétrico */
        color: #fff;
        padding: 20px 45px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        box-shadow: 0 15px 30px rgba(224, 86, 253, 0.3);
        transition: all 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .reveal-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(224, 86, 253, 0.4);
        filter: brightness(1.05);
    }

    .reveal-btn i {
        font-size: 1.2rem;
    }

    /* Responsividade */
    @media screen and (max-width: 768px) {
        .reveal-title {
            font-size: 2.2rem;
        }

        .gender-reveal-card {
            padding: 40px 20px;
        }
    }

    /* Gradientes */
    --gradient-main: linear-gradient(135deg, var(--primary-color), var(--secondary-color));

    /* Espaçamentos e Redimensionamento */
    --container-width: 1200px;
    --border-radius: 12px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilitários */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #aa00ff, #ff0055);
    /* Vivid Purple -> Hot Pink */
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.4);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.6);
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Glassmorphism Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* --- Componentes --- */
.text-warning {
    color: var(--accent-color);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animação Pulse do Botão */
.pulse-anim {
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(142, 68, 173, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(142, 68, 173, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(142, 68, 173, 0);
    }
}

/* --- Header & Nav --- */
header, #header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

header .container {
    height: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
    /* Necessário para o posicionamento absoluto dos links */
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    /* Garante que fique acima se houver overlap */
}

.nav-links {
    display: flex;
    gap: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    /* Center vertically */
    transform: translate(-50%, -50%);
    /* Centering fix */
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-color);
}

/* --- Hero Section --- */
.hero {
    padding: 100px 0 80px;
    background: radial-gradient(circle at 50% 50%, rgba(142, 68, 173, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

.badge-hero {
    display: inline-block;
    background: #eee;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: #555;
    border: 1px solid #ddd;
}

.badge-hero i {
    color: var(--accent-color);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-title .highlight {
    color: var(--secondary-color);
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    /* Standard property */
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Social Proof */
.social-proof {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.avatars {
    display: flex;
    margin-left: 15px;
    /* Offset for overlap */
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -15px;
    background-size: cover;
    background-position: center;
}

.proof-text {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.4;
}

/* --- Carousel Depoimentos --- */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    overflow: hidden;
    padding: 20px;
}

.carousel-slide {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.carousel-item {
    min-width: 250px;
    flex: 1;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
}

.phone-print {
    width: 220px;
    height: 400px;
    background-color: #25D366;
    /* WhatsApp Green */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    /* Placeholder pattern */
    background-image: linear-gradient(45deg, #128C7E 25%, transparent 25%, transparent 75%, #128C7E 75%, #128C7E), linear-gradient(45deg, #128C7E 25%, transparent 25%, transparent 75%, #128C7E 75%, #128C7E);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

/* Audio Toggle Button */
.audio-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.audio-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateX(-50%) scale(1.05);
}

.audio-btn.active {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    text-shadow: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-color);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* --- Music Player Section (Pixel Perfect) --- */
.player-section {
    background: #fdfbfd;
    /* Very subtle pinkish white */
    padding: 100px 0;
}

.player-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Give more space to player */
    gap: 80px;
    align-items: center;
}

/* Left Text Section */
.player-text {
    text-align: left;
}

.tag-badge {
    display: inline-block;
    background: rgba(142, 68, 173, 0.1);
    color: #9b59b6;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.player-text h2.section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: left;
}

.player-text h2 .highlight {
    color: #a56cc1;
    /* Softer Purple */
    background: none;
    -webkit-text-fill-color: initial;
}

.player-text p {
    color: #7f8c8d;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Mini Card "Tocando Agora" */
.mini-card-now {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(155, 89, 182, 0.15);
    /* Soft purple shadow */
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 450px;
    position: relative;
    overflow: hidden;
}

.icon-circle-music {
    width: 60px;
    height: 60px;
    background: #f3e5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #9b59b6;
    flex-shrink: 0;
}

.mini-info h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 5px;
}

.mini-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #aaa;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.quote-text {
    font-size: 0.9rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 5px;
}

/* Dark Player Card */
.music-player-card.dark-theme {
    background: #1a1a1a;
    border-radius: 30px;
    /* More rounded */
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    width: 550px;
    height: 450px;
}

.player-left {
    flex: 1.2;
    background-color: #333;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
}

.big-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a56cc1, #8e44ad);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.5);
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.2s;
}

.big-play-btn:hover {
    transform: scale(1.1);
}

.player-right {
    flex: 1;
    background: #1a1a1a;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.current-info {
    border-bottom: 1px solid #333;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

#track-title {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
}

.track-meta {
    font-size: 0.9rem;
    color: #959595;
    margin-bottom: 15px;
}

.producer-tag {
    font-size: 0.75rem;
    color: #b458d0;
    opacity: 0.8;
}

.progress-area {
    margin-top: 20px;
}

.progress-bar {
    background: #333;
    height: 4px;
    border-radius: 2px;
    width: 100%;
    cursor: pointer;
    position: relative;
}

.progress {
    background: #9b59b6;
    height: 100%;
    width: 0%;
    border-radius: 2px;
}

/* Bullet on progress */
.progress::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 12px;
    height: 12px;
    background: #9b59b6;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #959595;
    margin-top: 8px;
}

/* Playlist */
.playlist {
    flex: 1;
    padding-right: 5px;
    /* Space for scrollbar */
    overflow-y: auto;
    /* Ensure height is constrained for scrolling to trigger */
    min-height: 0;
}

/* Playlist Item - Compact & Vibrant */
.playlist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px 8px;
    /* Reduced vertical padding by 50% */
    border-radius: 6px;
    margin-bottom: 2px;
    /* Minimal internal spacing */
    transition: all 0.2s;
    border: 1px solid transparent;
    /* default border */
    background: rgba(255, 255, 255, 0.03);
    /* Subtle backdrop */
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.playlist-item.active {
    background: #2b1d36;
    /* Dark Purple tint */
    border: 1px solid #9b59b6;
}

.playlist-thumb {
    width: 25px;
    /* Reduced from 40px */
    height: 25px;
    border-radius: 4px;
    object-fit: cover;
}

.playlist-info h5 {
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 0px;
    /* Tighter */
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.playlist-info span {
    font-size: 0.7rem;
    color: #d1d1d1;
    font-weight: 500;
}

.playing-badge {
    font-size: 0.6rem;
    background: linear-gradient(135deg, #9b59b6, #e056fd);
    /* Vibrant gradient */
    color: #fff;
    /* White text on gradient */
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(155, 89, 182, 0.4);
}

/* Custom Scrollbar for Playlist */
.playlist::-webkit-scrollbar {
    width: 6px;
}

.playlist::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.playlist::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.playlist::-webkit-scrollbar-thumb:hover {
    background: #444;
}

@media (max-width: 900px) {
    .player-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .music-player-card.dark-theme {
        flex-direction: column;
        min-height: auto;
    }

    .player-left {
        height: 250px;
    }
}


/* --- Steps Section --- */
.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Video Section (Phone Mockup) --- */
.video-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap-reverse;
    /* Video first on mobile if stacked */
}

.video-text {
    flex: 1;
    min-width: 300px;
}

.phone-mockup-container {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 4px solid #333;
}

.notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    background: #222;
}

.text-secondary {
    color: var(--secondary-color);
    display: block;
    margin-top: 10px;
}

/* --- Pricing Section (New Design Refined) --- */
#precos {
    background: radial-gradient(circle at top, #f3e5f5 0%, #f4f0fa 100%);
    /* Fundo suave roxo */
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* Reduzido levemente */
    flex-wrap: wrap;
    margin-top: 50px;
}

.price-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(142, 68, 173, 0.1);
    /* Sombra roxa difusa */
    width: 380px;
    overflow: hidden;
    transition: transform 0.3s;
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-5px);
}

.card-header-color {
    position: relative;
    overflow: hidden;
    padding: 35px 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.header-watermark-icon {
    position: absolute;
    right: -10px;
    bottom: -15px;
    font-size: 5.8rem;
    opacity: 0.25;
    color: #ffffff;
    pointer-events: none;
    transform: rotate(-15deg);
    z-index: 1;
}

.header-watermark-left {
    position: absolute;
    left: -15px;
    top: -10px;
    font-size: 4.5rem;
    opacity: 0.18;
    color: #ffffff;
    pointer-events: none;
    transform: rotate(15deg);
    z-index: 1;
}

.card-header-color h3, .card-header-color .pill-badge {
    position: relative;
    z-index: 2;
}

.card-purple .card-header-color {
    background: linear-gradient(135deg, #aa00ff 0%, #6a008a 100%);
}

.card-pink .card-header-color {
    background: linear-gradient(135deg, #ff00dd 0%, #ff0055 100%);
    /* Ajuste fino */
}

.pill-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header-color h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Preço */
.price-tag {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #a0a0a0;
    font-size: 1rem;
    margin-bottom: 5px;
}

.current-price {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 0.9;
    color: #8e44ad;
}

.card-pink .current-price {
    color: #8e44ad;
    /* Mantendo roxo para texto */
}

.current-price small {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
}

.payment-type {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 8px;
    font-weight: 500;
}

/* Promo Boxes */
.promo-box {
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.promo-box.yellow {
    background-color: #fff9db;
    border: 1px solid #ffeeba;
    color: #856404;
}

.promo-box.blue {
    background-color: #e3f2fd;
    border: 1px solid #bbdefb;
    color: #1565c0;
    /* Azul escuro mais legível */
}

.promo-icon {
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-text {
    flex: 1;
}

.promo-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.promo-text span {
    font-size: 0.9rem;
    line-height: 1.2;
    display: block;
}

/* Listas */
.features-list {
    margin-bottom: 30px;
}

.features-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    text-align: left;
}

.check-green {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.15);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Botões */
.btn-full {
    width: 100%;
    margin: auto 0 20px;
    /* Joga pro fundo se flex column */
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-purple-gradient {
    background: linear-gradient(90deg, #8a2be2, #4b0082);
    /* BlueViolet -> Indigo */
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.4);
}

.btn-purple-gradient:hover {
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.5);
    background: linear-gradient(90deg, #9d46ff, #6002a3);
    transform: translateY(-2px);
}

/* UNIVERSAL CAROUSEL ROW - ALWAYS VISIBLE ON ALL DEVICES */
.pricing-carousel-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    margin-top: 40px !important;
    clear: both !important;
}

.pricing-carousel-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    width: 100% !important;
    padding: 10px 16px 25px 16px !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch !important;
}

.pricing-carousel-row > .price-card {
    flex: 0 0 76% !important;
    min-width: 76% !important;
    max-width: 76% !important;
    scroll-snap-align: start !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.btn-pink-gradient {
    background: linear-gradient(90deg, #ff0080, #ff1493);
    /* DeepPink */
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.4);
}

.btn-pink-gradient:hover {
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.5);
    background: linear-gradient(90deg, #ff3399, #ff1493);
    transform: translateY(-2px);
}

.btn-full:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    color: #fff;
}

/* Rodapé do Card */
.card-footer-links {
    text-align: center;
    margin-top: 10px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.whatsapp-link {
    color: #888;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
    text-decoration: none;
}

.whatsapp-link:hover {
    color: #25D366;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.7rem;
    color: #aaa;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.trust-badges i {
    color: #ccc;
    font-size: 0.8rem;
}

/* --- FAQ --- */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    /* Removed Grid Stack to allow natural flow */
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: auto;
    /* Let content dictate height naturally */
    position: relative;
    background: #fff;
    transition: all 0.3s;
}

/* Toggle Icon */
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
    flex-shrink: 0;
    /* Prevent icon shrinking */
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: #ff0055;
    transform-origin: center;
}

.faq-item summary span {
    opacity: 1 !important;
    padding-right: 15px;
    /* Spacing for icon */
}

/* Answer Content - Grid Transition Wrapper */
.faq-item p {
    display: block;
    /* Standard block */
    margin: 0;
    padding: 0 20px 20px;
    /* Only bottom/side padding */
    color: #666;
    border-top: none;
    /* Separator handled by spacing */
    opacity: 0;
    max-height: 0;
    /* Animate height */
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    transform: translateY(-10px);
    /* Subtle slide down */
}

.faq-item[open] p {
    opacity: 1;
    max-height: 500px;
    /* Large enough buffer */
    padding-top: 10px;
    /* Add top padding when open */
    border-top: 1px solid #f0f0f0;
    transform: translateY(0);
}

/* --- Footer (New Design) --- */
footer {
    background-color: #f8f5fc;
    /* Lavanda bem claro/suave */
    padding: 60px 0 20px;
    color: #666;
    margin-top: 50px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 150px;
}

.footer-col:first-child {
    flex: 2;
    /* Coluna do logo maior */
    min-width: 250px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
    color: #888;
}

.footer-col h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    font-size: 0.9rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    color: #999;
    font-size: 0.85rem;
}

/* Responsividade Footer */
@media screen and (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}

/* Responsive */
@media screen and (max-width: 768px) {

    .nav-links,
    .hide-mobile {
        display: none;
        /* Simplificação inicial para mobile */
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.mobile-active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .player-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Hero CTA Group (New) --- */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.cta-secondary-link {
    color: #5e5e5e;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cta-secondary-link i {
    font-size: 0.8em;
    transition: transform 0.2s;
}

.cta-secondary-link:hover {
    color: #9b59b6;
}

.cta-secondary-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 600px) {
    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
}

/* Avatar Badge (1k+) */
.avatar-badge {
    width: 45px;
    height: 45px;
    background: #9b59b6;
    color: white;
    border-radius: 50%;
    border: 3px solid #f8f5fc;
    /* Matches background */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: -15px;
    /* Overlap effect */
    z-index: 5;
    position: relative;
    box-shadow: 0 4px 10px rgba(155, 89, 182, 0.3);
}

/* --- Fake Activity Notifications --- */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.notification-toast {
    background: #fff;
    border: 2px solid #9b59b6;
    /* Purple border */
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 320px;
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    /* Click through when hidden */
}

.notification-toast.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.notif-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #aa00ff, #ff0055);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.notif-content {
    flex: 1;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
}

.notif-content strong {
    font-weight: 700;
}

.notif-time {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-top: 4px;
}

.notif-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
}

.notif-close:hover {
    color: #555;
}

@media (max-width: 480px) {
    .notification-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 15px;
        width: 90%;
        max-width: 400px;
    }

    .notification-toast {
        min-width: auto;
        width: 100%;
    }
}

/* --- New Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 0 10px;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    flex-shrink: 0;
}

.testimonial-info h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.testimonial-info span {
    color: #95a5a6;
    font-size: 0.85rem;
}

.testimonial-rating {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 1rem;
}

.testimonial-text {
    color: #7f8c8d;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}/* Passo 8 UI Enhancements */
.success-header {
    margin-bottom: 30px;
}
.success-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}
.pulse-icon {
    animation: pulseIcon 2s infinite;
}
@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.premium-track-card {
    background: linear-gradient(to bottom, #ffffff, #faf5ff);
    border: 2px solid #e9d5ff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
    position: relative;
    overflow: hidden;
}
.bonus-track-card {
    background: linear-gradient(to bottom, #ffffff, #f0f9ff);
    border: 2px dashed #bae6fd;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
}
.track-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.track-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.track-title h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #475569;
}
.gold-icon {
    color: #f59e0b;
    font-size: 1.5rem;
}
.text-blue {
    color: #3b82f6 !important;
}
.track-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.track-badge-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-audio-player {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 30px;
}

.btn-download-premium {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #a855f7, #7e22ce);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-download-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
}

.btn-download-bonus {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-download-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-share-whatsapp {
    width: 100%;
    padding: 16px;
    border: 2px solid #25D366;
    border-radius: 12px;
    background: transparent;
    color: #25D366;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-share-whatsapp:hover {
    background: #25D366;
    color: white;
}
/* Passo 6: Loading Fake UI Enhancements */
.loading-hero-text {
    background: linear-gradient(90deg, #ff007f, #7928ca, #ff007f);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s linear infinite;
    font-weight: 800;
}
@keyframes gradientText {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.fake-loading-container-vibrant {
    background: linear-gradient(145deg, #ffffff, #fdfbfd);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #f3e8ff;
    box-shadow: 0 15px 35px rgba(121, 40, 202, 0.08);
    margin-bottom: 25px;
}

.progress-bar-vibrant-container {
    background: #f1f5f9;
    border-radius: 20px;
    height: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.progress-bar-vibrant {
    background: linear-gradient(90deg, #ff007f, #7928ca, #3b82f6, #ff007f);
    background-size: 300% 100%;
    height: 100%;
    width: 0%;
    border-radius: 20px;
    transition: width 0.4s ease-out;
    animation: loadingGradient 2s linear infinite;
}
@keyframes loadingGradient {
    0% { background-position: 100% 0; }
    100% { background-position: -50% 0; }
}

.checklist-vibrant {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item-vibrant {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #94a3b8;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.check-item-vibrant.active {
    border-color: #c084fc;
    color: #4c1d95;
    box-shadow: 0 6px 15px rgba(192, 132, 252, 0.15);
    transform: translateX(5px);
}

.check-item-vibrant.done {
    border-color: #10b981;
    color: #065f46;
    background: #ecfdf5;
}

.check-icon-vibrant {
    font-size: 1.2rem;
}
.check-item-vibrant.active .check-icon-vibrant {
    color: #a855f7;
}
.check-item-vibrant.done .check-icon-vibrant {
    color: #10b981;
}

/* --- Card Preto e Dourado (Especial Dia dos Pais) --- */
.price-card.card-black-gold {
    background: #0f172a;
    border: 2px solid #eab308;
    box-shadow: 0 20px 50px rgba(234, 179, 8, 0.2);
}

.price-card.card-black-gold .card-header-color {
    background: linear-gradient(135deg, #1e293b 0%, #090d16 100%);
    border-bottom: 2px solid #eab308;
}

.price-card.card-black-gold .pill-badge {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    color: #0f172a;
    font-weight: 800;
}

.price-card.card-black-gold h3 {
    color: #fef08a;
}

.price-card.card-black-gold .card-body {
    background: #0f172a;
    color: #f8fafc;
}

.price-card.card-black-gold .features-list li {
    color: #f1f5f9;
}

.price-card.card-black-gold .features-list li i.check-green {
    color: #eab308;
}

.price-card.card-black-gold .promo-box {
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid #eab308;
    color: #fef08a;
}

.price-card.card-black-gold .promo-icon {
    color: #eab308;
}

.price-card.card-black-gold .promo-text strong {
    color: #fef08a;
}

.price-card.card-black-gold .promo-text span {
    color: #fef9c3;
}

.btn-gold-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    color: #ffffff !important;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.4);
    border: none;
    transition: all 0.3s ease;
}

.btn-gold-gradient:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6);
    transform: translateY(-2px);
}
/* ==========================================================================
   CLEAN & MODERN PLAYER DESIGN (Encontre o Tom da Sua História)
   ========================================================================== */
.player-section {
    background: radial-gradient(circle at 20% 20%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
                #f8fafc !important;
    padding: 90px 0;
}

.tag-badge {
    display: inline-block;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #8b5cf6;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.08);
    margin-bottom: 14px;
}

.mini-card-now {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.12);
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 25px;
}

.icon-circle-music {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
    flex-shrink: 0;
}

.mini-info .mini-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #ec4899;
    letter-spacing: 1px;
}

.mini-info h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin: 3px 0;
}

.mini-info .quote-text {
    font-size: 0.85rem;
    color: #64748b;
    font-style: italic;
}

/* --- Music Player Card Clean --- */
.music-player-card.dark-theme,
.music-player-card.clean-theme {
    background: #ffffff !important;
    border-radius: 28px !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 25px 60px -10px rgba(139, 92, 246, 0.14), 0 10px 20px -5px rgba(0,0,0,0.03) !important;
    overflow: hidden;
    display: flex;
    min-height: 440px;
}

.player-left {
    flex: 0 0 42%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-left::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.big-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%) !important;
    border: 3px solid #ffffff !important;
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.45) !important;
    color: #ffffff !important;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

.big-play-btn:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 16px 35px rgba(236, 72, 153, 0.6) !important;
}

.player-right {
    flex: 1;
    background: #ffffff !important;
    padding: 32px !important;
    display: flex;
    flex-direction: column;
}

.current-info {
    border-bottom: 1.5px solid #f1f5f9 !important;
    padding-bottom: 20px !important;
    margin-bottom: 18px !important;
}

#track-title {
    font-size: 1.25rem !important;
    color: #0f172a !important;
    margin-bottom: 4px !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}

.track-meta {
    font-size: 0.88rem !important;
    color: #64748b !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
}

.producer-tag {
    font-size: 0.78rem !important;
    color: #8b5cf6 !important;
    opacity: 1 !important;
    font-weight: 700 !important;
}

.progress-bar {
    background: #e2e8f0 !important;
    height: 6px !important;
    border-radius: 10px !important;
}

.progress {
    background: linear-gradient(90deg, #ec4899 0%, #8b5cf6 100%) !important;
    border-radius: 10px !important;
}

.progress::after {
    background: #8b5cf6 !important;
    width: 14px !important;
    height: 14px !important;
    top: -4px !important;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.6) !important;
}

.time-info {
    color: #64748b !important;
    font-weight: 600 !important;
}

/* Playlist Clean Items */
.playlist-item {
    background: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    margin-bottom: 8px !important;
    transition: all 0.25s ease !important;
}

.playlist-item:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    transform: translateX(4px);
}

.playlist-item.active {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%) !important;
    border: 1.5px solid #c084fc !important;
}

.playlist-info h5 {
    color: #0f172a !important;
    font-size: 0.92rem !important;
    text-shadow: none !important;
    font-weight: 700 !important;
}

.playlist-info span {
    color: #64748b !important;
    font-size: 0.78rem !important;
}

.playing-badge {
    background: linear-gradient(135deg, #ec4899, #8b5cf6) !important;
    color: #ffffff !important;
    box-shadow: 0 3px 8px rgba(236, 72, 153, 0.3) !important;
}

.playlist::-webkit-scrollbar-track {
    background: #f1f5f9 !important;
}

.playlist::-webkit-scrollbar-thumb {
    background: #cbd5e1 !important;
    border-radius: 4px !important;
}
/* --- FIX: Section Title Colors & Compact Player --- */
#player .section-title {
    color: #0f172a !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
}

#player .section-title .highlight {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 800 !important;
    display: inline-block;
}

/* Compact Player with Playlist Scrollbar */
.music-player-card.clean-theme {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 20px 50px -10px rgba(139, 92, 246, 0.12), 0 8px 16px -4px rgba(0,0,0,0.03) !important;
    overflow: hidden !important;
    display: flex !important;
    max-height: 360px !important;
    min-height: auto !important;
    height: 360px !important;
}

.music-player-card.clean-theme .player-left {
    flex: 0 0 36% !important;
    height: 100% !important;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-player-card.clean-theme .big-play-btn {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.4rem !important;
}

.music-player-card.clean-theme .player-right {
    flex: 1 !important;
    background: #ffffff !important;
    padding: 18px 22px !important;
    display: flex;
    flex-direction: column;
    height: 100% !important;
    overflow: hidden !important;
}

.music-player-card.clean-theme .current-info {
    border-bottom: 1.5px solid #f1f5f9 !important;
    padding-bottom: 10px !important;
    margin-bottom: 10px !important;
    flex-shrink: 0 !important;
}

.music-player-card.clean-theme #track-title {
    font-size: 1.05rem !important;
    color: #0f172a !important;
    margin-bottom: 2px !important;
    font-weight: 800 !important;
}

.music-player-card.clean-theme .track-meta {
    font-size: 0.8rem !important;
    color: #64748b !important;
    margin-bottom: 4px !important;
}

.music-player-card.clean-theme .producer-tag {
    font-size: 0.72rem !important;
    color: #8b5cf6 !important;
}

.music-player-card.clean-theme .progress-area {
    margin-top: 8px !important;
}

.music-player-card.clean-theme .progress-bar {
    height: 5px !important;
}

.music-player-card.clean-theme .playlist {
    flex: 1 !important;
    max-height: 150px !important;
    overflow-y: auto !important;
    padding-right: 6px !important;
}

.music-player-card.clean-theme .playlist-item {
    padding: 6px 10px !important;
    margin-bottom: 5px !important;
    border-radius: 8px !important;
}

.music-player-card.clean-theme .playlist-thumb {
    width: 24px !important;
    height: 24px !important;
    border-radius: 4px !important;
}

.music-player-card.clean-theme .playlist-info h5 {
    font-size: 0.82rem !important;
}

.music-player-card.clean-theme .playlist-info span {
    font-size: 0.72rem !important;
}
/* --- Custom Vignette Effect for Player Album Art --- */
.music-player-card.clean-theme .player-left {
    box-shadow: inset 0 0 50px rgba(15, 23, 42, 0.8) !important;
}

.music-player-card.clean-theme .player-left::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0 !important;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.1) 20%, rgba(15, 23, 42, 0.75) 100%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%) !important;
    pointer-events: none !important;
}
/* --- Lighter Vignette Effect with Crystal Clear Center --- */
.music-player-card.clean-theme .player-left {
    box-shadow: inset 0 0 30px rgba(15, 23, 42, 0.4) !important;
}

.music-player-card.clean-theme .player-left::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0 !important;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 55%, rgba(15, 23, 42, 0.55) 100%) !important;
    pointer-events: none !important;
}
/* --- Seção Destaque Dia dos Pais (Preto e Dourado) --- */
.father-reveal-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.92) 0%, rgba(9, 13, 22, 0.96) 100%);
    backdrop-filter: blur(12px);
    border: 2px solid #eab308;
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(234, 179, 8, 0.25);
    position: relative;
    overflow: hidden;
}

.father-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    color: #0f172a;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 8px 24px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
}

.father-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 22px;
}

.father-gradient-text {
    background: linear-gradient(135deg, #fef08a 0%, #eab308 50%, #ca8a04 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.father-description {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .father-title {
        font-size: 2.2rem;
    }
    .father-reveal-card {
        padding: 40px 20px;
        border-radius: 28px;
    }
}
/* ==========================================================================
   SMOOTH FAQ ACCORDION ANIMATION FIX
   ========================================================================== */
.faq-container {
    max-width: 820px !important;
    margin: 40px auto !important;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    margin-bottom: 0 !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    overflow: hidden !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.faq-item.is-open,
.faq-item[open].is-open {
    border-color: #c084fc !important;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.12) !important;
}

.faq-item summary {
    padding: 20px 24px !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    color: #0f172a !important;
    list-style: none !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    user-select: none !important;
}

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

.faq-item summary::after {
    content: '+' !important;
    font-size: 1.6rem !important;
    font-weight: 400 !important;
    color: #8b5cf6 !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s ease !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
}

.faq-item.is-open summary::after {
    transform: rotate(45deg) !important;
    color: #ec4899 !important;
}

.faq-item summary span {
    padding-right: 15px !important;
}

.faq-item p {
    margin: 0 !important;
    padding: 0 24px 0 !important;
    color: #475569 !important;
    font-size: 0.98rem !important;
    line-height: 1.65 !important;
    max-height: 0 !important;
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease, 
                padding 0.35s ease, 
                transform 0.35s ease !important;
    overflow: hidden !important;
}

.faq-item.is-open p {
    max-height: 300px !important;
    opacity: 1 !important;
    padding-top: 6px !important;
    padding-bottom: 22px !important;
    transform: translateY(0) !important;
    border-top: 1px solid #f1f5f9 !important;
}
/* --- FIX FAQ Item Fixed 100% Width --- */
.faq-container {
    max-width: 820px !important;
    width: 100% !important;
    margin: 40px auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    box-sizing: border-box !important;
}

.faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}

.faq-item summary {
    width: 100% !important;
    box-sizing: border-box !important;
}

.faq-item p {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Ocultar aviso/badge do Google reCAPTCHA */
.grecaptcha-badge {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* ==========================================================================
   MOBILE OPTIMIZATION PACK (90% TRAFFIC ENHANCEMENTS FOR INDEX.HTML)
   ========================================================================== */
@media screen and (max-width: 768px) {
    .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .hero-section {
        padding: 25px 12px 35px !important;
    }

    .hero-title {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
        margin-bottom: 20px !important;
    }

    .hero-cta-group {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        margin-top: 18px !important;
        margin-bottom: 16px !important;
    }

    .hero-cta-group .btn {
        width: 100% !important;
        padding: 15px 20px !important;
        font-size: 1.05rem !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    .social-proof {
        flex-direction: column !important;
        gap: 8px !important;
        align-items: center !important;
        margin-top: 15px !important;
    }

    .avatar-group {
        justify-content: center !important;
    }

    .phone-mockup-container {
        max-width: 310px !important;
        margin: 20px auto !important;
    }

    .phone-frame {
        border-width: 8px !important;
        border-radius: 36px !important;
    }

    .phone-video {
        border-radius: 28px !important;
    }

    .section-padding {
        padding: 35px 0 !important;
    }

    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .navbar, header {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        left: 0 !important;
        right: 0 !important;
    }

    #precos .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
    }

    .pricing-grid, .pricing-grid-3 {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-padding-left: 20px !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px 20px 30px 20px !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .pricing-grid > .price-card {
        flex: 0 0 calc(76% - 10px) !important;
        width: calc(76% - 10px) !important;
        min-width: calc(76% - 10px) !important;
        max-width: calc(76% - 10px) !important;
        scroll-snap-align: start !important;
        scroll-margin-left: 20px !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        border-radius: 18px !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .pricing-grid > .price-card .card-header-color {
        padding: 18px 14px !important;
        gap: 6px !important;
        text-align: center !important;
    }

    .pricing-grid > .price-card .card-header-color h3 {
        font-size: 1.15rem !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .pricing-grid > .price-card .pill-badge {
        padding: 4px 12px !important;
        font-size: 0.65rem !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
    }

    .pricing-grid > .price-card .card-body {
        padding: 16px 14px !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
    }

    .pricing-grid > .price-card .promo-box {
        padding: 8px 10px !important;
        gap: 8px !important;
        margin-bottom: 12px !important;
        border-radius: 8px !important;
        text-align: center !important;
    }

    .pricing-grid > .price-card .promo-icon {
        display: flex !important;
        width: 24px !important;
        height: 24px !important;
        font-size: 0.85rem !important;
    }

    .pricing-grid > .price-card .promo-text strong {
        font-size: 0.72rem !important;
        line-height: 1.1 !important;
    }

    .pricing-grid > .price-card .promo-text span {
        font-size: 0.76rem !important;
        line-height: 1.15 !important;
    }

    .pricing-grid > .price-card .features-list {
        margin-bottom: 14px !important;
        padding: 0 !important;
    }

    .pricing-grid > .price-card .features-list li {
        font-size: 0.8rem !important;
        line-height: 1.35 !important;
        margin-bottom: 8px !important;
        gap: 8px !important;
        word-break: break-word !important;
        white-space: normal !important;
    }

    .pricing-grid > .price-card .check-green {
        width: 16px !important;
        height: 16px !important;
        font-size: 0.6rem !important;
        flex-shrink: 0 !important;
    }

    .pricing-grid > .price-card .btn {
        padding: 12px 10px !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        border-radius: 25px !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }

    .pricing-grid > .price-card .btn span {
        font-size: 0.8rem !important;
    }

    .pricing-grid > .price-card .trust-badges {
        font-size: 0.68rem !important;
        gap: 8px !important;
        margin-top: 10px !important;
        flex-direction: row !important;
        justify-content: center !important;
    }

    .pricing-carousel-container {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        margin-top: 35px !important;
    }

    .pricing-carousel-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 16px 25px 16px !important;
        box-sizing: border-box !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .pricing-carousel-row > .price-card {
        flex: 0 0 76% !important;
        min-width: 76% !important;
        max-width: 76% !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        border-radius: 18px !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .pricing-carousel-row > .price-card .card-header-color {
        padding: 18px 14px !important;
        gap: 6px !important;
        text-align: center !important;
    }

    .pricing-carousel-row > .price-card .card-header-color h3 {
        font-size: 1.15rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    .pricing-carousel-row > .price-card .pill-badge {
        padding: 4px 12px !important;
        font-size: 0.65rem !important;
    }

    .pricing-carousel-row > .price-card .card-body {
        padding: 16px 14px !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
    }

    .pricing-carousel-row > .price-card .promo-box {
        padding: 8px 10px !important;
        gap: 8px !important;
        margin-bottom: 12px !important;
        border-radius: 8px !important;
    }

    .pricing-carousel-row > .price-card .promo-icon {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.85rem !important;
    }

    .pricing-carousel-row > .price-card .promo-text strong {
        font-size: 0.72rem !important;
    }

    .pricing-carousel-row > .price-card .promo-text span {
        font-size: 0.76rem !important;
    }

    .pricing-carousel-row > .price-card .features-list {
        margin-bottom: 16px !important;
    }

    .pricing-carousel-row > .price-card .features-list li {
        font-size: 0.8rem !important;
        line-height: 1.35 !important;
        margin-bottom: 10px !important;
        gap: 8px !important;
        word-break: break-word !important;
        white-space: normal !important;
    }

    .pricing-carousel-row > .price-card .check-green {
        width: 16px !important;
        height: 16px !important;
        font-size: 0.6rem !important;
    }

    .pricing-carousel-row > .price-card .btn {
        padding: 12px 10px !important;
        font-size: 0.82rem !important;
        border-radius: 25px !important;
        white-space: normal !important;
        text-align: center !important;
    }

    .pricing-carousel-row > .price-card .trust-badges {
        font-size: 0.68rem !important;
        gap: 8px !important;
        margin-top: 10px !important;
    }

    .price-card[style*="display: none"],
    .price-card[style*="display:none"],
    .price-card.hidden,
    #card-dia-das-maes,
    #card-cha-revelacao {
        display: none !important;
    }

    .timeline-5steps {
        padding-left: 10px !important;
    }

    .timeline-step-item {
        gap: 12px !important;
    }

    .timeline-step-content {
        padding: 16px 14px !important;
    }

    #loading-notification-container,
    .loading-notif-container {
        position: fixed !important;
        bottom: 20px !important;
        top: auto !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 92% !important;
        max-width: 400px !important;
        z-index: 999999 !important;
        margin: 0 auto !important;
        pointer-events: none !important;
    }

    #checkout-notification-container,
    .checkout-notif-container {
        position: fixed !important;
        top: 75px !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 92% !important;
        max-width: 380px !important;
        z-index: 999999 !important;
        margin: 0 auto !important;
        pointer-events: none !important;
    }

    .notif-content {
        text-align: center !important;
        flex: 1 !important;
    }

    .notif-content > div {
        text-align: center !important;
    }

    .notif-time {
        text-align: center !important;
        display: block !important;
    }
}