:root {
    --bg-dark: #0a0510;
    --bg-card: #1a0b2e;
    --primary: #9d4edd;
    --wine: #720e1e;
    --deep-red: #4a0404;
    --primary-glow: rgba(157, 78, 221, 0.6);
    --accent: #ffd700;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(26, 11, 46, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Spiritual Particles */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(circle, #ffd700 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: -1;
    animation: particles-rise 20s linear infinite;
    will-change: transform;
}

@keyframes particles-rise {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50px);
    }
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--wine), #9d4edd);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.cta-button.green {
    background: linear-gradient(45deg, #008000, #32cd32);
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.6);
}

.cta-button:hover {
    transform: scale(1.04);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.pulse-button {
    animation: pulse-animation 3s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(157, 78, 221, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(157, 78, 221, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(157, 78, 221, 0);
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Urgency Elements */
.urgency-badge {
    background: linear-gradient(45deg, #ff4d4d, #ff0000);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    margin: 0 auto 20px;
    max-width: fit-content;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.6);
    animation: pulse-urgency 2s infinite;
}

@keyframes pulse-urgency {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.urgency-text {
    color: #ff4d4d;
    font-weight: bold;
    font-size: 0.95rem;
    margin-top: 20px;
}

.urgency-text.center {
    text-align: center;
}

.urgency-text.large {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.slots-highlight {
    background: linear-gradient(45deg, #ff4d4d, #ff0000);
    color: white;
    padding: 3px 10px;
    border-radius: 5px;
    font-weight: bold;
    animation: blink-urgent 1.5s infinite;
}

.slots-number {
    font-size: 1.2em;
    color: #ff4d4d;
    font-weight: bold;
    animation: blink-urgent 1.5s infinite;
}

@keyframes blink-urgent {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--deep-red), var(--wine), var(--deep-red));
    background-size: 200% 200%;
    animation: gradient-move 3s ease infinite;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 2px solid var(--accent);
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hero Section */
.hero {
    padding: 30px 0;
    text-align: center;
    background: url('https://i.imgur.com/3jQW16N.jpeg') no-repeat center center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 16, 0.7);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

@media (min-width: 400px) {

    .hero,
    .transformation,
    .about {
        background-attachment: fixed;
        background-position: center;
        background-size: cover;
    }
}

.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);


}

.subheadline {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #e0e0e0;
    font-size: 0.9rem;
    display: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.text-highlight-red {
    color: #ff4d4d;
    font-weight: bold;
}

@media (min-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .subheadline {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .intro-text {
        display: block;
        margin-bottom: 40px;
    }
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3) !important;
    border: 2px solid #ffd700 !important;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.watching-now {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #00ff88;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pulse {
    width: 10px;
    height: 10px;
    background-color: #00ff88;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

/* Discovery Section */
.discovery {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.discovery h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.discovery-item {
    background: var(--glass-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: transform 0.3s;
}

.discovery-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.icon-box {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Transformation */
.transformation {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #10002b);
    text-align: center;
}

.transformation h2 {
    margin-bottom: 40px;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto 40px;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: block;
    position: relative;
    height: 500px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

.slide-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: golden-glow 3s infinite alternate;
    cursor: pointer;
    background: #000;
}

@keyframes golden-glow {
    0% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        border: 1px solid rgba(255, 215, 0, 0.3);
    }

    100% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
        border: 1px solid rgba(255, 215, 0, 0.8);
    }
}

.slide-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    padding: 20px 15px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 10px;
}

.testimonials .subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        max-width: 1100px;
    }
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    border: 2px solid #9d4edd;
    box-shadow: 0 0 15px #9d4edd, 0 0 30px rgba(157, 78, 221, 0.4);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.video-card {
    aspect-ratio: 9/16;
    width: 100%;
    height: auto;
    background: #000;
}

.video-card iframe {
    width: 100%;
    height: 100%;
}

/* Bonuses Carousel */
.bonuses {
    padding: 60px 0;
    background: #10002b;
}

.bonuses h2 {
    text-align: center;
    color: var(--accent);
}

.bonuses .subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.bonus-carousel-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto 40px;
    overflow: hidden;
    padding: 20px 0;
}

.bonus-track {
    position: relative;
    width: 100%;
    height: 600px;
}

.bonus-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

.bonus-card-img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    position: relative;
}

.bonus-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-caption {
    text-align: center;
    margin-top: 15px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 10px;
}

.bonus-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.bonus-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.bonus-dot.active {
    background-color: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.bonuses .cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* About */
.about {
    padding: 80px 0;
    background: radial-gradient(circle at right, #240046 0%, var(--bg-dark) 60%);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 20px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.2);
}

.about-image img,
.journey-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
    aspect-ratio: 1/1;
}

.animated-img {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.animated-img:hover img {
    transform: scale(1.05);
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 10px 5px;
    opacity: 1;
    transform: translateY(0);
    font-weight: 600;
    font-size: 0.9rem;
}

.tag {
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.journey h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.journey-item {
    height: auto;
    border-radius: 10px;
    font-size: 0.9rem;
    padding: 10px;
}

/* How It Works */
.how-it-works {
    padding: 60px 0;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step-card {
    position: relative;
    background: var(--bg-card);
    padding: 30px 20px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-heading);
    box-shadow: 0 0 10px var(--primary);
}

.how-it-works .cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: url('https://i.imgur.com/WfTqqrg.jpeg') no-repeat center center/cover;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 5, 24, 0.85);
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--glass-border);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.premium {
    border: 3px solid var(--accent);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
    z-index: 2;
    animation: premium-glow 3s infinite alternate;
}

.pricing-card.premium.visible {
    animation: zoom-in-soft 0.8s ease-out forwards, premium-glow 3s infinite alternate;
}

@keyframes zoom-in-soft {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes premium-glow {
    0% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    }
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    animation: blink-soft 2s infinite;
}

@keyframes blink-soft {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.pricing-card h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.price-anchor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.old-price {
    text-decoration: line-through;
    color: #ff4d4d;
    font-size: 1.1rem;
    font-weight: bold;
}

.discount-badge {
    background: #00ff88;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.pricing-card ul {
    margin-bottom: 30px;
    flex: 1;
}

.pricing-card li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.pricing-card li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.pricing-card li.unavailable {
    color: #666;
    text-decoration: line-through;
}

.pricing-card li.unavailable::before {
    content: 'Ã—';
    color: #666;
}

.scarcity {
    text-align: center;
    color: #ff4d4d;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.note {
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-card .cta-button {
    width: 100%;
    text-align: center;
}

.pricing-card .cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    box-shadow: none;
}

.pricing-card .cta-button.secondary:hover {
    background: rgba(157, 78, 221, 0.1);
}

/* Guarantee */
.guarantee {
    padding: 60px 0;
}

.guarantee-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
}

.guarantee-icon img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.guarantee-text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.highlight {
    color: var(--accent);
    font-weight: bold;
    margin: 15px 0;
}

/* FAQ */
.faq {
    padding: 60px 0;
    background: #0f0518;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color: var(--text-muted);
}

.faq-answer p {
    padding-bottom: 20px;
}

.toggle {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    border: 2px solid #ff4d4d;
    position: relative;
    overflow: hidden;
    animation: popup-in 0.4s ease-out;
}

@keyframes popup-in {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.popup-header {
    background: #ff4d4d;
    color: white;
    padding: 15px;
    text-align: center;
}

.popup-header h3 {
    font-size: 1rem;
    margin: 0;
}

.popup-body {
    padding: 30px;
    text-align: center;
}

.popup-body h4 {
    color: #ff4d4d;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.popup-cta {
    width: 100%;
    background: linear-gradient(45deg, #ff4d4d, #c00);
    margin-top: 20px;
    border: none;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Sales Notification */
.sales-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
    z-index: 99;
    display: none;
    animation: slide-in 0.5s ease-out;
    max-width: 300px;
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.notification-text p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.2;
}

.notification-text .name {
    font-weight: bold;
    color: var(--accent);
}

.notification-text .location {
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-card.premium {
        transform: scale(1.02);
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-icon img {
        width: 100%;
        max-width: 250px;
        height: auto;
    }

    .about-content {
        flex-direction: column-reverse;
    }

    .about-image {
        width: 100%;
        height: 300px;
    }
}

@media (min-width: 768px) {

    .carousel-container,
    .bonus-carousel-container {
        max-width: 800px;
    }

    .carousel-track,
    .bonus-track {
        height: 600px;
    }
}
/* PROTEÇÃO ANTI-CÓPIA */
body { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; }
img { -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none; -o-user-drag: none; pointer-events: none; }
