/* ============================================================
   SYSTEM SECTION
   ============================================================ */

.system {
    width: 100%;
    background-color: #2D4754;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.systemTitle {
    width: 100%;
    text-align: center;
    padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 2rem);
    font-size: clamp(1.3rem, 3vw, 2.5rem);
    font-family: 'campBook';
    color: aliceblue;
    line-height: 1.3;
}

.systemContent {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.sysCtnBulletPoints {
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 7rem);
    height: auto;
    padding: 2rem 3rem 4rem;
}

.sysCtnImg {
    width: 40%;
    height: auto;
    padding: clamp(2rem, 4vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sysCtnImg img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.bllPoint {
    display: flex;
    gap: 1.25rem;
    font-family: 'monse';
    color: aliceblue;
    align-items: center;
}

.bllImg {
    width: clamp(3rem, 4vw, 5rem);
    height: clamp(3rem, 4vw, 5rem);
    flex-shrink: 0;
}

.bllImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bllContent {
    max-width: 42rem;
    display: flex;
    align-items: center;
    font-size: clamp(1rem, 1.8vw, 1.9rem);
    line-height: 1.4;
}

/* ============================================================
   HERO SOLUTIONS
   ============================================================ */

.solutions {
    width: 100%;
    height: auto;
    background-color: #ACB9C2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.solutions > .solText {
    width: 45%;
}

.solutions > .solImg {
    width: 45%;
}

.solText {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #3C5666;
    text-align: center;
    padding: clamp(4rem, 8vw, 9rem) clamp(1rem, 2vw, 2rem);
}

#sala {
    font-family: 'bebasNBold';
    font-size: clamp(5rem, 11vw, 15rem);
    line-height: 1;
}

#hos {
    font-family: 'campLight';
}

.solMainText {
    font-family: 'campLight';
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

.solSubText {
    padding: clamp(1.5rem, 3vw, 3rem);
    font-family: 'campBook';
    font-size: clamp(1rem, 1.8vw, 2.1rem);
    line-height: 1.5;
}

.solImg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 5vw, 6rem) clamp(1rem, 2vw, 2rem);
}

.solImg img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#unicInfo {
    width: 100%;
    height: auto;
    padding-top: 1rem;
}

/* ============================================================
   SOLUTION SECTION
   ============================================================ */

.solution {
    width: 100%;
    background-color: #ACB9C2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solTitleBullet {
    width: 100%;
    text-align: center;
    font-family: 'campLight';
    font-size: clamp(1.4rem, 2.5vw, 2.5rem);
    padding: clamp(4rem, 7vw, 8rem) clamp(1rem, 2vw, 1rem);
    color: #3C5666;
    line-height: 1.3;
}

.solContent {
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 4rem;
}

.solContent > .solText,
.solContent > .solImg {
    width: 48%;
    flex: 1 1 300px;
}

.solContent .solImg img {
    max-width: 650px;
    width: 100%;
    height: auto;
}

/* ============================================================
   BREAKPOINTS
   ============================================================ */

/* --- LAPTOP GRANDE (≤ 1400px) --- */
@media (max-width: 1400px) {
    #sala {
        font-size: clamp(5rem, 10vw, 12rem);
    }

    .sysCtnBulletPoints {
        gap: clamp(2rem, 4vw, 5rem);
    }
}

/* --- LAPTOP / TABLET GRANDE (≤ 1200px) --- */
@media (max-width: 1200px) {
    #sala {
        font-size: clamp(4.5rem, 9vw, 10rem);
    }

    .bllContent {
        font-size: clamp(1rem, 1.6vw, 1.6rem);
    }

    .solSubText {
        font-size: clamp(0.95rem, 1.6vw, 1.8rem);
    }
}

/* --- TABLET (≤ 1024px) --- */
@media (max-width: 1024px) {
    .solutions > .solText,
    .solutions > .solImg {
        width: 50%;
    }

    .sysCtnBulletPoints {
        width: 55%;
        padding: 2rem;
        gap: 3rem;
    }

    .sysCtnImg {
        width: 42%;
        padding: 2rem;
    }

    .solContent > .solText,
    .solContent > .solImg {
        width: 48%;
    }
}

/* --- TABLET PEQUEÑA (≤ 900px) --- */
@media (max-width: 900px) {
    .solutions {
        flex-direction: column;
        align-items: center;
    }

    .solutions > .solText,
    .solutions > .solImg {
        width: 90%;
        max-width: 600px;
    }

    .solText {
        padding: 3rem 1.5rem 1.5rem;
    }

    .solImg {
        padding: 1.5rem 1.5rem 3rem;
    }

    #sala {
        font-size: clamp(4rem, 15vw, 9rem);
    }

    .systemContent {
        flex-direction: column;
        align-items: center;
    }

    .sysCtnBulletPoints {
        width: 90%;
        padding: 3rem 2rem 1rem;
        gap: 3rem;
    }

    .sysCtnImg {
        width: 70%;
        padding: 2rem;
    }

    .solContent {
        flex-direction: column;
        align-items: center;
        width: 90%;
    }

    .solContent > .solText,
    .solContent > .solImg {
        width: 100%;
        flex: none;
    }
}

/* --- MÓVIL GRANDE (≤ 768px) --- */
@media (max-width: 768px) {
    .systemTitle {
        padding: 3rem 1.5rem;
        font-size: clamp(1.2rem, 4.5vw, 1.8rem);
    }

    .solutions > .solText,
    .solutions > .solImg {
        width: 95%;
    }

    #sala {
        font-size: clamp(3.5rem, 16vw, 7rem);
    }

    .solMainText {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }

    .solSubText {
        font-size: clamp(0.9rem, 3.5vw, 1.3rem);
        padding: 1.5rem 1rem;
    }

    .solTitleBullet {
        padding: 3rem 1.5rem;
        font-size: clamp(1.2rem, 4.5vw, 1.8rem);
    }

    .sysCtnImg {
        width: 80%;
    }

    .bllContent {
        font-size: clamp(0.9rem, 3.5vw, 1.3rem);
    }

    .bllImg {
        width: 2.8rem;
        height: 2.8rem;
    }
}

/* --- MÓVIL (≤ 480px) --- */
@media (max-width: 480px) {
    .systemTitle {
        font-size: clamp(1rem, 5vw, 1.4rem);
        padding: 2rem 1rem;
    }

    #sala {
        font-size: clamp(3rem, 18vw, 5.5rem);
    }

    .solMainText {
        font-size: 1.3rem;
    }

    .solSubText {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .solTitleBullet {
        font-size: 1.2rem;
        padding: 2.5rem 1rem;
    }

    .sysCtnBulletPoints {
        width: 95%;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .sysCtnImg {
        width: 90%;
        padding: 1.5rem;
    }

    .bllPoint {
        gap: 1rem;
    }

    .bllImg {
        width: 2.5rem;
        height: 2.5rem;
    }

    .bllContent {
        font-size: 0.9rem;
    }

    .solutions > .solText,
    .solutions > .solImg {
        width: 100%;
    }

    .solText {
        padding: 2.5rem 1rem 1rem;
    }

    .solImg {
        padding: 1rem 1rem 2.5rem;
    }
}

/* --- MÓVIL PEQUEÑO (≤ 360px) --- */
@media (max-width: 360px) {
    #sala {
        font-size: 3rem;
    }

    .systemTitle {
        font-size: 1rem;
    }

    .bllContent {
        font-size: 0.85rem;
    }

    .solSubText {
        font-size: 0.85rem;
    }
}

/* --- LANDSCAPE MÓVIL (altura < 500px) --- */
@media (max-height: 500px) and (orientation: landscape) {
    .systemContent {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .sysCtnBulletPoints {
        width: 55%;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .sysCtnImg {
        width: 40%;
        padding: 1.5rem;
    }

    .solutions {
        flex-direction: row;
    }

    .solutions > .solText,
    .solutions > .solImg {
        width: 50%;
    }
}

/* --- PANTALLAS GRANDES (≥ 1600px) --- */
@media (min-width: 1600px) {
    #sala {
        font-size: clamp(12rem, 13vw, 17rem);
    }

    .bllContent {
        font-size: 2rem;
    }

    .solSubText {
        font-size: 2.2rem;
    }

    .systemTitle {
        font-size: 3rem;
    }
}

/* --- 4K / ULTRA-WIDE (≥ 2200px) --- */
@media (min-width: 2200px) {
    #sala {
        font-size: 18rem;
    }

    .bllContent {
        font-size: 2.4rem;
    }

    .solSubText {
        font-size: 2.5rem;
    }

    .systemTitle {
        font-size: 3.5rem;
    }
}