:root {
    --bg: #0a0a0c;
    --card-bg: #141418;
    --primary: #7b1fa2;
    --primary-light: #ae52d4;
    --accent: #00e676;
    /* Verde para Preços e CTAs */
    --text: #ffffff;
    --text-dim: #a0a0a5;
    --gold: #ffc107;
    --danger: #ff5252;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* --- VETORES DE FUNDO --- */
.bg-decor {
    position: fixed;
    z-index: 1;
    opacity: 0.04;
    color: var(--text);
    pointer-events: none;
}

.decor-1 {
    top: 10%;
    left: 5%;
    font-size: 8rem;
    transform: rotate(-15deg);
}

.decor-2 {
    top: 40%;
    right: 5%;
    font-size: 10rem;
    transform: rotate(20deg);
}

.decor-3 {
    bottom: 15%;
    left: 8%;
    font-size: 7rem;
    transform: rotate(10deg);
}

.decor-4 {
    bottom: 5%;
    right: 10%;
    font-size: 9rem;
    transform: rotate(-10deg);
}

/* --- ANIMAÇÃO --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: block;
    width: 100%;
    padding: 22px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.btn-main {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
}

.btn-main:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.btn-outline {
    border: 1px solid #333;
    color: var(--text-dim);
    margin-top: 15px;
}

.hero {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(circle at top, #200a30 0%, #0a0a0c 80%);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary-light);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vsl-vertical {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9/16;
    background: #000;
    margin: 0 auto 30px;
    border-radius: 20px;
    border: 4px solid #1e1e24;
    box-shadow: 0 0 40px rgba(123, 31, 162, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

section {
    padding: 80px 0;
}

.title-sec {
    text-align: center;
    margin-bottom: 50px;
}

.title-sec h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.title-sec span {
    color: var(--primary-light);
}

.grid-receive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #1e1e24;
}

.card-item i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 15px;
}

/* --- MOCKUP E VÍDEO --- */
.mockup-area {
    margin-top: 40px;
    text-align: center;
}

.img-placeholder {
    width: 100%;
    max-width: 900px;
    background: #1a1a1e;
    border: 2px dashed #333;
    border-radius: 20px;
    padding: 60px 20px;
    color: var(--text-dim);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 15px;
    border: 2px solid #1e1e24;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder i {
    font-size: 3rem;
    color: var(--primary-light);
    z-index: 2;
    transition: 0.3s;
}

.video-placeholder:hover i {
    transform: scale(1.2);
    color: var(--accent);
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card-feedback {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border-top: 4px solid var(--primary);
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-box {
    display: flex;
    align-items: center;
    background: #111115;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary);
}

.benefit-box i {
    font-size: 1.8rem;
    margin-right: 20px;
    color: var(--primary-light);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card-bonus {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 15px;
    border: 2px dashed #333;
    position: relative;
}

.tag-bonus {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--gold);
    font-weight: 800;
    font-size: 0.8rem;
}

.card-bonus h3 {
    color: #fff;
    margin-bottom: 10px;
    font-weight: 800;
}

.price-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.p-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    border: 1px solid #222;
    text-align: center;
}

.p-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    background: #fff;
    color: #000;
}

.p-card.featured .feat-tag {
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 15px 0;
    color: var(--accent);
}

.price span {
    font-size: 1rem;
    color: var(--accent);
}

.p-card.featured .price,
.p-card.featured .price span {
    color: var(--primary);
}

.list-feat {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.list-feat li {
    margin-bottom: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.i-check {
    color: var(--accent);
    margin-right: 10px;
}

.featured .i-check {
    color: var(--primary);
}

.anchor-price {
    font-size: 0.75rem;
    text-decoration: line-through;
    color: var(--danger);
    font-weight: 700;
}

.faq-box {
    background: #111115;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 10px;
    text-align: left;
}

.garantia-box {
    text-align: center;
    padding: 40px;
    border: 2px solid #222;
    border-radius: 20px;
    background: #08080a;
    margin-top: 50px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--card-bg);
    max-width: 500px;
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    border: 3px solid var(--accent);
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #555;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .p-card.featured {
        transform: scale(1);
        margin: 20px 0;
    }

    .bg-decor {
        display: none;
    }
}

/* --- BONUS PRICE --- */
.bonus-price {
    margin-top: 15px;
    font-size: 0.9rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--danger);
}

.free-price {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.1rem;
}

/* --- STICKY CTA --- */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 1000;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.5s ease-out 1s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }
}

/* --- TOAST NOTIFICATIONS --- */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Allows clicking through empty space */
}

.toast-notification {
    background: rgba(20, 20, 24, 0.95);
    border: 1px solid var(--accent);
    /* Subtle green border */
    border-left: 4px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    max-width: 350px;
    animation: slideInLeft 0.5s ease-out forwards;
    pointer-events: auto;
}

.toast-notification.hiding {
    animation: fadeOutLeft 0.5s ease-in forwards;
}

.toast-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

.toast-content {
    display: flex;
    flex-direction: column;
}

.toast-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.toast-message {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.toast-message strong {
    color: var(--primary-light);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

@media (max-width: 768px) {
    .toast-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 80px;
        /* Above sticky CTA */
        width: 90%;
        max-width: 400px;
        align-items: center;
    }

    .toast-notification {
        width: 100%;
        min-width: auto;
        animation: slideInBottom 0.5s ease-out forwards;
    }

    .toast-notification.hiding {
        animation: fadeOutBottom 0.5s ease-in forwards;
    }

    @keyframes slideInBottom {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeOutBottom {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }
}

/* --- CAROUSEL FEEDBACK --- */
.carousel {
    position: relative;
    max-width: 500px;
    /* Adjust based on image aspect ratio */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(123, 31, 162, 0.2);
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-item img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: 0.3s;
    user-select: none;
    z-index: 2;
}

.carousel-control:hover {
    background: var(--primary);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.indicator.active {
    background: var(--accent);
    transform: scale(1.2);
}