

*{
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #f3e8dd;
    color: #333;
}

.container {
    width: 100%;
    padding: 40px 20px;
}

.caixa {
    background: #f2f2f2;
    padding: 50px;
    border-radius: 25px;
    max-width: 1400px;
    margin: auto;
}

/* ----------- TÍTULOS ----------- */

.titulo {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f4d2b;
}

.subtexto {
    text-align: center;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 30px;
    color: #1f4d2b;
}

/* ----------- LAYOUT ----------- */

.layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ----------- IMAGEM ----------- */

.coluna-img {
    width: 100%;
}

.foto {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

/* ----------- POST-ITS ----------- */

.postits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

/* escadinha elegante só no desktop */
.postit {
    max-width: 420px;
    padding: 18px;
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    font-weight: 500;
    line-height: 1.6;
}

.postits .postit:nth-child(1){ align-self: flex-start; }
.postits .postit:nth-child(2){ align-self: center; }
.postits .postit:nth-child(3){ align-self: flex-end; }

.amarelo { background: #fffeb3; }
.branco { background: #f0f7ff; }
.verde { background: #e7ffe0; }

/* ----------- TEXTO ----------- */

.texto {
    margin-bottom: 40px;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    line-height: 1.6;
}

/* ----------- PREÇO -------- */

.preco {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chamada {
    font-size: 1.3rem;
    font-weight: 700;
}

.valor {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #1f4d2b;
    margin: 10px 0 15px;
}

/* ----------- BOTÕES ----------- */

.botao {
    display: inline-block;
    padding: 12px 24px;
    background: #1f4d2b;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.botao:hover{
    opacity: 0.9;
}

.botao.destaque {
    font-size: 1rem;
}

.home-direita {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

/* ============================= */
/* 📱 TABLET */
/* ============================= */

@media (max-width: 1024px) {

    .layout {
        grid-template-columns: 1fr;
    }

    .postit {
        align-self: center !important;
        width: 100%;
        max-width: 600px;
    }

    .home-direita {
        justify-content: center;
    }
}

/* ============================= */
/* 📱 CELULAR */
/* ============================= */

@media (max-width: 768px) {

    .caixa {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .postit {
        width: 100%;
    }

    .botao {
        width: 100%;
        text-align: center;
    }
}