@charset "utf-8";
/* CSS Document */
  /* CONFIGURAÇÃO GLOBAL */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background: #fbfbf3;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block; /* Garante que a imagem se comporte como bloco para centralização */
            margin: 0 auto; /* Centraliza a imagem horizontalmente */
        }


.apresentacao {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            gap: 30px;
	
        }

        .info_apresentacao {
            display: flex;
            flex-direction: column;
			
        }

        .titulo-apresentacao {
            font-weight: bold;
            color: #794e3f;
            font-size: 30px;
            text-align: center;
            margin-left: 5px;
            margin-bottom: 15px;
			text-shadow: 1px 1px 1px #a7a1a3;

        }

        .text-apresentacao {
            font-weight: normal;
            color: #555;
            font-size: 15px;
            text-align: left;
            margin-left: 5px;
			line-height: 30px;
        }

        .img_apresentacao img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 25px;
			background: #fff;
        }

        @media (min-width: 768px) {
            .apresentacao {
                flex-direction: row;
                justify-content: center;
                align-items: flex-start;
                text-align: left;
            }
            
            .info_apresentacao {
                max-width: 50%;
            }

            .img_apresentacao {
                max-width: 50%;
            }

            .titulo-apresentacao,
            .text-apresentacao {
                text-align: left;
                margin-left: 0;
            }
        }


/* SECTION INFO-CHAMADAS */
.info-chamadas {
    padding: 20px;
}

.info_chamada {
    text-align: center;
}

.titulo-chamadas {
    width: 100%;
    font-weight: bold;
    color: #794e3f;
    font-size: 30px;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 1px 1px 1px #a7a1a3;
}

.text-chamadas {
    font-weight: normal;
    color: #df9d3f;
    font-size: 20px;
    text-align: center;
    margin-bottom: 55px;
	text-shadow: 1px 1px 1px #a7a1a3;
}


/* SECTION INFO-SERVICOS */
.info-servicos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 0 5px;
    margin-bottom: 25px;
}

.serv-card {
    text-align: center;
    max-width: 300px;
}

.serv-card img {
    margin-bottom: 10px;
}

.serv-card h3 {
    font-weight: bold;
    color: #794e3f;
    font-size: 18px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 1px #a7a1a3;
}

.serv-card p {
    font-weight: normal;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .info-servicos {
        flex-direction: row;
        justify-content: center;
    }

    .serv-card {
        margin: 0 5px;
        max-width: none;
        flex-grow: 1;
    }
}

	


/* SEÇÃO SOBRE MIM */
.sb-mim {
    padding: 40px 20px;
}

.sbmim-conteudo {
    display: flex;
    flex-direction: column; /* Padrão para mobile */
    align-items: center;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

.text-button-container {
    order: 2; /* No mobile, o texto e o botão vêm depois da imagem */
    width: 100%;
}

.sbmais-img {
    order: 1; /* A imagem é o primeiro elemento no mobile */
    width: 100%;
}

.title-sbmim {
    font-weight: bold;
    color: #794e3f;
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.text-sbmim {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left; /* Alinhamento do texto para mobile */
    width: 100%;
    margin-left: 5px; /* Manter a indentação no mobile, se desejado */
}

.button-container {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #AD6F61;
    color: #fbfbf3;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #9b5a50;
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .sbmim-conteudo {
        flex-direction: row; /* Para desktop: itens lado a lado */
        align-items: center;
        justify-content: center;
        gap: 50px; /* Aumenta o espaço entre a imagem e o texto no desktop */
    }
    
    .text-button-container {
        order: unset; /* Remove a ordem definida para mobile */
        flex-basis: 50%; /* Define a largura base do contêiner de texto e botão para 50% */
        text-align: left;
    }

    .sbmais-img {
        order: unset; /* Remove a ordem definida para mobile */
        flex-basis: 40%; /* Define a largura base da imagem para 40% */
    }
    
    .title-sbmim {
        text-align: left;
    }
    
    .text-sbmim {
        text-align: left;
        margin-left: 0; /* Remove a margem extra no desktop */
    }
    
    .button-container {
        text-align: left;
    }
}









/* SECTION EBOOK */
.ebook {
    padding: 40px 20px;
}

.ebook-conteudo {
    display: flex;
    flex-direction: column; /* Padrão para mobile: itens empilhados */
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ebook-text-button-container {
    order: 2; /* No mobile, texto e botão vêm depois da imagem */
    width: 100%;
}

.ebook-texto p { /* Ajustando o seletor para evitar duplicidade */
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    margin-left: 0;
}

.img-ebook {
    order: 1; /* A imagem será o primeiro elemento no mobile */
    width: 100%;
}

.title-ebook {
    font-weight: bold;
    color: #794e3f;
    font-size: 25px;
    text-align: center; /* Alinhamento para mobile */
    margin-bottom: 25px;
}

.text-ebook {
    text-align: left;
}

@media (min-width: 768px) {
    .ebook-conteudo {
        flex-direction: row-reverse; /* Para desktop: imagem na direita, texto na esquerda */
        justify-content: center;
        align-items: center;
        gap: 50px;
    }
    
    .ebook-text-button-container {
        order: unset; /* Remove a ordem definida para mobile, volta ao padrão do HTML */
        flex-basis: 50%;
        text-align: left;
    }

    .ebook-texto p {
        margin-left: 0;
        text-align: left;
    }

    .img-ebook {
        order: unset; /* Remove a ordem definida para mobile */
        flex-basis: 40%;
		align-items: center;
    }
    
    .title-ebook {
        text-align: left;
    }
    
    .button-container {
        text-align: left;
    }
}



		
/* SECTION INFO-CHAMADAS2 */
.info-chamadas2 {
    padding: 20px;

}

.info_chamada2 {
    text-align: center;
}

.titulo-chamadas2 {
    width: 100%;
    font-weight: bold;
    color: #794e3f;
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
}

.text-chamadas2 {
    font-weight: normal;
    color: #555;
    font-size: 15px;
    text-align: center;
    margin-bottom: 25px;
}
		
/* SECTION DIF-TRAB */
.dif-trab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 30px;
}

.text-dif-tab {
    max-width: 100%;
}

.text-dif-tab ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.text-dif-tab li {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
    text-align: left;
}

.img-dif-trab img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .dif-trab {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: left;
    }
    
    .text-dif-tab {
        max-width: 50%;
        padding-right: 20px;
    }
    
    .img-dif-trab {
        max-width: 50%;
    }
}
		
/* SECTION INFO-CHAMADAS3 */
.info-chamadas3 {
    padding: 20px;
    text-align: center;
}

.titulo-chamadas3 {
    width: 100%;
    font-weight: bold;
    color: #794e3f;
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
}
		
/* SECTION DEPOIMENTOS */
.depoimentos-section {
    padding: 20px;
}

.depoimentos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.depoimento {
    text-align: center;
    max-width: 300px;
}

.imgdp {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
}

.imgdp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #b27f70;
}

.depoimento .text {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .depoimentos-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .depoimento {
        max-width: none;
    }
}

.strong{
	color: #c67b12;
}