body {
    margin: 0;
    font-family: 'Open Sans';
}

h2 {
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

header {
    text-align: center;
    padding: 20px 0px 0px 0px;
}

/* Estilos do menu responsivo */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 82px;
    right: 10px;
    background-color: #c45253;
    color: white;
    border-radius: 5px;
    padding: 10px 15px;
    text-transform: uppercase;
}

nav {
    background: #fff;
    border-top: solid 1px #C0C0C0;
    margin: 0px 50px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0;
    padding: 15px;
}

nav ul li a {
    color: #C0C0C0;
    text-decoration: none;
    font-weight: bold;
    display: block;
}

nav ul li a:hover {
    color: #dd4a4a;
    text-decoration: none;
}

/* Esconder menu em telas menores */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 120px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
		z-index: 9999; /* Mantém acima de tudo */
    }

    nav ul.show {
        display: flex;
    }
}

/* Estilos para o submenu */
.submenu {
    display: none;
    position: absolute;
	top: 100%; /* Garante que apareça logo abaixo do item pai */
	left: 0;
    background: white;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 250px;
	z-index: 9999; /* Garante que apareça sobre os outros elementos */
}

.submenu li {
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.submenu li a {
    padding: 2px;	
    color: #B3B3B3;
    text-decoration: none;
    display: block;
}

.submenu li a:hover {
    color: #c44;
}


/* Ajusta a posição do submenu */
.submenu-parent {
    position: relative; /* Define como referência para o submenu */
}

/* Mostrar submenu ao passar o mouse no desktop */
.submenu-parent:hover .submenu {
    display: block;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .submenu {
        position: static;
        box-shadow: none;
        width: 100%;
    }

    .submenu-parent:hover .submenu {
        display: none; /* Evita que o submenu abra no hover no mobile */
    }

    .submenu-parent.active .submenu {
        display: block; /* Abre o submenu no clique no mobile */
    }
}


/* Banner */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider {
    position: relative;
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    min-height: auto;
    margin: 0 auto;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: auto;
    transition: opacity 0.5s ease;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.control {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .control {
        padding: 5px 10px;
    }
}

/* Seções */
.section {
    padding: 50px;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.section h2 {
    font-size: 40px;
    color: #c44;
    font-weight: bold;
    margin-bottom: 20px;
}

.section h3 {
    font-size: 20px;
    color: #3e3e3e;
    font-weight: bold;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.2rem;
    max-width: 1000px;
    margin: 0px auto 15px auto;
	color: #3e3e3e;
}

.section .claudia {
	color: #c44;
}

/* Claudia Fleith Traduções */
#claudia-fleith {
    background-color: #f0f0f0;
    width: 100%;
    padding: 50px 0;
}

#claudia-fleith p {
    text-align: justify;
    font-family: 'Open Sans';
    font-size: 12pt;
}

/* Seção História e Clientes em duas colunas */
#historia-clientes {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    gap: 40px;
}

#historia-clientes h3 {
    font-size: 20px;
    color: #3e3e3e;
    font-weight: bold;
    margin-bottom: 20px;
	text-align: center;
}

#historia-clientes .claudia {
	color: #c44;
}

#historia-clientes p {
	text-align: justify;
    font-family: 'Open Sans';
    font-size: 12pt;
	margin: 0px auto 15px auto;
}

.historia, .clientes {
    width: 50%;
    text-align: justify;
}

.clientes ul li {
	text-align: justify;
    font-family: 'Open Sans';
    font-size: 12pt;
	margin: 0px auto auto 50px;
}

.historia h2, .clientes h2 {
    text-align: center;
    font-size: 35px;
    color: #c44;
    font-weight: bold;
    margin-bottom: 20px;
}


#filiacao {
    display: flex;
    width: 100%;
    margin: 0 auto 30px auto;
    padding: 0;
}

.logo-filiacao {
    width: 80px;
	margin: 0 15px 0 0;
    text-align: justify;
}

.texto-filiacao {
    width: 90%;
	margin: 0 0 0 0;
    text-align: justify;
}



/* Formações */
#formacoes{
	border-top: solid 1px #C0C0C0;
	border-bottom: solid 1px #C0C0C0;
}

#formacoes p {
	text-align: justify;
    font-family: 'Open Sans';
    font-size: 12pt;
	margin: 0px auto 15px auto;
}

/* Exibir Formações dependendo da resolução */

.mobile-image {
    display: none;
  }

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .desktop-image {
      display: none;
    }
    .mobile-image {
      display: block;
	  width: 400px;
    }
  }


/* Seção Compromissos */
#compromissos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 50px 0;
    text-align: center;
}

#compromissos h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
	
    font-size: 40px;
    color: #c44;
    font-weight: bold;
    margin-bottom: 20px;	
}

.compromissos-box {
    position: relative;
    width: 180px;
    height: 190px;
    background: #c45253;
    color: white;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
}

.compromissos-box:hover {
    transform: translateY(-30px);
    box-shadow: 0px 4px 10px #000000;
}

.compromissos-box img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 10px;
}

.compromissos-box h3 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 0px;
	padding-bottom: 5px;
    text-transform: uppercase;
}

.compromissos-box .compromisso-text {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #801a1b;
    color: white;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    transition: bottom 0.3s ease-in-out;
}

.compromissos-box:hover .compromisso-text {
    bottom: 0;
}

@media (max-width: 768px) {
    #compromissos {
        flex-direction: column;
        align-items: center;
    }
    .compromissos-box {
        width: 90%;
        max-width: 200px;
    }
}



/* Contato */
#contato {
    background: #bfbfbf;
	background-image: url("imagens/backgroung-contato.jpg");
	background-size: contain; /* Ajusta a imagem ao tamanho da div */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição */
    width: 100%; /* Ajuste conforme necessário */
    height: 600px; /* Defina a altura desejada */	
    padding: 40px;
    width: 100%;
}

#contato a {
    color: #c44;
    font-weight: bold;
    text-decoration: none;
}

#contato a:hover {
    text-decoration: underline;
}

/* Compromissos */
#compromissos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.compromisso-box {
    background: #c44;
    color: white;
    padding: 20px;
    text-align: center;
    width: 250px;
    border-radius: 10px;
}

.compromisso-box h3 {
    font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    .section {
        padding: 30px;
        max-width: 95%;
    }
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    #historia-clientes {
        flex-direction: column;
        align-items: center;
        padding: 30px 15px;
    }
    .historia, .clientes {
        width: 100%;
        text-align: center;
    }
}

/* Botão flutuante do WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 40px;
    height: 40px;
}



/* Botão flutuante para voltar ao topo */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #c45253;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-to-top img {
    width: 35px;
    height: 35px;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: scale(1.1);
}


/* Serviços */
#servicos {
    background-color: #fff;
    width: 100%;
    padding: 50px 0;
	border-top: solid 1px #c0c0c0;
}

#servicos p {
    text-align: justify;
    font-family: 'Open Sans';
    font-size: 12pt;
}

#lista-servicos {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0px 0px 40px 0px;
    gap: 40px;
}

#lista-servicos h3 {
    font-size: 20px;
    color: #3e3e3e;
    font-weight: bold;
    margin-bottom: 20px;
	text-align: center;
}

#lista-servicos h4 {
    font-size: 12pt;
    color: #c45253;
    font-weight: bold;
    margin-bottom: 20px;
	text-align: left;
}

#lista-servicos .claudia {
	color: #c44;
}

#lista-servicos p {
	text-align: justify;
    font-family: 'Open Sans';
    font-size: 12pt;
	margin: 0px auto 15px auto;
}

.servicos-col1, .servicos-col2 {
    width: 50%;
    text-align: justify;
}

.servicos-col1  ul li, .servicos-col2 ul li {
	text-align: justify;
    font-family: 'Open Sans';
    font-size: 12pt;
	margin: 0px auto auto 50px;
}

.servicos-col1 h2, .servicos-col2 h2 {
    text-align: center;
    font-size: 35px;
    color: #c44;
    font-weight: bold;
    margin-bottom: 20px;
}