/* ==========================================================================
   Adhequim Cobertura Chile Addon Stylesheet
   ========================================================================== */

/* Wrapper Principal */
.adhequim-cc-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    box-sizing: border-box;
}

/* Columna Izquierda: Información */
.adhequim-cc-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.adhequim-cc-title {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0 0 20px 0;
    text-wrap: balance;
}

.adhequim-cc-desc {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.625;
    color: #64748b;
    margin: 0 0 36px 0;
    text-wrap: balance;
}

/* Cuadrícula de 4 Beneficios (2x2) */
.adhequim-cc-feats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    width: 100%;
    box-sizing: border-box;
}

.adhequim-cc-feat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s ease;
}

.adhequim-cc-feat-item:hover {
    transform: translateX(4px);
}

/* Circulo del Icono */
.adhequim-cc-feat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    flex-shrink: 0;
}

.adhequim-cc-feat-icon i,
.adhequim-cc-feat-icon svg {
    color: #2563eb;
    fill: #2563eb;
    font-size: 12px;
    width: 1em;
    height: 1em;
}

.adhequim-cc-feat-item span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1e1b4b;
    line-height: 1.1;
}

/* ==========================================================================
   Columna Derecha: Tarjeta de Medios (Imagen o Video)
   ========================================================================== */

.adhequim-cc-media-col {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.adhequim-cc-media-card {
    background-color: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/3;
    overflow: hidden; /* Cortar esquinas */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

/* Efecto hover en el reproductor multimedia */
.adhequim-cc-media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

/* Imagen Ajustada */
.adhequim-cc-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Envoltura de Videos iframe/video */
.adhequim-cc-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.adhequim-cc-video-wrapper iframe,
.adhequim-cc-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
}

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

@media (max-width: 1024px) {
    /* Pasamos a 1 columna vertical */
    .adhequim-cc-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .adhequim-cc-info-col {
        align-items: stretch;
    }
    
    /* El reproductor se ensancha a aspecto 16:9 cinematográfico */
    .adhequim-cc-media-card {
        max-width: 100%;
        aspect-ratio: 16/9;
    }
    
    .adhequim-cc-title {
        font-size: 32px;
        text-align: center;
    }

    .adhequim-cc-desc {
        text-align: center;
    }

    .adhequim-cc-feat-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .adhequim-cc-feats-grid {
        gap: 16px 20px;
    }
}

@media (max-width: 480px) {
    /* Apilar beneficios uno a uno en móviles pequeños */
    .adhequim-cc-feats-grid {
        grid-template-columns: 1fr;
    }
    
    .adhequim-cc-wrapper {
        padding: 50px 16px;
    }
    
    .adhequim-cc-title {
        font-size: 28px;
    }
    
    .adhequim-cc-feat-item {
        justify-content: flex-start;
    }
}
