/* ===== VARIÁVEIS E RESET ===== */
:root {
    --primary-purple: #5d3fd3;
    --deep-purple: #2d1b69;
    --dark-blue: #1a1a3e;
    --mystical-gold: #d4af37;
    --light-gold: #f4e4c1;
    --moon-silver: #c0c0c0;
    --celestial-pink: #e6b3ff;
    --night-sky: #0a0a1e;
    --star-white: #ffffff;
    --gradient-mystical: linear-gradient(135deg, var(--deep-purple), var(--primary-purple), var(--dark-blue));
    --gradient-gold: linear-gradient(135deg, var(--mystical-gold), var(--light-gold));
    
    --font-title: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--night-sky);
    color: var(--star-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== FUNDO DE ESTRELAS ===== */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 30% 80%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* ===== TELAS ===== */
.screen {
    display: none;
    min-height: 100vh;
    animation: fadeIn 0.8s ease-in-out;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== TELA DE BOAS-VINDAS ===== */
.welcome-content {
    text-align: center;
    animation: scaleIn 1s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.moon-icon {
    font-size: 80px;
    animation: float 3s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.main-title {
    font-family: var(--font-title);
    font-size: 3em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.subtitle {
    font-size: 1.5em;
    color: var(--celestial-pink);
    margin-bottom: 40px;
}

/* ===== CAIXA RITUAL ===== */
.ritual-box {
    background: rgba(93, 63, 211, 0.1);
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(93, 63, 211, 0.3);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 8px 32px rgba(93, 63, 211, 0.3); }
    50% { box-shadow: 0 8px 40px rgba(93, 63, 211, 0.5); }
}

.ritual-icon {
    font-size: 50px;
    color: var(--mystical-gold);
    margin-bottom: 20px;
}

.ritual-text {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--light-gold);
}

.elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.element:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.2);
}

.element i {
    font-size: 30px;
    color: var(--mystical-gold);
}

.element span {
    font-size: 1.1em;
    color: var(--light-gold);
}

.ritual-footer {
    font-size: 1em;
    color: var(--moon-silver);
    font-style: italic;
}

/* ===== INSTRUÇÕES ===== */
.instructions {
    background: rgba(26, 26, 62, 0.6);
    border-left: 4px solid var(--mystical-gold);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.instructions h3 {
    font-family: var(--font-title);
    font-size: 1.5em;
    color: var(--mystical-gold);
    margin-bottom: 15px;
}

.instructions ul {
    list-style: none;
    padding-left: 0;
}

.instructions li {
    font-size: 1.1em;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--light-gold);
}

.instructions li::before {
    content: "✨";
    position: absolute;
    left: 0;
}

/* ===== BOTÕES ===== */
.btn-primary, .btn-secondary, .btn-cta {
    font-family: var(--font-title);
    font-size: 1.2em;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 20px 10px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--deep-purple);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: transparent;
    color: var(--moon-silver);
    border: 2px solid var(--moon-silver);
}

.btn-secondary:hover:not(:disabled) {
    background: rgba(192, 192, 192, 0.1);
    transform: translateY(-3px);
}

.btn-secondary:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.btn-cta {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    font-size: 1.4em;
    padding: 22px 50px;
    box-shadow: 0 10px 35px rgba(255, 107, 157, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 107, 157, 0.7);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* ===== BARRA DE PROGRESSO ===== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(93, 63, 211, 0.3);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    width: 0%;
    transition: width 0.4s ease;
    box-shadow: 0 0 15px var(--mystical-gold);
}

.progress-text {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-title);
    font-size: 1em;
    color: var(--mystical-gold);
    z-index: 1000;
    background: rgba(10, 10, 30, 0.8);
    padding: 8px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* ===== QUESTÕES ===== */
.question-container {
    background: rgba(26, 26, 62, 0.6);
    border-radius: 25px;
    padding: 50px;
    margin-top: 60px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-purple);
    box-shadow: 0 10px 50px rgba(93, 63, 211, 0.3);
}

.question-number {
    font-family: var(--font-title);
    font-size: 3em;
    color: var(--mystical-gold);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.question-title {
    font-family: var(--font-title);
    font-size: 1.8em;
    text-align: center;
    color: var(--celestial-pink);
    margin-bottom: 40px;
    line-height: 1.4;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.option {
    background: rgba(93, 63, 211, 0.2);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1em;
}

.option:hover {
    background: rgba(93, 63, 211, 0.3);
    border-color: var(--primary-purple);
    transform: translateX(5px);
}

.option.selected {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--mystical-gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.option-letter {
    font-family: var(--font-title);
    font-size: 1.3em;
    font-weight: bold;
    color: var(--mystical-gold);
    min-width: 30px;
}

.option-text {
    flex: 1;
    color: var(--light-gold);
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* ===== RESULTADOS ===== */
.result-content {
    animation: fadeIn 1s ease-in-out;
}

.result-header {
    text-align: center;
    margin-bottom: 40px;
}

.goddess-icon {
    font-size: 100px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.goddess-name {
    font-family: var(--font-title);
    font-size: 2.8em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.goddess-subtitle {
    font-size: 1.5em;
    color: var(--celestial-pink);
    font-style: italic;
    margin-bottom: 10px;
}

.goddess-description {
    background: rgba(93, 63, 211, 0.15);
    border-left: 5px solid var(--mystical-gold);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    font-size: 1.3em;
    line-height: 1.8;
    color: var(--light-gold);
}

.goddess-description p {
    margin-bottom: 20px;
}

.goddess-image-suggestion {
    background: rgba(26, 26, 62, 0.6);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 2px solid var(--primary-purple);
}

.goddess-image-suggestion h4 {
    font-family: var(--font-title);
    color: var(--mystical-gold);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.goddess-image-suggestion p {
    color: var(--moon-silver);
    font-size: 1.1em;
    line-height: 1.7;
}

.goddess-challenge {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(196, 69, 105, 0.2));
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 2px solid rgba(255, 107, 157, 0.5);
}

.goddess-challenge h4 {
    font-family: var(--font-title);
    color: #ff6b9d;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.goddess-challenge p {
    color: var(--light-gold);
    font-size: 1.1em;
    line-height: 1.7;
}

/* ===== CÍRCULO DE DEUSAS ===== */
.secondary-goddesses {
    margin: 50px 0;
    padding: 40px;
    background: rgba(26, 26, 62, 0.6);
    border-radius: 20px;
    border: 2px solid var(--primary-purple);
}

.secondary-goddesses h3 {
    font-family: var(--font-title);
    font-size: 2em;
    color: var(--mystical-gold);
    text-align: center;
    margin-bottom: 20px;
}

.circle-explanation {
    text-align: center;
    font-size: 1.2em;
    color: var(--celestial-pink);
    margin-bottom: 30px;
}

.circle-content {
    display: grid;
    gap: 20px;
}

.goddess-circle-item {
    background: rgba(93, 63, 211, 0.2);
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid var(--mystical-gold);
}

.goddess-circle-item.dominant {
    background: rgba(212, 175, 55, 0.2);
    border: 3px solid var(--mystical-gold);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3);
}

.goddess-circle-item.shadow {
    background: rgba(26, 26, 62, 0.4);
    border-left-color: var(--moon-silver);
    opacity: 0.7;
}

.circle-item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.circle-item-icon {
    font-size: 30px;
}

.circle-item-name {
    font-family: var(--font-title);
    font-size: 1.5em;
    color: var(--mystical-gold);
}

.circle-item-type {
    font-size: 0.9em;
    color: var(--celestial-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.circle-item-count {
    color: var(--moon-silver);
    font-size: 1.1em;
}

/* ===== CTA SECTION ===== */
.cta-section {
    margin: 60px 0;
    padding: 50px;
    background: var(--gradient-mystical);
    border-radius: 25px;
    box-shadow: 0 15px 60px rgba(93, 63, 211, 0.5);
    border: 3px solid var(--mystical-gold);
}

.cta-header {
    text-align: center;
    margin-bottom: 40px;
}

.cta-header h2 {
    font-family: var(--font-title);
    font-size: 2.2em;
    color: var(--mystical-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.cta-header h3 {
    font-size: 1.5em;
    color: var(--celestial-pink);
    line-height: 1.4;
}

.offer-box {
    background: rgba(10, 10, 30, 0.6);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-family: var(--font-title);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.offer-title {
    font-family: var(--font-title);
    font-size: 2em;
    color: var(--mystical-gold);
    margin-bottom: 20px;
    text-align: center;
}

.offer-description {
    font-size: 1.3em;
    color: var(--light-gold);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 30px;
}

.offer-features {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(93, 63, 211, 0.2);
    border-radius: 10px;
    font-size: 1.1em;
    color: var(--light-gold);
}

.feature i {
    font-size: 25px;
    color: var(--mystical-gold);
    min-width: 30px;
}

.bonus-section {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--mystical-gold);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.bonus-section h4 {
    font-family: var(--font-title);
    font-size: 1.5em;
    color: var(--mystical-gold);
    margin-bottom: 10px;
}

.bonus-title {
    font-size: 1.3em;
    color: var(--celestial-pink);
    margin-bottom: 15px;
    text-align: center;
}

.bonus-list {
    list-style: none;
    padding: 0;
}

.bonus-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--light-gold);
    font-size: 1.1em;
}

.bonus-list li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: var(--mystical-gold);
}

.price-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(26, 26, 62, 0.6);
    border-radius: 15px;
}

.old-price {
    font-size: 1.3em;
    color: var(--moon-silver);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.new-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.price-label {
    font-size: 1.1em;
    color: var(--celestial-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-family: var(--font-title);
    font-size: 4em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.installment {
    font-size: 1.2em;
    color: var(--light-gold);
    margin-top: 10px;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-timer {
    margin: 30px 0;
    text-align: center;
}

.timer-text {
    font-size: 1.2em;
    color: var(--celestial-pink);
    margin-bottom: 15px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(26, 26, 62, 0.6);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid var(--mystical-gold);
    min-width: 100px;
}

.time-unit span:first-child {
    font-family: var(--font-title);
    font-size: 2.5em;
    color: var(--mystical-gold);
    font-weight: bold;
}

.time-label {
    font-size: 0.9em;
    color: var(--moon-silver);
    text-transform: uppercase;
    margin-top: 5px;
}

.time-separator {
    font-size: 2.5em;
    color: var(--mystical-gold);
    align-self: center;
    padding-top: 15px;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(93, 63, 211, 0.2);
    border-radius: 15px;
    font-size: 1.1em;
    color: var(--light-gold);
}

.guarantee i {
    font-size: 30px;
    color: var(--mystical-gold);
}

.final-message {
    text-align: center;
    margin: 40px 0;
    font-size: 1.3em;
    color: var(--celestial-pink);
}

.signature {
    font-style: italic;
    color: var(--mystical-gold);
    margin-top: 15px;
}

.social-cta {
    background: rgba(93, 63, 211, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    border: 2px solid var(--primary-purple);
}

.social-cta p {
    font-size: 1.2em;
    color: var(--light-gold);
    line-height: 1.7;
    margin-bottom: 10px;
}

.social-cta strong {
    color: var(--mystical-gold);
}

.small-text {
    font-size: 1em !important;
    color: var(--moon-silver) !important;
    font-style: italic;
}

.btn-restart {
    display: block;
    margin: 40px auto;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .main-title {
        font-size: 2em;
    }
    
    .subtitle {
        font-size: 1.2em;
    }
    
    .ritual-box {
        padding: 20px;
    }
    
    .question-container {
        padding: 30px 20px;
    }
    
    .question-title {
        font-size: 1.4em;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .offer-box {
        padding: 25px 15px;
    }
    
    .offer-title {
        font-size: 1.5em;
    }
    
    .price-value {
        font-size: 3em;
    }
    
    .timer {
        gap: 10px;
    }
    
    .time-unit {
        padding: 15px 20px;
        min-width: 80px;
    }
    
    .time-unit span:first-child {
        font-size: 2em;
    }
    
    .btn-primary, .btn-secondary, .btn-cta {
        font-size: 1em;
        padding: 15px 30px;
    }
    
    .goddess-name {
        font-size: 2em;
    }
    
    .elements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .navigation-buttons {
        flex-direction: column;
    }
    
    .navigation-buttons button {
        width: 100%;
    }
}