/* ========== HEADER IMPROVEMENTS ========== */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    gap: 15px;
}

.back-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(-3px);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo-img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hamburger-menu {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-self: end;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.hamburger-bar {
    width: 22px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========== ENSURE PULSING BORDER ON BOLÃƒO BUTTON ========== */
.bolao-btn-wrapper {
    position: relative;
    margin-bottom: 10px;
    padding: 3px;
    border-radius: 33px;
    background: linear-gradient(135deg, #FF9800, #FFB300, #FF9800);
    background-size: 200% 200%;
    animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {

    0%,
    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 0 8px rgba(255, 152, 0, 0);
    }
}

.btn-bolao {
    width: 100%;
    padding: 18px 60px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    border: none;
    color: #333;
}

.btn-bolao:hover {
    background: #f8fff8;
    transform: scale(1.02);
}

/* ========== JÁ PAGUEI BUTTON ========== */
.btn-check-payment {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #43A047 0%, #66BB6A 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(67, 160, 71, 0.3);
}

.btn-check-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(67, 160, 71, 0.4);
    background: linear-gradient(135deg, #388E3C 0%, #43A047 100%);
}

.btn-check-payment:active {
    transform: translateY(0);
}

.btn-check-payment:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.checking-payment {
    opacity: 0.7;
    pointer-events: none;
}
