

*{
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f3e8dd;
}

.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;
    color: #1f4d2b;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 10px;
}

.subtexto {
    text-align: center;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 40px;
    color: #1f4d2b;
}

/* LAYOUT */
.layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* IMAGEM */
.foto {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

/* POST-ITS */
.postits-horizontal {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.postit {
    flex: 1 1 250px;
    padding: 16px;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    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: clamp(1rem, 1.8vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* PREÇO */
.preco {
    text-align: center;
}

.chamada {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.valor {
    display: block;
    font-size: clamp(2rem, 4vw, 3.2rem);
    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;
    transition: 0.3s;
}

.botao:hover {
    opacity: 0.9;
}

.botao.destaque {
    font-size: 1rem;
}

/* HOME */
.home-direita {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

/* ============================= */
/* 📱 TABLET */
/* ============================= */
@media (max-width: 1024px) {

    .layout {
        grid-template-columns: 1fr;
    }

    .home-direita {
        justify-content: center;
    }
}

/* ============================= */
/* 📱 CELULAR */
/* ============================= */
@media (max-width: 768px) {

    .caixa {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .postits-horizontal {
        flex-direction: column;
    }

    .botao {
        width: 100%;
        text-align: center;
    }
}