/* dra.css */
body {
    font-family: Raleway;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    margin-top: 100px; /* Ajuste conforme a altura do header */
    justify-content: center;
}

.logo {
    font-size: 80px;
    font-weight: bold;
    color: #c0a375;
    float: left;
}

.intro {
    text-align: center;
    max-width: 600px;
    margin-bottom: 40px;
    clear: both;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 10px;
    justify-content: center !important;
    align-items: center;
}

.grid img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    margin: 10px;
    
}

.intro-content {
    text-align: justify !important;
}

.text-section {
    margin-top: 40px;
    max-width: 500px;
    line-height: 1.8;
    text-align: justify;
    margin-right: 50px;
    margin-bottom: 30px;
    font-family: "montserrat-light", sans-serif;
}

.text-section p {
    margin-bottom: 20px;
    font-family: "montserrat-light", sans-serif;
}

.intro-container {
    margin-bottom: -70px; /* Reduza esse valor conforme necessário */
    padding-bottom: 0; /* Garante que não há espaço extra */
}

.text-content img {
    width: 100%; /* Garante que as imagens ocupem toda a largura do contêiner */
    max-width: 300px; /* Define um tamanho máximo para evitar distorções */
    display: block; /* Evita que as imagens fiquem alinhadas ao texto */
    margin: 10px auto; /* Centraliza as imagens e dá um espaçamento adequado */
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Mantém os itens centralizados */
    text-align: justify; /* Centraliza o texto */
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px; /* Adiciona um espaçamento lateral */
    
}

.text-content p {
    font-family: "montserrat-light", sans-serif;
    color: #333;
    margin-top: 0; /* Removendo margem negativa */
    line-height: 1.5; /* Melhorando a legibilidade */
}


@media screen and (max-width: 768px) {
    .services-content {
        display: flex;
        flex-direction: column; /* Empilha os elementos */
        align-items: center;
        text-align: center; /* Centraliza o texto */
    }

    .text-content {
        max-width: 90%; /* Expande um pouco mais */
        margin-left: 50% !important; /* Move ligeiramente para o centro */
        margin-right: -50% !important; /* Corrige o excesso de espaço */
        text-align: center; /* Centraliza melhor o texto */
    }

    .text-content p {
        font-size: 16px; /* Reduz o tamanho da fonte para melhor leitura */
        line-height: 1.6; /* Melhora o espaçamento entre linhas */
    }

    .image-content {
        width: 100%;
        text-align: center;
    }

    .image-content img {
        max-width: 90%; /* Garante que a imagem não ultrapasse a tela */
        height: auto;
    }
}

.final-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 60px;
    margin-top: 40px;
}

.final-image img {
    width: 90%;
    max-width: 600px;
    margin-top: 15px;
}

@media (max-width: 1024px) { 
    .final-image img {
        width: 95%;
        max-width: 985px;
    }
}

@media (max-width: 768px) { 
    .final-section {
        flex-direction: column;
        text-align: center;
    }

    .final-image img {
        width: 85%;
        max-width: 100%;
    }
}

.full-width-image {
    width: 100vw;
    max-height: 100vh;
    height: auto;
    display: block;
    object-fit: cover;
    margin-top: 50px;
}
