body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: #f3e8dd;
    color: #333;
}

.container {
    width: 100%;
    padding: 50px 0;
}

.caixa {
    background: #f2f2f2;
    padding: 50px 60px;
    border-radius: 25px;
    max-width: 1600px;
    margin: auto;
}
/* ----------- TÍTULOS ----------- */

.titulo {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f4d2b;
}

.subtexto {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color:  #1f4d2b;
}

/* ----------- POST-ITS ----------- */

.postits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
    margin-top: 20px;
}

.postit {
    width: 270px;
    min-height: 90px;
    padding: 15px;
    font-size: 1.3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    font-weight: 500;
    line-height: 1.6rem;
}

.postits .postit:nth-child(1) {
    margin-left: 0;
}

.postits .postit:nth-child(2) {
    margin-left: 300px;
}

.postits .postit:nth-child(3) {
    margin-left: 600px;
}



.amarelo { background: #fffeb3; }
.branco { background: #f0f7ff; }
.verde { background: #e7ffe0; }





/* ----------- CONTEÚDO ----------- */

.layout {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.coluna-img {
    width: 100%;
    height: 999px; /* controla a altura total da imagem */
}

.coluna-img .foto {
    width: 100%;
    height: 100%;
    object-fit: cover; /* preenche na vertical sem esticar */
    border-radius: 14
}
 

.foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.texto {
    margin-bottom: 40px;
    font-size: 1.5rem;
    line-height: 1.6rem;
}

.botao-centro {
    text-align: center;
    margin-top: 30px;
}

.botao {
    display: inline-block;
    padding: 12px 20px;
    background: #1f4d2b;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
}

.botao.destaque {
    font-size: 1.1rem;
}


/* -------- PREÇO -------- */

.preco {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chamada {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.valor {
    display: block;
    font-size: 3.9rem;
    font-weight: 700;
    color: #1f4d2b;
    margin: 10px 0 15px;
}

.home-direita {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

