/* ---------------------------------------------------- */
/* VALUES */
/* ---------------------------------------------------- */

.values {
    width: 100%;
    height: auto;
    min-height: 40rem;
    display: flex;
}

.value {
    width: 50%;
    height: auto;
    padding: clamp(1.5rem, 4vw, 6rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ---------------------------------------------------- */
/* SERVICES */
/* ---------------------------------------------------- */

.services {
    width: 100%;
    height: auto;
    padding-top: clamp(4rem, 6vw, 8rem);
    padding-bottom: clamp(4rem, 6vw, 8rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(/assets/img/bgcurve.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.servicesTitle {
    width: 100%;
    text-align: center;
    font-family: var(--Main);
    color: var(--Rosa);
    font-size: clamp(2.2rem, 3.5vw, 5rem);
    margin-bottom: 1rem;
}

.serviceContainer {
    width: 90%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: clamp(1rem, 2.5vw, 3rem);
    gap: clamp(0.8rem, 1.5vw, 2.5rem);
}

.serviceElement {
    width: 100%;
    height: clamp(7rem, 6vw, 9rem);
    background-color: var(--Rosa);
    border-radius: 25px;
    display: flex;
    overflow: hidden;
    gap: 0;
}

.serviceImg {
    width: 28%;
    height: 100%;
    border-radius: 20px;
    background-color: var(--Turquesa);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.serviceImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.serviceContent {
    width: 72%;
    height: 100%;
    font-family: var(--Sec);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    font-size: clamp(1.2rem, 1.1vw, 1.7rem);
    padding: 0 1.5rem;
}

.serviceContent p {
    margin: 0;
    line-height: 1.4;
}

/* ---------------------------------------------------- */
/* STAFF */
/* ---------------------------------------------------- */

.staff {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 3.5vw, 4rem);
    padding: clamp(3rem, 6vw, 8rem) clamp(1.5rem, 8vw, 10rem);
}

.staffTitle {
    width: 100%;
    text-align: center;
    font-family: var(--Main);
    color: var(--Rosa);
    font-size: clamp(2.2rem, 3.5vw, 5rem);
}

.staffImg {
    width: 70%;
    max-width: 700px;
    display: flex;
    justify-content: center;
}

.staffImg img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ---------------------------------------------------- */
/* INSTALATION */
/* ---------------------------------------------------- */

.instalation {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-image: url(/assets/img/bgcurve.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: clamp(4rem, 6vw, 8rem);
}

.instalationTitle {
    text-align: center;
    font-family: var(--Main);
    color: var(--Rosa);
    font-size: clamp(2.2rem, 3.5vw, 5rem);
    padding-top: clamp(3.5rem, 5vw, 6rem);
    margin-bottom: 1rem;
}

.instalationContent {
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.instalationIMG {
    width: 40%;
    padding: clamp(1.5rem, 2.5vw, 3rem) clamp(1rem, 1.5vw, 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.instalationIMG img {
    width: 80%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.instalationHolder {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 2vw, 3rem);
    padding: clamp(1.5rem, 2.5vw, 3rem) clamp(2rem, 4vw, 7rem) clamp(1.5rem, 2.5vw, 3rem) clamp(1rem, 1.5vw, 2rem);
}

.instalationIcon {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    font-size: clamp(1.2rem, 1.3vw, 1.9rem);
    font-family: var(--Sec);
    color: grey;
}

.instalationIcon img {
    width: clamp(3.5rem, 4vw, 6rem);
    min-width: clamp(3.5rem, 4vw, 6rem);
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.instalationIcon p {
    line-height: 1.7;
    margin: 0;
}

.instalationBtnBottom {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

.instalationBtnBottom a {
    display: flex;
    align-items: center;
}

.instalationBtnBottom a img {
    height: clamp(5rem, 5.5vw, 8rem);
    width: auto !important;
    object-fit: contain;
}

/* =====================================================
   TABLET — max 1024px
   ===================================================== */
@media (max-width: 1024px) {

    .values {
        flex-direction: column;
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .value { width: 100%; }

    .serviceContainer {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 1.5rem;
    }

    .staff { padding: 5rem 3rem; }

    .staffImg { width: 85%; max-width: 600px; }

    .instalationContent {
        flex-direction: column;
        padding: 1rem 0;
    }

    .instalationIMG {
        width: 100%;
        padding: 2rem 3rem;
    }

    .instalationIMG img {
        width: 60%;
        max-width: 320px;
    }

    .instalationHolder {
        width: 100%;
        padding: 1rem 3rem 2rem;
    }
}

/* =====================================================
   MOBILE L — 480px – 767px
   ===================================================== */
@media (max-width: 767px) {

    .values { padding: 1rem; }

    .serviceContainer {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem 1rem;
    }

    .serviceElement { border-radius: 18px; }

    .serviceImg { border-radius: 14px; padding: 1rem; }

    .staff { padding: 4rem 2rem; }

    .staffImg { width: 90%; }

    .instalationIMG img { width: 70%; }

    .instalationHolder { padding: 1rem 2rem 2rem; }
}

/* =====================================================
   MOBILE S — max 479px
   ===================================================== */
@media (max-width: 479px) {

    .serviceContainer {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .staff { padding: 3rem 1.5rem; }

    .staffImg { width: 100%; max-width: 100%; }

    .instalationIMG img { width: 80%; }

    .instalationHolder { padding: 1rem 1.5rem 1.5rem; }

    .instalationIcon { gap: 1rem; }
}