/* STYLE */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition:0.5s ease-in-out;
}

body {
    font-family: "GT America", sans-serif;
    background: url(../images/lp-background.png) no-repeat center top;
    color: #000;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

/* Layout principal */
body>div {
    max-width: 1084px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 15px 0 420px;
    position: relative;
}

/* Logo */
.logo {
    position: absolute;
    right: 15px;
    top: 22px;
}

/* Headings */
h1, h2, h3 {
    margin: 0;
    font-family: "GT America", sans-serif;
    font-style: normal;
    line-height: normal;
    color: #FFF;
}

h1 {
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 16px;
}

h1 strong {
    display: block;
    color: #FF8B25;
    font-size: 60px;
    font-weight: 700;
}

h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 42px;
}

h3 {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.6px;
    max-width: 366px;
}

/* Parágrafo */
p {
    color: #FFF;
    font-family: "GT America", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.6px;
    margin-bottom: 42px;
}

/* Link do WhatsApp */
a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 16.193px;
    padding: 16.193px 29.58px;
    height: 71px;
    border-radius: 161.932px;
    border: 5px solid #8F9192;
    background: linear-gradient(180deg, #3BB34B 37.49%, #00AB34 44.33%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 120%;
    text-decoration: none;
    transition: 0.2s;
    margin-bottom: 8px;
}

a:hover {
    filter: brightness(1.1);
}

a img {
    display: block;
}

/* Imagens específicas */
.gas,
.person {
    position: absolute;
    pointer-events: none;
}

.gas {
    left: -70px;
    top: 30px;
}

.person {
    right: -170px;
    top: 296px;
}

/* Mensagens responsivas */
.message-mobile {
    display: block;
    margin: 26px auto 0;
}

.message-desktop {
    display: none;
    margin-top: 69px;
}

/* RESPONSIVO */
@media (max-width: 767px) {
    body {
        background: url(../images/lp-background-mobile.png) no-repeat center top;
        background-size: cover;
    }

    body>div {
        padding: 127px 15px 0;
        height: 1092px;
        overflow: hidden;
    }

    .logo {
        right: 50%;
        top: 33px;
        transform: translateX(50%) !important;
        width: 200px;
    }

    h1, h1 strong {
        text-align: center;
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 16px;
    }

    h3 {
        font-size: 20px;
        letter-spacing: 0.52px;
        text-align: center;
        max-width:100%;
    }

    p {
        text-align: center;
        font-size: 24px;
        letter-spacing: 0.52px;
    }

    a {
        display: flex;
        width: 292px;
        height: 64px;
        padding: 14.644px 20.932px;
        gap: 14.644px;
        border-radius: 146.438px;
        border: 4.522px solid #8F9192;
        box-shadow: 0 1.809px 7.235px rgba(0, 0, 0, 0.15);
        font-size: 27.13px;
        margin: 0 auto 12px;
    }

    a img {
        width: 32px;
    }

    .gas {
        height: 375px;
        left: -30px;
        bottom: 40px;
        top: auto;
    }

    .person {
        height: 375px;
        right: -60px;
        bottom: 0;
        top: auto;
    }
}

@media (min-width: 768px) {
    .message-mobile {
        display: none;
    }

    .message-desktop {
        display: block;
    }
}