/* ========================
   SUPPORT PAGE STYLES
======================== */


.help-center-card {
    background: linear-gradient(135deg, rgba(33, 153, 182, 0.22), rgba(91, 56, 149, 0.2));
    border: 1px solid rgba(190, 255, 230, 0.28);
    border-radius: 16px;
    padding: 32px 28px;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(10, 16, 32, 0.24);
}

.help-center-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.help-center-card h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    margin-bottom: 12px;
}

.help-center-card .lead {
    color: #d6f7ff;
}

.support-text {
    color: #f5f5f5;
}

.accordion .card-header {
    background-color: transparent;
    border: none;
    padding: 0;
}

.accordion .btn {
    color: #ffffff;
    font-size: 1.1rem;
    background: none;
    border: none;
    padding: 20px;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion .btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.accordion .card {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(41, 40, 49, 0.034);
    margin-bottom: 15px;
}

.accordion .collapse:not(.show) {
    display: none;
}

.contact-methods {
    margin-top: 40px;
    display: flex;
    justify-content: space-between; 
    align-items: stretch; 
    gap: 20px; 
    width: 100%; 
    flex-wrap: nowrap; 
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: #ffffff;
    flex: 1 1 0; 
    max-width: calc(25% - 20px); 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: auto; 
    box-sizing: border-box; 
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 20px rgba(161, 247, 228, 0.355);
}

.contact-card i {
    font-size: 3rem;
    background: linear-gradient(30deg, #bbf5ffc7, #beffe6); /* Degradado de azul a verde esmeralda */
    -webkit-background-clip: text; /* Recorta el texto al fondo */
    -webkit-text-fill-color: transparent; /* Hace el texto transparente para mostrar el fondo */
    margin-bottom: 20px;
}


.contact-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.contact-card a.btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 5px;
    background-color: #007bff;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.contact-card a.btn-primary:hover {
    background-color: #0056b3;
}

@media (max-width: 991px) {
    .contact-methods {
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px;
    }

    .contact-card {
        flex: 1 1 calc(50% - 20px); 
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .contact-methods {
        flex-wrap: wrap; 
        justify-content: center; 
    }

    .contact-card {
        flex: 1 1 100%; 
        max-width: 100%;
    }
}
