/* ========================================================
   SECCIÓN FIDELIZACIÓN (Rediseño Grid y Tarjetas)
   ======================================================== */

/* Grid Layout */



.fidelizacion_section .fidelizacion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columnas */
    gap: 40px;
    /* Espacio entre items */
}

/* Items internos (Antes tarjetas, ahora transparentes) */
.fidelizacion_section .fidelizacion-card {
    background-color: transparent;
    /* Sin fondo propio */
    box-shadow: none;
    /* Sin sombra propia */
    border: none;
    /* Sin borde propio */
    height: 100%;
}

/* Remover hover transform de items individuales si se desea que estén fijos, 
   o mantenerlo sutil. Según referencia parece estático. 
   Vamos a mantener una interacción sutil en la imagen/botón mejor. */
.fidelizacion_section .fidelizacion-card:hover {
    transform: none;
    /* Quitar movimiento de tarjeta entera */
}

.fidelizacion_section .card-inner {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

/* Imágenes (Cuadradas/Rectangulares con bordes redondeados) */
.fidelizacion_section .card-image {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    /* Asegurar que la imagen respete el borde */
}

.fidelizacion_section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: transparent;
}

/* Contenido */
.fidelizacion_section .card-content {
    text-align: center;
    flex-grow: 1;
    /* Empujar footer hacia abajo */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.fidelizacion_section .card-content h3 {
    color: #009dae;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
}

.fidelizacion_section .card-content p {
    color: #009eb0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    /* Centrar texto como en referencia */
}

/* Botón Ver Más (Cápsula) */
.fidelizacion_section .ver-mas-btn {
    border-radius: 50px;
    /* Forma de cápsula */
    padding: 10px 30px;
    border: 2px solid #00c0d3;
    color: #00c0d3;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    margin-top: auto;
    /* Asegurar que quede abajo */
}

.fidelizacion_section .ver-mas-btn:hover {
    background-color: #00c0d3;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 192, 211, 0.4);
}

/* Responsividad */
@media (max-width: 991px) {
    .fidelizacion_section .fidelizacion-grid {
        grid-template-columns: repeat(1, 1fr);
        /* 1 Columna en tablets/móviles */
        gap: 20px;
    }

    .fidelizacion_section .card-image img {
        max-width: 100%;
        /* Imagen full width en móvil si necesario */
    }
}

/* Helper for CONTAIN images (charts, dashboards) */
.fidelizacion_section .card-image img.img-contain {
    object-fit: contain !important;
    background-color: transparent;
    height: 450px !important;
    object-position: center top !important;
}