/* =========================================
   ESTILOS PREMIUM - VISTA DE SOPORTE TÉCNICO
   ========================================= */

/* Tarjeta principal con elevación suave y bordes modernos */
.card-soporte {
    border-radius: 1.25rem !important;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.06) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-soporte:hover {
    transform: translateY(-4px);
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.09) !important;
}

/* Contenedor circular con icono llamativo */
.icono-soporte-contenedor {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1) 0%, rgba(25, 135, 84, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(25, 135, 84, 0.15);
}

.icono-soporte-contenedor i {
    font-size: 2.5rem !important;
}

/* Mejora tipográfica para lectura fluida */
.line-height-relaxed {
    line-height: 1.6;
}

.tracking-wider {
    letter-spacing: 1px;
}

/* Caja del número de WhatsApp */
.caja-contacto-whatsapp {
    background-color: #f8f9fa !important;
    border: 1px dashed rgba(25, 135, 84, 0.3) !important;
    transition: background-color 0.2s ease;
}

.caja-contacto-whatsapp:hover {
    background-color: rgba(25, 135, 84, 0.02) !important;
}

/* Efecto hover interactivo para el botón de WhatsApp */
.btn-whatsapp-efecto {
    background-color: #198754 !important;
    border-color: #198754 !important;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.btn-whatsapp-efecto:hover {
    background-color: #157347 !important;
    transform: scale(1.02);
    box-shadow: 0 0.5rem 1rem rgba(25, 135, 84, 0.25) !important;
}

/* Enlace de retorno elegante */
.enlace-volver {
    color: #198754 !important;
    transition: opacity 0.2s ease;
}

.enlace-volver:hover {
    opacity: 0.8;
    text-decoration: underline !important;
}
/* Forzar a cualquier imagen suelta a no desbordarse */
img {
    max-width: 100%;
    height: auto;
}