/* ==========================================================================
   Adhequim Proveedores Grid & Card Stylesheet
   ========================================================================== */

/* Wrapper Principal */
.adhequim-prov-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Secciones de Proveedores */
.adhequim-prov-section {
    position: relative;
    width: 100%;
}

.adhequim-prov-section-exclusive {
    margin-bottom: 60px; /* Controlado también por Elementor */
}

/* Cabecera de Secciones */
.adhequim-prov-header {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.adhequim-prov-title {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: #061d4b;
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-block;
    text-align: center;
}



/* Cuadrícula de Proveedores (Cards Grid) */
.adhequim-prov-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

/* Tarjeta Individual */
.adhequim-prov-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.05);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    overflow: hidden;
}

/* Efecto Elevación Hover */
.adhequim-prov-card:hover {
    transform: translateY(-8px); /* Controlado también por Elementor */
    box-shadow: 0 20px 40px rgba(6, 29, 75, 0.08);
    border-color: rgba(37, 99, 235, 0.15);
}

/* Contenedor y Logo del Proveedor */
.adhequim-prov-card-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.adhequim-prov-card-logo {
    display: block;
    max-width: 140px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.adhequim-prov-card:hover .adhequim-prov-card-logo {
    transform: translateY(-2px) scale(1.02);
}

/* Marca de Agua de Fondo (bg_text) */
.adhequim-prov-card-bg-text {
    display: block;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #e9f0f8;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color 0.4s ease;
}

/* Cabecera Interna de Tarjeta (Título + Badge) */
.adhequim-prov-card-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    width: 100%;
}

/* Nombre de Proveedor */
.adhequim-prov-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

/* Etiqueta Destacado (Badge) */
.adhequim-prov-card-badge {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #2563eb;
    background-color: #dbeafe;
    padding: 4px 10px;
    border-radius: 99px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    display: inline-block;
}

/* Descripción */
.adhequim-prov-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

/* Enlace (Conocer proveedor) */
.adhequim-prov-card-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto; /* Empuja el enlace siempre abajo */
    transition: color 0.3s ease;
}

.adhequim-prov-card-link-arrow {
    font-size: 16px;
    line-height: 1;
    transition: transform 0.3s ease;
}

/* Animaciones al Hover en Tarjeta */
.adhequim-prov-card:hover .adhequim-prov-card-link {
    color: #061d4b; /* Controlado también por Elementor */
}

.adhequim-prov-card:hover .adhequim-prov-card-link-arrow {
    transform: translateX(4px);
}


/* ==========================================================================
   Diseño Responsivo (Media Queries)
   ========================================================================== */

@media (max-width: 1024px) {
    .adhequim-prov-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .adhequim-prov-title {
        font-size: 28px;
    }
    
    .adhequim-prov-card {
        padding: 32px 28px;
    }
}

@media (max-width: 767px) {
    .adhequim-prov-wrapper {
        padding: 20px 10px;
    }

    .adhequim-prov-header {
        margin-bottom: 36px;
    }

    .adhequim-prov-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .adhequim-prov-title {
        font-size: 24px;
    }
    
    .adhequim-prov-card {
        padding: 28px 24px;
    }
}
