* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #064d3d;
}

.construccion {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    background-image:
        linear-gradient(rgba(0, 77, 58, 0.20), rgba(0, 77, 58, 0.20)),
        url("../img/login-fondo.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.construccion::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 68, 52, 0.30) 0%,
        rgba(0, 68, 52, 0.10) 55%,
        rgba(0, 68, 52, 0.15) 100%
    );
}

.construccion__contenido {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100% - 40px));
    padding: 50px 20px;
    text-align: center;
}

.construccion__header {
    margin-bottom: 52px;
}

.construccion__logo {
    display: block;
    width: min(520px, 85%);
    height: auto;
    margin: 0 auto;
}

.construccion__mensaje {
    text-align: center;
}

.construccion__pre-titulo {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 14px;
}

.construccion__titulo {
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
}

.construccion__descripcion {
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 400;
}

.servicios {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 42px;
}

.servicio {
    width: 180px;
    text-align: center;
}

.servicio__icono {
    width: 62px;
    height: 62px;
    margin: 0 auto 12px;
}

.servicio__icono svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.servicio__icono--columna {
    width: 52px;
}

.servicio__nombre {
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: 1.5px;
}

.servicios__separador {
    display: block;
    width: 1px;
    height: 64px;
    margin: 0 18px;
    background: rgba(255, 255, 255, 0.55);
}

.construccion__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 65px;
}

.construccion__footer p {
    white-space: nowrap;
    font-size: 13px;
    letter-spacing: 5px;
}

.construccion__linea {
    display: block;
    width: 58px;
    height: 1px;
    background: #ffffff;
}

@media (max-width: 768px) {
    .construccion {
        min-height: 100svh;
        background-position: 60% center;
    }

    .construccion__contenido {
        width: min(560px, calc(100% - 30px));
        padding: 35px 10px;
    }

    .construccion__header {
        margin-bottom: 38px;
    }

    .construccion__logo {
        width: min(400px, 90%);
    }

    .construccion__pre-titulo {
        font-size: 16px;
        letter-spacing: 9px;
    }

    .construccion__titulo {
        font-size: clamp(38px, 11vw, 58px);
        letter-spacing: -1px;
    }

    .construccion__descripcion {
        margin-top: 22px;
        font-size: 16px;
    }

    .servicios {
        margin-top: 35px;
    }

    .servicio {
        width: 130px;
    }

    .servicio__icono {
        width: 50px;
        height: 50px;
    }

    .servicio__icono--columna {
        width: 42px;
    }

    .servicio__nombre {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .servicios__separador {
        height: 52px;
        margin: 0 8px;
    }

    .construccion__footer {
        margin-top: 50px;
        gap: 14px;
    }

    .construccion__footer p {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .construccion__linea {
        width: 35px;
    }
}

@media (max-width: 520px) {
    .construccion {
        background-position: 64% center;
    }

    .construccion__contenido {
        width: 100%;
        padding: 30px 20px;
    }

    .construccion__header {
        margin-bottom: 32px;
    }

    .construccion__logo {
        width: 90%;
    }

    .construccion__pre-titulo {
        font-size: 14px;
        letter-spacing: 7px;
    }

    .construccion__titulo {
        font-size: clamp(30px, 9.5vw, 42px);
        letter-spacing: -1px;
        white-space: nowrap;
    }

    .construccion__descripcion {
        font-size: 15px;
    }

    .construccion__descripcion br {
        display: none;
    }

    .servicios {
        gap: 8px;
    }

    .servicio {
        flex: 1;
        width: auto;
    }

    .servicios__separador {
        margin: 0 2px;
    }

    .servicio__nombre {
        font-size: 10px;
    }

    .construccion__footer {
        margin-top: 45px;
    }

    .construccion__footer p {
        white-space: normal;
        font-size: 9px;
        letter-spacing: 2px;
    }

    .construccion__linea {
        width: 25px;
        flex-shrink: 0;
    }
}