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

body {
    font-family: "Montserrat", Arial, sans-serif;
    background: #fff;
    overflow-x: hidden;
}

.lp-hero {
    background: #f7f7f7;
    overflow: hidden;
    padding-top: 70px;
}

.lp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.lp-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
    min-height: 650px;
}

.lp-left {
    position: relative;
    z-index: 10;
}

.lp-logo {
    width: 220px;
    display: block;
    margin-bottom: 28px;
}

.lp-title {
    font-size: 56px;
    line-height: .98;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #111;
    margin-bottom: 26px;
}

    .lp-title span {
        display: block;
        color: #e30613;
        margin-top: 8px;
    }

.lp-sub {
    font-size: 20px;
    line-height: 1.55;
    color: #2b2b2b;
    max-width: 560px;
    margin-bottom: 34px;
}

.lp-red {
    color: #e30613;
}

.lp-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.lp-cta {
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    transition: .2s ease;
}

.lp-cta-whats {
    background: #22c55e;
    box-shadow: 0 18px 35px rgba(34,197,94,.28);
}

.lp-cta-phone {
    background: #13203a;
    box-shadow: 0 18px 35px rgba(19,32,58,.25);
}

.lp-right {
    position: relative;
    height: 650px;
    z-index: 2;
}

.lp-store {
    position: absolute;
    right: 0;
    top: 0;
    width: 660px;
    height: 440px;
    border-radius: 82px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 70px rgba(0,0,0,.15);
    z-index: 1;
}

    .lp-store img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

.lp-family {
    position: absolute;
    right: 210px;
    bottom: 0;
    width: 420px;
    z-index: 5;
}

    .lp-family img {
        width: 100%;
        height: auto;
        display: block;
        filter: drop-shadow(0 24px 35px rgba(0,0,0,.28));
    }

.lp-bottom-bar {
    height: 14px;
    background: #e30613;
}

/* TABLET */
@media (max-width: 1100px) {
    .lp-hero {
        padding-top: 48px;
    }

    .lp-container {
        padding: 0 28px;
    }

    .lp-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        min-height: auto;
        text-align: center;
    }

    .lp-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .lp-logo {
        width: 190px;
        margin-bottom: 22px;
    }

    .lp-title {
        max-width: 760px;
        font-size: 48px;
        line-height: 1;
    }

    .lp-sub {
        max-width: 680px;
        font-size: 18px;
    }

    .lp-cta-group {
        justify-content: center;
    }

    .lp-right {
        height: 500px;
        width: 100%;
    }

    .lp-store {
        left: 50%;
        right: auto;
        top: 0;
        transform: translateX(-50%);
        width: min(680px, 100%);
        height: 360px;
        border-radius: 70px;
    }

    .lp-family {
        left: 50%;
        right: auto;
        bottom: 0;
        transform: translateX(-50%);
        width: 330px;
    }
}


/* CELULAR */
@media (max-width: 640px) {
    .lp-hero {
        padding-top: 34px;
    }

    .lp-container {
        padding: 0 18px;
    }

    .lp-grid {
        gap: 28px;
    }

    .lp-logo {
        width: 165px;
        margin: 0 auto 20px;
    }

    .lp-title {
        font-size: 36px;
        line-height: 1.04;
        letter-spacing: -0.035em;
        margin-bottom: 20px;
    }

        .lp-title span {
            margin-top: 6px;
        }

    .lp-sub {
        font-size: 16.5px;
        line-height: 1.55;
        margin-bottom: 24px;
    }

    .lp-cta-group {
        width: 100%;
        gap: 12px;
    }

    .lp-cta {
        width: 100%;
        min-height: 52px;
        font-size: 15px;
    }

    .lp-right {
        height: 350px;
        margin-top: 4px;
    }

    .lp-store {
        width: 100%;
        height: 255px;
        border-radius: 42px;
    }

    .lp-family {
        width: 235px;
        bottom: 0;
    }

    .lp-bottom-bar {
        height: 12px;
    }
}

/* CELULAR PEQUENO */
@media (max-width: 380px) {
    .lp-title {
        font-size: 33px;
    }

    .lp-store {
        height: 230px;
        border-radius: 36px;
    }

    .lp-right {
        height: 325px;
    }

    .lp-family {
        width: 210px;
    }
}
