* {
    box-sizing: border-box;
}

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

body {
    background-color: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.construction-landing {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    padding: 40px 24px;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.62),
            rgba(0, 0, 0, 0.72)
        ),
        url("/assets/images/fondo-bolera.jpeg");

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.construction-content {
    width: 100%;
    max-width: 760px;
}

.construction-logo {
    display: block;
    width: 220px;
    max-width: 70%;
    height: auto;

    margin: 0 auto 56px;
}

.construction-title {
    margin: 0 0 28px;

    font-size: clamp(42px, 8vw, 86px);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.construction-text {
    margin: 0 0 18px;

    font-size: clamp(18px, 2.5vw, 28px);
    line-height: 1.4;
}

.construction-highlight {
    margin: 0 0 42px;

    color: #f28c28;

    font-size: clamp(20px, 2.8vw, 30px);
    font-weight: 800;
    line-height: 1.4;
}

.construction-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 42px;

    border-radius: 60px;

    background-color: #25d366;
    color: #fff;

    font-size: clamp(18px, 2.4vw, 26px);
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.construction-whatsapp:hover,
.construction-whatsapp:focus {
    background-color: #1ebe5d;
    color: #fff;
    transform: scale(1.04);
}

.construction-whatsapp:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
}

.construction-note {
    margin: 28px 0 0;

    font-size: 17px;
    line-height: 1.5;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .construction-landing {
        align-items: flex-start;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .construction-logo {
        margin-bottom: 38px;
    }

    .construction-whatsapp {
        width: 100%;
        max-width: 390px;
        padding: 16px 24px;
    }

    .construction-note {
        font-size: 15px;
    }
}