* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a0000 30%, #330000 60%, #000000 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mystical-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 140, 0, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    z-index: -1;
    animation: astralPulse 6s ease-in-out infinite;
}

@keyframes astralPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* BRANDING ASTRAL ILLUMINATION */
.brand-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(51, 0, 0, 0.6) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.astral-logo {
    margin-bottom: 15px;
}

.logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #ff4500 50%, #ffd700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: logoGlow 3s ease-in-out infinite;
    overflow: hidden;
    padding: 3px;
}

.inner-figure {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url('icone.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}

@keyframes logoGlow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.8), inset 0 2px 0 rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ff4500, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.brand-tagline {
    font-size: 1rem;
    color: #ffcc00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* QUIZ PAGE STYLES */
.quiz-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
}

.sacred-symbol {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: rotate 10s linear infinite;
    filter: drop-shadow(0 0 20px #ffd700);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.quiz-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ff6b00, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.subtitle {
    font-size: 1.1rem;
    color: #ffdd44;
    line-height: 1.8;
    font-style: italic;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.quiz-container {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(51, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.2),
        0 0 50px rgba(255, 215, 0, 0.1);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4500, #ffd700, #ff6b00);
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 0%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.question-counter {
    text-align: center;
    color: #ffdd44;
    margin-bottom: 35px;
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.question-card h2 {
    font-size: 1.8rem;
    margin-bottom: 35px;
    text-align: center;
    color: #ffdd44;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.answer-option {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(51, 0, 0, 0.4) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 5px;
}

.answer-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.answer-option:hover::before {
    left: 100%;
}

.answer-option:hover {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.answer-option.selected {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 69, 0, 0.2) 100%);
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    transform: scale(1.02);
}

.navigation {
    text-align: center;
    margin-top: 30px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff4500, #ffd700, #ff6b00);
    color: #000000;
    border: none;
    padding: 18px 45px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 10px 20px rgba(255, 69, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 15px 30px rgba(255, 69, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3);
    background: linear-gradient(45deg, #ff6b00, #ffd700, #ff4500);
}

.btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* RESULT PAGE STYLES */
.result-page {
    text-align: center;
}

.result-container {
    max-width: 800px;
    width: 100%;
}

.chosen-symbol {
    font-size: 5rem;
    margin-bottom: 30px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px #ffd700, 0 0 30px #ffd700, 0 0 40px #ffd700;
    }

    to {
        text-shadow: 0 0 30px #ffd700, 0 0 40px #ffd700, 0 0 50px #ffd700;
    }
}

.result-title {
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffd700, #ff4500, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.result-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(51, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.result-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ffdd44;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.activation-box {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.sacred-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow:
        0 0 20px #ffd700,
        2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.activation-text {
    font-size: 1.2rem;
    color: #ffdd44;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.cta-section {
    margin-top: 40px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffdd44;
    line-height: 1.5;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ff4500, #ffd700, #ff6b00);
    color: #000000;
    text-decoration: none;
    padding: 25px 55px;
    border-radius: 35px;
    font-size: 1.4rem;
    font-weight: 900;
    transition: all 0.3s ease;
    box-shadow:
        0 15px 30px rgba(255, 69, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.btn-cta:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow:
        0 20px 40px rgba(255, 69, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ff6b00, #ffd700, #ff4500);
}

/* OFFER PAGE STYLES */
.offer-page {
    padding: 40px 20px;
}

.offer-container {
    max-width: 900px;
    width: 100%;
}

.offer-header {
    text-align: center;
    margin-bottom: 50px;
}

.sacred-flame {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: flicker 2s ease-in-out infinite alternate;
}

@keyframes flicker {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.offer-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ffd700, #ff4500, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.offer-subtitle {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.offer-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffdd44;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.benefits-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(51, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 40px;
    margin: 40px 0;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.benefits-section h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.benefits-list {
    list-style: none;
    font-size: 1.1rem;
    line-height: 2.2;
    font-weight: 400;
}

.benefits-list li {
    margin-bottom: 18px;
    padding-left: 10px;
    color: #ffdd44;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
}

.benefits-list li::before {
    content: '⚡';
    position: absolute;
    left: -25px;
    color: #ff4500;
    font-size: 1.2em;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.price-section {
    text-align: center;
    margin: 40px 0;
}

.price-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 69, 0, 0.1) 100%);
    border: 3px solid #ffd700;
    border-radius: 25px;
    padding: 40px 30px;
    display: inline-block;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.price-comparison {
    margin-bottom: 20px;
}

.old-price {
    font-size: 2rem;
    color: #ff6b6b;
    text-decoration: line-through;
    opacity: 0.7;
    display: block;
    margin-bottom: 10px;
    position: relative;
}

.old-price::after {
    content: 'ANTES';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #ff6b6b;
    font-weight: bold;
    letter-spacing: 1px;
}

.price-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.currency {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.amount {
    font-size: 5rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow:
        0 0 20px rgba(255, 215, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: priceGlow 3s ease-in-out infinite;
}

.cents {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    align-self: flex-start;
    margin-top: 10px;
}

@keyframes priceGlow {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ff4500, #ff6b00);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.price-text {
    font-size: 1.3rem;
    color: #ffdd44;
    margin-top: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.urgency-section {
    text-align: center;
    margin: 40px 0;
}

.chosen-counter {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: inline-block;
}

.counter-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6b6b;
    display: block;
    text-shadow: 0 0 20px #ff6b6b;
}

.chosen-counter p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-top: 10px;
}

.btn-purchase {
    background: linear-gradient(45deg, #ff4500, #ffd700, #ff6b00);
    color: #000000;
    border: none;
    padding: 30px 70px;
    border-radius: 40px;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 15px 30px rgba(255, 69, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid rgba(255, 215, 0, 0.5);
    animation: buttonPulse 4s ease-in-out infinite;
}

@keyframes buttonPulse {

    0%,
    100% {
        box-shadow: 0 15px 30px rgba(255, 69, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 20px 40px rgba(255, 69, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: scale(1.02);
    }
}

.btn-purchase:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow:
        0 25px 50px rgba(255, 69, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ff6b00, #ffd700, #ff4500);
}

.guarantee {
    font-size: 1rem;
    color: #b8b8d4;
    font-style: italic;
    margin-top: 20px;
}

.testimonial-section {
    margin-top: 50px;
    text-align: center;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ffd700;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial-author {
    color: #ffd700;
    font-weight: bold;
}

/* COSMIC ELEMENTS */
.cosmic-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.star {
    position: absolute;
    font-size: 1.5rem;
    animation: twinkle 3s ease-in-out infinite;
}

.star-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.star-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.star-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
}

.star-4 {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
}

.moon {
    position: absolute;
    top: 15%;
    right: 10%;
    font-size: 3rem;
    animation: moonGlow 4s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes moonGlow {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.energy-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .quiz-header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .quiz-container {
        padding: 25px;
    }

    .question-card h2 {
        font-size: 1.3rem;
    }

    .result-title {
        font-size: 2.2rem;
    }

    .offer-title {
        font-size: 2.2rem;
    }

    .offer-subtitle {
        font-size: 1.4rem;
    }

    .benefits-list {
        font-size: 1.1rem;
    }

    .price {
        font-size: 3rem;
    }

    .btn-purchase {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
}

/* ELEMENTOS VISUAIS EXTRAS ASTRAL ILLUMINATION */
.astral-rays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background:
        linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.05) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 69, 0, 0.03) 50%, transparent 60%);
    animation: raysRotate 20s linear infinite;
}

@keyframes raysRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* EFEITO DE TEXTO BRILHANTE SUAVE */
.glow-text {
    animation: textGlow 4s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow:
            1px 1px 2px rgba(0, 0, 0, 0.8),
            0 0 8px rgba(255, 215, 0, 0.4);
    }

    to {
        text-shadow:
            1px 1px 2px rgba(0, 0, 0, 0.8),
            0 0 12px rgba(255, 215, 0, 0.6),
            0 0 18px rgba(255, 69, 0, 0.3);
    }
}

/* PARTÍCULAS DOURADAS FLUTUANTES */
.golden-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.golden-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffd700;
    border-radius: 50%;
    animation: floatUp 8s linear infinite;
    box-shadow: 0 0 6px #ffd700;
}

.golden-particle:nth-child(odd) {
    background: #ff4500;
    box-shadow: 0 0 6px #ff4500;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* EFEITO DE BORDA DOURADA ANIMADA */
.golden-border {
    position: relative;
    overflow: hidden;
}

.golden-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ff4500, #ffd700, #ff6b00);
    border-radius: inherit;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* RESPONSIVO MELHORADO */
@media (max-width: 768px) {
    .brand-name {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .brand-tagline {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
    }

    .quiz-header h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .question-card h2 {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
    }

    .answer-option {
        font-size: 1.2rem;
        padding: 20px 25px;
    }

    .question-counter {
        font-size: 1.2rem;
    }

    .result-title {
        font-size: 2.4rem;
        letter-spacing: 1px;
    }

    .offer-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }

    .offer-subtitle {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .benefits-list {
        font-size: 1.1rem;
    }

    .btn-purchase {
        padding: 25px 50px;
        font-size: 1.3rem;
    }
}

/* EFEITOS ESPECIAIS PARA MOBILE */
@media (max-width: 480px) {
    .astral-rays {
        display: none;
    }

    /* Remove rays em telas muito pequenas */
}

/* BONUS SECTION STYLES */
.bonus-section {
    margin: 40px 0;
    text-align: left;
}

.bonus-header-title {
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(45deg, #ffd700, #ff4500, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(30, 0, 0, 0.6) 0%, rgba(60, 0, 0, 0.4) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.2);
}

.bonus-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(90deg, #ff4500, #ff8c00);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.bonus-title {
    font-size: 1.6rem;
    color: #ffdd44;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-icon {
    font-size: 1.8rem;
}

.bonus-description {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.bonus-bullets {
    list-style: none;
    margin-top: 15px;
}

.bonus-bullets li {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.bonus-bullets li::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 0.8rem;
    top: 2px;
}

/* UNLOCKED GIFT PREVIEW (Page 2) */
.unlocked-gift-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 69, 0, 0.05) 100%);
    border: 2px dashed rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.gift-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

.gift-text {
    color: #ffdd44;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}