/* Etapa 1 Specific Styles */
.etapa1-content {
    background-color: #ffffff;
    max-width: 600px;
    margin: 40px auto;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e3e6e8;
}

.congrats-text {
    font-size: 2.2rem;
    color: #0F1111;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.emoji {
    display: inline-block;
    animation: bounce 2s infinite;
}

.selection-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.prize-text {
    background-color: #f0fdf4;
    /* Light Green Bg */
    border: 2px dashed #22c55e;
    /* Green Dashed Border */
    color: #15803d;
    /* Dark Green Text */
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0;
}

.instructions-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0F1111;
}

.instructions-text-small {
    font-size: 1rem;
    color: #565959;
    margin-bottom: 2rem;
}

.start-button {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
    font-size: 1.2rem;
    padding: 16px 20px;
    border-radius: 8px;
    background: #e77600;
    /* Deep Amazon Orange */
    color: #000;
    /* Black text */
    border: 1px solid #e77600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: pulse-btn 2s infinite;
    font-weight: 700;
}

.start-button:hover {
    background: #ce6900;
    border-color: #ce6900;
    cursor: pointer;
}

@keyframes pulse-btn {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 118, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(231, 118, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 118, 0, 0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsividade */
@media (max-width: 600px) {
    .etapa1-content {
        margin: 20px 15px;
        padding: 30px 20px;
    }

    .congrats-text {
        font-size: 1.8rem;
    }
}