@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #f3e8dd;
}

.container {
    width: 100%;
    padding: 50px 0;
}

.caixa {
    background: #f2f2f2;
    padding: 50px 60px;
    border-radius: 25px;
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

/* TÍTULOS */
.titulo {
    text-align: center;
    color: #1f4d2b;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.subtexto {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: #1f4d2b;
}

/* LAYOUT */
.layout {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* IMAGEM */
.foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* POST-ITS */
.postits-horizontal {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    margin-top: 80px;
}

.postit {
    padding: 16px;
    width: 260px;
    font-size: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    font-weight: 500;
}

.amarelo { background: #fff2a8; }
.lilas { background: #f2d8ff; }
.rosa { background: #ffb3d9; }

/* TEXTO */
.texto {
    font-size: 1.5rem;
    line-height: 1.6rem;
    margin-bottom: 40px;
}

/* PREÇO */
.preco {
    text-align: center;
}

.chamada {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.valor {
    display: block;
    font-size: 3.9rem;
    font-weight: 700;
    color: #1f4d2b;
    margin-bottom: 15px;
}

/* BOTÕES */
.botao {
    display: inline-block;
    padding: 12px 28px;
    background: #1f4d2b;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.botao.destaque {
    font-size: 1.1rem;
}

/* HOME */
.home-direita {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}
