@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;
    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: 40px;
    color: #1f4d2b;
}

/* LAYOUT */
.layout {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* IMAGEM */
.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 */
.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;
    font-weight: 700;
}

.valor {
    display: block;
    font-size: 3.9rem;
    font-weight: 700;
    color:#114422;
    margin: 10px 0 15px;
}

/* BOTÕES */
.botao {
    display: inline-block;
    padding: 12px 28px;
    background: #114422;
    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;
}
