/* ============================================
   CECIM - Inicio / Sección Presentación
   ============================================ */

.presentacion-section {
    padding: 70px 0;
    background: var(--bg-white);
}

.presentacion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.presentacion-texto h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.presentacion-texto .subtitulo-dorado {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.presentacion-texto p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.presentacion-texto .highlight {
    font-weight: 700;
    color: var(--primary-blue);
}

.presentacion-badges {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-teal);
}

.badge-item i {
    color: var(--accent-teal);
    font-size: 1.3rem;
}

.badge-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-blue);
}

.presentacion-imagen {
    position: relative;
}

.presentacion-imagen img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.presentacion-imagen .decoracion {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--accent-teal);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.2;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .presentacion-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .presentacion-texto h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .presentacion-texto .subtitulo-dorado {
        text-align: center;
        font-size: 1.1rem;
    }

    .presentacion-texto p {
        text-align: center;
    }

    .presentacion-badges {
        justify-content: center;
    }

    .presentacion-imagen .decoracion {
        display: none;
    }
}
