/* --- ICONO DE AYUDA FLOTANTE --- */

#help-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
    padding: 0.75rem;
    background-color: #611232; /* Usando el color principal de tu plantilla */
    color: white;
    border-radius: 9999px; /* Totalmente redondo */
    box-shadow: 0 4px 10px rgba(97, 18, 50, 0.4); /* Sombra basada en tu color */
    transition: transform 0.2s, background-color 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}
#help-button:hover {
    background-color: #4c0e27; /* Tono más oscuro al pasar el ratón */
    transform: scale(1.05);
}
#help-button ion-icon {
    font-size: 1.75rem;
}

/* --- POPUP/MODAL DE AYUDA --- */

.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Fondo semi-transparente oscuro */
    display: none; /* Oculto por defecto */
    justify-content: center;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.popup-modal.active {
    display: flex; /* Mostrar cuando la clase 'active' está presente */
}

.popup-content {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px; /* Ajustado para un ancho cómodo */
    text-align: center;
    transition: all 0.3s ease;
    transform: scale(0.95);
    opacity: 0;
}

.popup-modal.active .popup-content {
    transform: scale(1);
    opacity: 1;
}

.popup-header {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.popup-actions {
    display: flex;
    flex-direction: column; /* Botones apilados por defecto */
    gap: 1rem;
    margin-top: 1.5rem;
}

.popup-content p {
    font-size: 14px;
    color: #666;
}

.popup-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.2s, transform 0.1s, color 0.2s;
    cursor: pointer;
    text-align: center;
    border: 2px solid;
    text-decoration: none; /* Quitar subrayado del <a> */
}

.support-button {
    background-color: #611232; /* Color principal */
    color: white;
    border-color: #611232;
}
.support-button:hover {
    background-color: #4c0e27;
    border-color: #4c0e27;
    transform: translateY(-1px);
}

.guide-button {
    background-color: white;
    color: #611232; /* Color principal */
    border-color: #611232;
}
.guide-button:hover {
    background-color: #f0f4f3; /* Color de fondo sutil */
    transform: translateY(-1px);
}

.close-button {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    line-height: 1;
}
.close-button:hover {
    color: #333;
}

/* Responsivo para los botones del popup en desktop */
@media (min-width: 640px) {
    .popup-actions {
        flex-direction: row; /* Botones lado a lado */
    }
    .popup-button {
        width: 50%; /* Ocupan la mitad del ancho */
    }
}
