:root {
    --yellow: #e0bc24;
    --black: #146734;
    --white: #ffffff;
}

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

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

body {
    font-family: "Montserrat", sans-serif;
    background: var(--yellow);
    color: var(--black);
}

.construction-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 60px 20px 90px;
}

.content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* LOGO */

.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 38px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* TÍTULO */

h1 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

/* INTRO */

.intro {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 30px;
}

/* BOTÕES */

.btn {
    min-height: 58px;
    padding: 15px 30px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn i {
    font-size: 20px;
}

.btn-whatsapp {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
}

.btn-whatsapp:hover {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
    transform: translateY(-2px);
}

.store-section {
    margin-top: 55px;
}

.store-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
}

.btn-store {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-store:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* FOOTER */

footer {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* MOBILE */

@media (max-width: 576px) {

    .construction-page {
        padding: 40px 20px 80px;
    }

    .logo-placeholder {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }

    h1 {
        font-size: 31px;
        letter-spacing: -1px;
    }

    .intro {
        font-size: 15px;
    }

    .desktop-break {
        display: none;
    }

    .btn {
        width: 100%;
        max-width: 340px;
        font-size: 14px;
    }

    .store-section {
        margin-top: 45px;
    }

    footer {
        bottom: 18px;
    }
}