﻿@media (min-width: 900px) {
    /*//////////////////////////////////////////////////////////////////////////////////*/
    /*////// DEFINICIÒN DE SECCIONES PARA EL SISTEMA//////////////////*/
    /*//////////////////////////////////////////////////////////////////////////////////*/

    .Seccion_Modulo {
        background-color: var(--color-Principal);
        color: #ffffff;
        width: fit-content;
        display: inline-block;
        box-shadow: calc(20px * 0.7) 0 0 var(--color-Principal), calc(-20px * 0.7) 0 0 var(--color-Principal); /* Extiende la barra verde a ambos lados */
        box-decoration-break: clone;
        line-height: calc(2.6rem * 0.7); /* 1.82rem */
        font-family: Helvetica;
        font-size: calc(28px * 0.7); /* 19.6px */
        font-weight: bold;
        margin-left: calc(1rem * 0.7); /* 0.7rem */
    }

    .Subseccion_Modulo_Primer_Nivel {
        position: relative;
        width: calc(40% * 0.7); /* 28% */
        font-weight: bold;
        background-color: white;
        color: black;
        font-size: calc(22px * 0.7); /* 15.4px */
        padding: calc(10px * 0.7) calc(20px * 0.7); /* 7px 14px */
        box-sizing: border-box;
        margin: 0; /* Ensures there is no default margin on the paragraph */
        font-family: Helvetica, Arial, sans-serif; /* Using Helvetica as the primary font */
    }

        .Subseccion_Modulo_Primer_Nivel::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: calc(5px * 0.7); /* 3.5px */
            background-color: var(--color-Principal);
        }

    .Subseccion_Modulo_Segundo_Nivel {
        position: relative;
        width: max-content; /* Adjust the block width to the content */
        max-width: 100%; /* Ensure it does not exceed the screen width */
        font-weight: bold;
        background-color: white;
        color: black;
        font-size: calc(16px * 0.7); /* 11.2px */
        padding: calc(10px * 0.7) calc(20px * 0.7); /* 7px 14px */
        box-sizing: border-box;
        margin: 0; /* Ensures there is no default margin on the paragraph */
        font-family: Helvetica, Arial, sans-serif; /* Using Helvetica as the primary font */
    }

        .Subseccion_Modulo_Segundo_Nivel::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: calc((100% + 20px) * 0.7); /* Ajusta el ancho más 20px al 70% */
            height: calc(5px * 0.7); /* 3.5px */
            background-color: var(--color-Principal);
        }
}
