/* ===== Reset mínimo + base ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.lp-title {
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 26px; /* ajuste fino depois */
    line-height: 0.98; /* bem “justo” como no print */
    letter-spacing: -0.03em;
    color: #111;
    margin: 0 0 14px;
    text-rendering: geometricPrecision;
}


    .lp-title span {
        color: #e30613;
        font-weight: 900;
        font-size: 1.08em;
    }


    .lp-title span {
        color: #e30613;
        font-weight: 900;
    }


html, body {
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff;
}

.lp-hero {
    background: radial-gradient(1200px 700px at 20% 15%, rgba(227,6,19,.08), transparent 60%), radial-gradient(1200px 700px at 80% 20%, rgba(227,6,19,.05), transparent 60%), #f6f6f6;
    padding: 64px 0 0;
    overflow: hidden;
    position: relative;
}

.lp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 44px;
}

.lp-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
    gap: 56px;
    min-height: 560px;
}

/* ===== ESQUERDA ===== */
.lp-left {
    text-align: left;
    padding-bottom: 20px;
}

.lp-logo {
    width: 350px;
    height: auto;
    margin-bottom: 18px;
}

.lp-title {
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.02;
    font-weight: 900;
    color: #121212;
    letter-spacing: -0.02em;
}

    .lp-title span {
        color: #e30613;
    }

.lp-sub {
    margin: 0 0 26px;
    max-width: 520px;
    color: #333;
    font-size: 27px;
    line-height: 1.6;
}




.lp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    background: #e30613;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(227, 6, 19, .28);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .lp-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 22px 50px rgba(227, 6, 19, .35);
    }

/* ===== DIREITA (COMPOSIÇÃO BONITA) ===== */
.lp-right {
    position: relative;
    height: 560px;
}

/* Loja: grande, com recorte arredondado, estilo Figma */
.lp-store {
    position: absolute;
    right: -40%;
    top: 10px;
    width: 580px; /* maior */
    height: 520px; /* maior */
    border-radius: 180px; /* “pill quadrada” (bem arredondada sem virar círculo) */
    overflow: hidden;
    background: #fff;
    box-shadow: 0 56px 60px rgba(0,0,0,.18);
    transform: translateZ(0);
}

    .lp-store::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,0));
        pointer-events: none;
    }

    .lp-store img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.02);
    }

/* Família: menor, por cima, com borda branca e sombra suave */
.lp-family {
    position: absolute;
    left: -80px;
    bottom: -20px  ;
    width: 520px;
    height: 520px; 
    overflow: hidden;   
    z-index: 3;
}

    .lp-family img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* “pílulas” decorativas pra dar vida sem poluir */
.lp-pill {
    position: absolute;
    width: 170px;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(227,6,19,.22), rgba(227,6,19,.07));
    filter: blur(.2px);
    opacity: .9;
    z-index: 2;
}

.lp-pill-1 {
    left: 210px;
    top: 70px;
    transform: rotate(-18deg);
}

.lp-pill-2 {
    right: 110px;
    bottom: 70px;
    transform: rotate(16deg);
    opacity: .7;
}

/* Barra inferior vermelha */
.lp-bottom-bar {
    height: 18px;
    background: #e30613;
    margin-top: 0px;
}

/* ===== Responsivo ===== */
@media (max-width: 1100px) {
    .lp-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: unset;
        padding-bottom: 24px;
    }

    .lp-right {
        height: 520px;
    }

    .lp-store {
        width: 480px;
        height: 480px;
        right: 0;
        border-radius: 160px;
    }

    .lp-family {
        left: 0;
        width: min(420px, 100%); /* diminui a largura */
        height: 390px; /* diminui a altura */
        bottom: -24px; /* mantém encostada na linha */
    }
}

@media (max-width: 620px) {
    .lp-container {
        padding: 0 18px;
    }

    .lp-title {
        display: block; /* importante */
        text-align: center; /* centraliza o texto */
        font-size: 1.8em;
    }

        .lp-title span {
            display: block; /* importante */
            text-align: center; /* centraliza o texto */
            font-size: 1.1em;
            margin-top: 8px;
        }

    .lp-sub {
        font-size: 22px;
        margin: 0 0 20px;
        display: block; /* importante */
        text-align: center;
    }   

    .lp-logo {
        width: 190px;
        display: block;
        margin: 0 auto 18px; /* centraliza horizontalmente */
    }

    .lp-cta {
        display: inline-flex;
        margin: 0 auto;
        align-self: center; /* centraliza horizontalmente */
        display: block; /* importante */
        text-align: center;
    }

    .lp-right {
        height: 460px;
    }

    .lp-store {
        left: 50%;
        transform: translateX(-50%);
        width: 360px;
        height: 360px;
        border-radius: 130px;
    }

    .lp-family {
        left: 0%;
        width: 60%;
        height: 250px;
        border-width: 8px;
    }

    .lp-pill {
        display: none;
    }
}
