/* ================================================
   CONTENEDOR PRINCIPAL
   ================================================ */

.digitalizacion-container {
    background: linear-gradient(135deg, #0f2847 0%, #1a3a52 100%);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.digitalizacion-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

/* ================================================
   BADGE NOM-151
   ================================================ */

.nom-badge-container {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.nom-badge {
    width: 240px;
    height: 240px;
    object-fit: contain;
    display: block;
}

/* ================================================
   SECCIÓN DE CONTENIDO
   ================================================ */

.content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 10px;
}

.main-description {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.6;
}

.process-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.process-text strong {
    color: #fff;
    font-weight: 600;
}

.tagline {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

/* ================================================
   CONTENEDOR DE TARJETAS
   ================================================ */

.cards-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
}

/* ================================================
   TARJETAS DE INFORMACIÓN
   ================================================ */

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    /* cursor: pointer; */
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3);
}

.card-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #003d82;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* ================================================
   MEDIA QUERIES - RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1024px) {
    .digitalizacion-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nom-badge-container {
        margin-bottom: 20px;
    }

    .content-section {
        align-items: center;
        text-align: center;
    }

    .main-title {
        font-size: 1.6rem;
    }

    .cards-container {
        width: 100%;
        max-width: 500px;
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .digitalizacion-container {
        padding: 40px 20px;
    }

    .nom-badge {
        width: 160px;
        height: 160px;
    }

    .main-title {
        font-size: 1.4rem;
    }

    .main-description {
        font-size: 1rem;
    }

    .process-text {
        font-size: 0.9rem;
    }

    .info-card {
        padding: 20px;
    }

    .card-title {
        font-size: 0.95rem;
    }

    .card-text {
        font-size: 0.85rem;
    }

    .cards-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .digitalizacion-container {
        padding: 30px 15px;
    }

    .nom-badge {
        width: 140px;
        height: 140px;
    }

    .main-title {
        font-size: 1.2rem;
    }

    .main-description {
        font-size: 0.95rem;
    }

    .process-text {
        font-size: 0.85rem;
    }

    .tagline {
        font-size: 0.85rem;
    }

    .info-card {
        padding: 15px;
        gap: 15px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .card-text {
        font-size: 0.8rem;
    }

    .cards-container {
        flex-direction: column;
    }
}

/* ================================================
   PRINT STYLES
   ================================================ */

@media print {
    .digitalizacion-container {
        background: #fff;
        padding: 20px;
    }

    .digitalizacion-wrapper {
        gap: 40px;
    }

    .nom-circle {
        border-color: #333;
    }

    .info-card {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        page-break-inside: avoid;
    }

    .info-card:hover {
        transform: none;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
}

