.container{
    height: 90vh;
    display: flex;
    overflow: hidden;
}

.image{
    display: flex;
    align-self: right;
    height: 90vh;
    width: 43.125vw;
}
.lendo_imagem img { 
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    object-position: center top; 
}

.text{
    font-family: "figtree", sans-serif;
    padding: 10.87vh 10.417vw;
}

.title{
    text-transform: uppercase;
    color: #ae752d;
    font-size: 7.065vh;
}
.body{
    font-size: 2.717vh;
    padding-top: 3.261vh;
}
.alt_color{
    color: #ae752d;
    font-weight: bold;
}
.botao{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 20.833vw;
    height: 9.783vh;
    border-radius: 4.891vh;
    border: 0.326vh solid #000;
    font-family: "figtree", sans-serif;
    background-color: #b69d7f;
    color: #fff;
    font-size: 4.891vh;
    margin-top: 5.435vh;
    font-weight: lighter;
    background-image: radial-gradient(#c69752, #b87f3b, #a27850), url("../images/bg2.jpg");
}
/* --- Estilos para Mobile --- */
@media (max-width: 768px) {
    
    /* 1. Faz o container empilhar os itens verticalmente */
    .container {
        flex-direction: column; /* Empilha o texto e a imagem */
        height: auto;           /* Deixa a altura ser automática */
        overflow: visible;
    }

    /* 2. Faz a imagem ocupar a largura total e ter altura automática */
    .image {
        width: 100%; 
        height: auto;
        order: 1;  
    }


    .text {
        width: 100%;  
        box-sizing: border-box; 
        padding: 40px 20px;
        order: 2; 
    }


    .title {
        font-size: 2.5rem;
        text-align: center;
    }

    .body {
        font-size: 1rem;
        padding-top: 20px;
        text-align: center;
    }

    .botao {
        width: 100%; 
        height: auto; 
        padding: 15px 20px;
        font-size: 1.25rem;
        margin-top: 30px;
        box-sizing: border-box;
    }
}