/* Fontes e reset */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(180deg, #2e0560 0%, #3a0b73 20%, #4f208c 40%, #7030a0 70%, #e042c7 100%);
    background-attachment: fixed;
    position: relative;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

/* Fundo de céu estrelado */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 2px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.2;
    z-index: -1;
}

/* Efeito de luz no horizonte */
body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%; 
    background: linear-gradient(to top, rgba(255, 145, 238, 0.3) 0%, rgba(255, 145, 238, 0.1) 30%, transparent 100%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Barra de progresso */
.progress-bar {
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

.progress {
    width: 10%; /* Será atualizado via JavaScript */
    height: 100%;
    background-color: #ff58e4; /* Rosa */
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Conteúdo principal */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.highlight {
    color: #ff58e4; /* Rosa */
}

.subtitle {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 40px;
    font-weight: 500;
    text-align: center;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Grade de signos */
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
}

.zodiac-card {
    background-color: transparent;
    border-radius: 15px;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.zodiac-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.zodiac-card.selected {
    background-color: rgba(255, 101, 228, 0.3);
}

.zodiac-icon {
    background-color: #1e0a3a;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid #160829;
    overflow: hidden;
}

.zodiac-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #ff58e4; /* Rosa */
    border-radius: 50%;
}

.zodiac-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    background-color: #ff58e4;
    padding: 8px 0;
    border-radius: 20px;
}

/* Estilo para a tela de relacionamentos */
.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
}

.back-button button {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.relationship-options {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
    gap: 15px;
}

.relationship-option {
    background-color: rgba(255, 88, 228, 0.7);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.relationship-option:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 88, 228, 0.9);
}

.option-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.option-text {
    flex: 1;
    text-align: left;
    font-weight: 500;
    font-size: 1.1rem;
}

.option-arrow {
    font-size: 1.8rem;
    font-weight: 300;
}

/* Estilos para a tela de valores importantes */
.value-options {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
    gap: 15px;
}

.value-option {
    background-color: rgba(255, 88, 228, 0.7);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.value-option:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 88, 228, 0.9);
}

/* Estilos para a tela de linguagem do amor */
.language-options {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
    gap: 15px;
}

.language-option {
    background-color: rgba(255, 88, 228, 0.7);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.language-option:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 88, 228, 0.9);
}

/* Estilos para a tela de pergunta sobre solidão */
.answer-hint {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-style: italic;
}

.loneliness-options {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
    gap: 15px;
}

.loneliness-option {
    background-color: rgba(255, 88, 228, 0.7);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.loneliness-option:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 88, 228, 0.9);
}

/* Estilos para a tela de data de nascimento */
.info-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 1rem;
}

.birth-date-form {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.date-inputs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.date-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.date-input-group label {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.date-input-group input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
}

.date-input-group input:focus {
    outline: none;
    border-color: #ff58e4;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Estilos para a tela de preferência */
.preference-options {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
    gap: 15px;
}

.preference-option {
    background-color: rgba(255, 88, 228, 0.7);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.preference-option:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 88, 228, 0.9);
}

/* Estilos para a tela de carregamento */
.loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.loading-icon {
    margin-bottom: 30px;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 6px solid #ff58e4;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-screen p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    max-width: 400px;
}

/* Estilos para a tela de resultado */
.result-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.result-header {
    margin-bottom: 30px;
}

.compatibility-meter {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meter-label {
    font-weight: 600;
    margin-bottom: 10px;
}

.meter-bar {
    width: 100%;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.meter-fill {
    height: 100%;
    width: 0;
    background-color: #ff58e4;
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
}

.meter-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: #ff58e4;
}

.soul-mate-info {
    text-align: center;
    margin-bottom: 30px;
}

.soul-mate-info p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

/* Estilos para o formulário de contato */
.contact-form {
    width: 100%;
    max-width: 450px;
    margin: 30px auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #ff58e4;
    background-color: rgba(255, 255, 255, 0.15);
}

.disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    text-align: left;
}

/* Tela final de sucesso */
#final-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

#final-step p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

/* Estilos para botões de largura total */
.btn-block {
    width: 100%;
    padding: 15px !important;
    font-size: 1.1rem !important;
}

/* Grade de cores */
.color-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.color-card {
    height: 120px;
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.color-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.color-card.selected {
    box-shadow: 0 0 0 4px #ff58e4;
}

.color-card.selected::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    color: #4f208c;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.color-name {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 8px 0;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

/* Botões de navegação */
.nav-buttons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #ff58e4;
    color: white;
}

.btn-primary:hover {
    background-color: #e945ca;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 88, 228, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step {
    animation: fadeIn 0.5s ease forwards;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .color-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .step {
        padding: 0 10px;
    }
    
    .date-inputs {
        flex-direction: column;
        gap: 10px;
    }
    
    .zodiac-icon {
        width: 85px;
        height: 85px;
    }
    
    .zodiac-name {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .relationship-option, 
    .value-option, 
    .language-option, 
    .loneliness-option, 
    .disappointment-option, 
    .belief-option, 
    .see-option,
    .know-option,
    .preference-option {
        padding: 12px 15px;
    }
    
    .option-text {
        font-size: 0.95rem;
    }
    
    .testimonial-carousel {
        max-width: 280px;
        height: 480px;
    }
    
    .video-container {
        max-width: 95%;
    }
    
    #first-name {
        padding: 16px 20px;
    }
    
    #name-form .continue-button {
        padding: 16px;
    }
    
    .continue-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 10px;
    }
    
    .progress-bar {
        margin: 15px 0;
    }
    
    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .color-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .zodiac-icon {
        width: 70px;
        height: 70px;
        border-width: 5px;
    }
    
    h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 0.85rem;
        padding: 8px 12px;
        margin-bottom: 25px;
    }

    h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .testimonial-carousel {
        max-width: 240px;
        height: 420px;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
        margin: 0 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .video-title {
        font-size: 18px;
    }
    
    .video-container iframe {
        border-radius: 8px;
    }
    
    #first-name {
        padding: 14px 18px;
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    #name-form .continue-button {
        padding: 14px;
        font-size: 15px;
    }
    
    .loading-screen .spinner {
        width: 60px;
        height: 60px;
        border-width: 4px;
    }
    
    .loading-screen h2 {
        font-size: 1.1rem;
    }
    
    .loading-screen p {
        font-size: 0.9rem;
    }
    
    .result-header h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 375px) {
    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .zodiac-icon {
        width: 60px;
        height: 60px;
        border-width: 4px;
    }
    
    .zodiac-name {
        font-size: 0.8rem;
        padding: 5px 0;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    h2 {
        font-size: 1.1rem;
    }
    
    .relationship-option, 
    .value-option, 
    .language-option, 
    .loneliness-option, 
    .disappointment-option, 
    .belief-option, 
    .see-option,
    .know-option,
    .preference-option {
        padding: 10px 12px;
    }
    
    .option-text {
        font-size: 0.9rem;
    }
    
    .testimonial-carousel {
        max-width: 220px;
        height: 380px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .date-input-group input {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 320px) {
    .zodiac-grid {
        gap: 5px;
    }
    
    .zodiac-icon {
        width: 55px;
        height: 55px;
    }
    
    .testimonial-carousel {
        max-width: 200px;
        height: 340px;
    }
    
    .nav-arrow {
        width: 30px;
        height: 30px;
        margin: 0 8px;
    }
    
    #first-name {
        padding: 12px 16px;
    }
}

/* Orientação Paisagem em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .zodiac-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .zodiac-icon {
        width: 60px;
        height: 60px;
    }
    
    h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .subtitle {
        margin-bottom: 20px;
    }
    
    h2 {
        margin-bottom: 15px;
    }
    
    .testimonial-carousel {
        max-width: 200px;
        height: 340px;
    }
}

/* Estilos para a tela de decepção com relacionamentos */
.disappointment-options {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
    gap: 15px;
}

.disappointment-option {
    background-color: #e558ff; /* Cor mais vibrante conforme mostrado na imagem */
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.disappointment-option:hover {
    transform: translateY(-3px);
}

.disappointment-option[data-answer="sim"] .option-icon {
    color: #1fe01f; /* Verde para o ícone de check */
}

.disappointment-option[data-answer="nao"] .option-icon {
    color: #ff0000; /* Vermelho para o ícone X */
}

.disappointment-option .option-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

/* Estilos para as telas de astrologia */
.belief-options,
.see-options,
.know-options {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
    gap: 15px;
}

.belief-option,
.see-option,
.know-option {
    background-color: #e558ff; /* Cor mais vibrante conforme mostrado na imagem */
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.belief-option:hover,
.see-option:hover,
.know-option:hover {
    transform: translateY(-3px);
}

.belief-option[data-answer="sim"] .option-icon,
.see-option[data-answer="sim"] .option-icon,
.know-option[data-answer="sim"] .option-icon {
    color: #1fe01f; /* Verde para o ícone de check */
}

.belief-option[data-answer="nao"] .option-icon,
.see-option[data-answer="nao"] .option-icon,
.know-option[data-answer="nao"] .option-icon {
    color: #ff0000; /* Vermelho para o ícone X */
}

/* Estilos para a tela de depoimentos */
.testimonial-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.testimonial-title {
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-carousel {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 540px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.testimonial-slide.active {
    opacity: 1;
    display: block;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.nav-arrow {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 15px;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #ff58e4;
    transform: scale(1.2);
}

.continue-button {
    background-color: #e558ff;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 20px;
}

.continue-button:hover {
    background-color: #d42dd3;
    transform: translateY(-3px);
}

/* Estilos para a tela de formulário de nome */
.name-form-container {
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#name-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#first-name {
    width: 100%;
    padding: 20px 24px;
    font-size: 16px;
    margin-bottom: 25px;
    border: none;
    border-radius: 50px;
    background-color: white;
    color: #333;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    outline: none;
    transition: all 0.3s ease;
}

#first-name:focus {
    box-shadow: 0 4px 15px rgba(231, 66, 250, 0.4);
    transform: translateY(-2px);
}

#first-name::placeholder {
    color: #999;
    font-style: italic;
    font-size: 15px;
}

#name-form .continue-button {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, #e742fa, #c145d6);
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(231, 66, 250, 0.3);
}

#name-form .continue-button:hover {
    background: linear-gradient(to right, #d633e9, #b538c8);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(231, 66, 250, 0.4);
}

#name-form .continue-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(231, 66, 250, 0.3);
}

/* Estilos para a tela de vídeo */
.video-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    max-width: 100%;
}

.video-title {
    margin-bottom: 30px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
}

/* Ajustes responsivos para dispositivos móveis */
@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }
    
    .video-title {
        font-size: 20px;
    }
}

/* Elementos comuns */
input, 
button, 
select, 
textarea {
    font-family: 'Poppins', sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Ajustes para todos os botões */
.continue-button,
.btn,
button[type="submit"] {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Ajustes para inputs em dispositivos móveis */
input {
    font-size: 16px; /* Evita zoom em iPhone */
}

/* Estilos para tela da psíquica */
.psychic-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
}

.alert-box {
    background-color: #e3322d;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    margin-bottom: 30px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.alert-box-fade-out {
    opacity: 0;
}

.alert-content {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.alert-subcontent {
    font-size: 0.9rem;
}

.psychic-title {
    font-size: 1.4rem;
    margin-bottom: 35px;
    line-height: 1.4;
    max-width: 450px;
}

.psychic-profile {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 50px;
    padding: 10px 20px;
    width: 100%;
    max-width: 450px;
    margin-bottom: 30px;
}

.psychic-photo {
    margin-right: 15px;
}

.psychic-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.psychic-info {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.psychic-name {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.psychic-status {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-left: 8px;
}

.start-drawing-button {
    background-color: #e742fa;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    width: 100%;
    max-width: 450px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(231, 66, 250, 0.3);
    transition: all 0.3s ease;
}

.start-drawing-button:hover {
    background-color: #d633e9;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(231, 66, 250, 0.4);
}

.start-drawing-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(231, 66, 250, 0.3);
}

@media (max-width: 576px) {
    .psychic-title {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .alert-box {
        padding: 12px 20px;
    }
    
    .alert-content {
        font-size: 1.1rem;
    }
    
    .psychic-profile {
        padding: 8px 15px;
    }
    
    .psychic-image {
        width: 50px;
        height: 50px;
    }
    
    .psychic-name {
        font-size: 1rem;
    }
    
    .start-drawing-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Estilos para os popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup {
    background: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 90%;
    width: 400px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    color: #333;
    opacity: 0.95;
    transform: scale(0.95);
    transition: transform 0.3s, opacity 0.3s;
}

.popup.show {
    opacity: 1;
    transform: scale(1);
}

.popup h3 {
    color: #4f208c;
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 700;
}

.popup p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.popup-input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 2px solid #ddd;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.popup-input:focus {
    outline: none;
    border-color: #4f208c;
}

.popup-input.error {
    border-color: #ff3860;
    animation: shake 0.4s;
}

.popup-button {
    background-color: #4f208c;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.popup-button:hover {
    background-color: #ff58e4;
    transform: translateY(-2px);
}

/* Mensagem da chama gêmea */
.message-popup {
    background: linear-gradient(135deg, #4f208c, #7030a0);
    color: white;
}

.message-popup h3 {
    color: white;
    font-size: 1.8rem;
    margin-top: 10px;
}

.soul-mate-message {
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 20px 0;
}

.soul-mate-message strong {
    color: #ff58e4;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Coração pulsante */
.pulse-heart {
    font-size: 3rem;
    color: #ff58e4;
    margin-bottom: 10px;
    animation: heart-pulse 1.3s infinite;
}

@keyframes heart-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% {transform: translateX(0);}
    10%, 30%, 50%, 70%, 90% {transform: translateX(-5px);}
    20%, 40%, 60%, 80% {transform: translateX(5px);}
}

/* Loader de detecção de localização */
.loader-container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    max-width: 90%;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    color: #333;
}

.loader-spinner {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #4f208c;
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.loader-container p {
    margin: 10px 0 0;
    font-size: 1rem;
    color: #4f208c;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animação de névoa para o céu */
@keyframes drift {
    0% {
        transform: translateX(-5%) translateY(0);
    }
    50% {
        transform: translateX(5%) translateY(0);
    }
    100% {
        transform: translateX(-5%) translateY(0);
    }
}

/* Névoa no céu */
.nebula {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

.nebula::before, 
.nebula::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(112, 48, 160, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(224, 66, 199, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255, 88, 228, 0.2) 0%, transparent 40%);
    animation: drift 60s linear infinite;
}

.nebula::after {
    background-image: 
        radial-gradient(circle at 60% 30%, rgba(79, 32, 140, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(224, 66, 199, 0.2) 0%, transparent 40%);
    animation: drift 45s linear infinite reverse;
    opacity: 0.7;
} 