
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: url("../../imagens/angelic_background_correct.png") no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

    background: url('../../imagens/angelic_tarot_background.jpeg') no-repeat center center fixed;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #FFD700, transparent),
        radial-gradient(2px 2px at 40px 70px, #FFD700, transparent),
        radial-gradient(1px 1px at 90px 40px, #FFD700, transparent),
        radial-gradient(1px 1px at 130px 80px, #FFD700, transparent),
        radial-gradient(2px 2px at 160px 30px, #FFD700, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 3s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.screen {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.screen.active {
    display: block;
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.header {
    margin-bottom: 30px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 300px;
    height: auto;
}

.title-section {
    margin-bottom: 30px;
}

.main-title {
    color: #E91E63;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.subtitle {
    color: #E91E63;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.progress-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.progress-segment {
    width: 200px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF69B4, #E91E63);
    width: 0%;
    transition: width 0.5s ease;
}

.progress-segment.filled .progress-fill {
    width: 100%;
}

.button-container {
    margin-bottom: 40px;
}

.selection-button {
    background: linear-gradient(135deg, #FF69B4, #E91E63);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
    text-transform: none;
}

.selection-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(233, 30, 99, 0.6);
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    perspective: 1000px;
}

.card {
    width: 120px;
    height: 180px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-back, .card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.card-front {
    transform: rotateY(180deg);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-number {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.card.selected {
    transform: translateY(-15px);
}

.card.selected .card-inner {
    box-shadow: 0 0 20px #FFD700;
    border: 3px solid #FFD700;
    border-radius: 10px;
}

.confirmation-message {
    margin-bottom: 40px;
}

.message-bar {
    background: linear-gradient(135deg, #FF69B4, #E91E63);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
    animation: slideInFromTop 0.8s ease-out;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.revealed-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.revealed-card {
    position: relative;
    width: 200px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 4px solid #FFD700;
    background: white;
    animation: cardReveal 1s ease-out;
}

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.revealed-card:nth-child(1) { animation-delay: 0.2s; }
.revealed-card:nth-child(2) { animation-delay: 0.4s; }
.revealed-card:nth-child(3) { animation-delay: 0.6s; }

.card-number-top {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    z-index: 10;
}

.revealed-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-name-bottom {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}

.mystic-alert {
    background: white;
    border: 3px solid #E91E63;
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.3);
    animation: alertPulse 2s ease-in-out infinite alternate;
}

@keyframes alertPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

.alert-icon {
    font-size: 3rem;
    color: #E91E63;
    margin-bottom: 15px;
}

.alert-title {
    color: #E91E63;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.alert-content p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.highlight {
    color: #E91E63;
    font-weight: bold;
}

.urgent-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.cta-container {
    margin-top: 40px;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E91E63, #C2185B);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 35px;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.7);
    background: linear-gradient(135deg, #F06292, #E91E63);
}

.cta-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .cards-container {
        gap: 10px;
    }
    
    .card {
        width: 100px;
        height: 150px;
    }
    
    .revealed-cards-container {
        gap: 15px;
    }
    
    .revealed-card {
        width: 150px;
        height: 225px;
    }
    
    .progress-segment {
        width: 100px;
    }
    
    .mystic-alert {
        padding: 20px;
        margin: 20px;
    }
    
    .alert-title {
        font-size: 1.5rem;
    }
    
    .alert-content p {
        font-size: 1rem;
    }
}

.card.fade-out {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.8s ease;
}

.screen-transition {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.screen-transition.fade-in {
    opacity: 1;
}
