/* Container responsive */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* ============================= */
/* CTA PRINCIPAL */
/* ============================= */

.btn-cta {
    padding: 16px 32px;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    cursor: pointer;

    background: linear-gradient(to right, #fbbf24, #f97316);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3),
                0 10px 10px -5px rgba(0,0,0,0.2);

    transition: all 0.3s ease;
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-cta:hover {
    background: linear-gradient(to right, #f59e0b, #ea580c);
    box-shadow: 0 20px 35px rgba(251,191,36,0.3);
    transform: translateY(-2px);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(251, 191, 36, 0.6);
    }
}

/* ============================= */
/* BOUTON SECONDAIRE */
/* ============================= */

.btn-secondary {
    padding: 16px 32px;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    border-radius: 20px;
    cursor: pointer;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Icon */
.btn-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}