@import url('./reset.css');
@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('./feedbackform.css');

* {
	box-sizing: border-box;
}

html,
body {
	padding: 0;
	margin: 0;
	overflow-x: hidden !important;
	width: 100%;
}

body {
	font-family: 'Open Sans', verdana, helvetica, arial, sans-serif;
}

/*  ------------------ NAVBAR Desktop start -------------------- */

.nav-desktop .nav {
	font-family: 'Roboto';
	font-size: .8em !important;
}

.nav-link {
	border-radius: 5px 5px 0px 0px !important;
}

.nav-link:hover {
	border-radius: 5px 5px 0px 0px !important;
}

.nav-desktop .container-fluid {
	background-color: transparent;
}

.nav-tabs {
	border-bottom: 2px solid rgba(255, 255, 255, 0.6);
	/* ou a cor desejada */
	position: relative;
}

/* Remover bordas padrão dos links */
.nav-tabs .nav-link {
	border: none;
	position: relative;
	background-color: transparent;
	outline: none !important;
	z-index: 1;
}

/* Pseudo-elemento para ocultar linha ao hover */
.nav-tabs .nav-link::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(to bottom,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0) 49%,
			rgba(255, 255, 255, 0.25) 50%,
			rgba(255, 255, 255, 0.25) 100%);
	opacity: 0;
	transition: opacity 0.2s ease;
	z-index: 2;
}

.nav-tabs .nav-link:hover::after {
	opacity: 1;
}

.nav-tabs.active {
	/*	border-bottom: solid 5px transparent !important;*/
	margin: 0 10px 0 10px !important;
}

.nav-link.active {
	background-color: rgba(255, 255, 255, 0.7) !important;
	color: #2d5a3d !important;
	font-weight: 700;
}

.nav-tabs {
	border-bottom: 2px solid rgba(255, 255, 255, 0.6);
	position: relative;
}

/*  ------------------ NAVBAR Desktop end -------------------- */


/*  ------------------ NAVBAR Tablet/Mobile start -------------------- */
.navbar {
	z-index: 2000;
	top: 0;
	width: 100%;
	display: none !important;
	-webkit-transition: padding 0.25s ease-in-out;
	transition: padding 0.25s ease-in-out;
	position: fixed;
}

button.navbar-toggler {
	border: none;
	box-shadow: none !important;
	outline: none;
}

button.navbar-toggler:focus,
button.navbar-toggler:active,
button.navbar-toggler:focus-visible {
	border: none;
	box-shadow: none !important;
	outline: none;
}

a.navbar-brand {
	display: flex;
	align-items: center;
	font-family: 'Oswald', sans-serif;
	color: #035632;
	font-size: 25px;
	font-weight: 700;
}

a.navbar-brand img,
.logo-nav {
	position: absolute;
	margin-left: 10px;
	margin-right: 30px;
	height: 35px;
	width: auto;
}

.offcanvas-title,
a.nav-link,
a.nav-link.active,
a.nav-link a.nav-link:link,
a.nav-link:visited,
a.nav-link:hover,
a.nav-link:active,
a.nav-link.active:link,
a.nav-link.active:visited,
a.nav-link.active:hover,
a.nav-link.active:active {
	color: #035632;
}


/*  ------------------ NAVBAR Tablet/Mobile end -------------------- */

.main-container {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

.background-wrapper {
	margin: 0 auto;
	max-width: 1920px;
	/* Limita a largura visível */
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.fullyheader {
	background-color: rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(1px);
	backdrop-filter: blur(1px);
}

header {
	background-image: linear-gradient(to bottom, rgba(0, 38, 17, 0.7), rgba(255, 255, 255, 0.8)), url(../img/fundo01-1920px.jpeg);
	background-position: center top;
	background-size: auto 100%;
	background-repeat: no-repeat;
	height: 100vh;
}

/* Animção da seta do Header*/
@keyframes piscando {
	0% {
		opacity: 1;
	}

	20% {
		opacity: 0;
	}

	40% {
		opacity: 1;
	}

	60% {
		opacity: 0;
	}

	80% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

#downPage {
	position: fixed;
	bottom: 15px;  
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
	animation: piscando 1550ms 4 forwards;
	transition: opacity 0.3s ease;
	opacity: 1;
	pointer-events: auto;
}

#downPage.hidden {
	opacity: 0;
	pointer-events: none;
}

#downPage img {
	width: clamp(50px, 15vw, 100px);
	height: auto;
	display: block;
}

section#header {
	width: 100%;
	height: 100vh;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	min-height: 669.188px;
	background-color: rgba(106, 168, 79, 0.392);
	padding-top: 100px;
	background-size: cover;
}

#header img {
	display: flex;
	width: 500px;
	height: auto;
	justify-content: center;
	align-items: middle;
	margin: auto;
}

#logo {
	padding-top: 12rem;
	width: 100%;
	max-width: 1920px;
}

#logo>h1 {
	text-align: center;
	margin: auto;
	color: #035632;
	font-size: 2em;
}

#logo>h2 {
	text-align: center;
	margin: 50px;
	color: #035632;
	font-size: 2.7em;
	font-family: 'Oswald';
	font-weight: 400;
	word-break: break-word;
	text-shadow: 1px 1px 4px rgb(255, 255, 255, .4);
}

/* Seção do cabeçalho */
.header-section {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

section#section02 {
	min-height: 315px;
	background-image: url(../img/fundo02-textura.png), linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(65, 87, 38, 0.4));
	background-blend-mode: multiply;
	background-position: top center;
	background-size: auto;
	background-repeat: no-repeat;
	background-color: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(65, 87, 38, 1), rgba(0, 38, 17, 0.8));
	width: 100%;
	max-width: 1920px;
	margin: auto;
}

div.row.justify-content-center.g-4 {
	--bs-gutter-y: 5.5rem;
}

div.card {
	display: flex;
	justify-content: center;
	margin: auto;
	align-items: center;
	width: 200px;
	height: 260px !important;
	box-shadow:
		0 10px 25px rgba(0, 0, 0, 0.360),
		0 4px 10px rgba(0, 0, 0, 0.360) !important;
	transform: translateY(-5px) !important;
	/* Eleva o card */
	/* Borda mais visível no hover */
	border-color: rgb(106, 168, 79) !important;
}

.card-pai {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.card-filho {
	flex: 1 1 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 1.5em;
}


/* ----   Título Section 02 ------ */
.headline {
	font-size: 1.8rem;
	text-align: center;
	color: #1f3d36;
	/* tom formal e sóbrio */
	line-height: 1.5;
}

.destaque {
	color: #007b5e;
	/* tom institucional */
	font-weight: 600;
}

.subheadline {
	display: block;
	margin-top: 0.5rem;
	font-size: 1.2rem;
	color: #4f4f4f;
}

.section02Text {
	padding: 20px;
	text-align: center;
	color: #2d5a3d;
	font-family: 'Oswald';
	padding-top: 50px !important;
}

.section02Text h2 {
	margin: auto;
	font: 3.5em 'Oswald';
	margin-bottom: 50px;
	width: 80%;
}

.section02Text strong {
	font: 1.6em;
}

.section02Text h3 {
	padding-top: 20px;
}

.section02-container-note {
	display: flex;
	margin: auto;
	justify-content: center;
}

.section02-note {
	width: max-content;
	justify-content: center;
	background-color: #f8f9fa;
	padding: 1rem;
	border-radius: 8px;
	margin-top: 4rem;
	text-align: center;
}

.section02-note p {
	font-size: 1.5em;
	color: #2d5a3d;
	font-style: italic;
	margin: 0;
}

section#section03 {
	width: 100%;
	min-height: 473px;
	background-color: #ffffff;
	background-image: url(../img/fundo03-1920px.png);
	background-size: auto auto;
	background-repeat: no-repeat;
	background-position: 45% 46%;
	display: flex;
	justify-content: start;
	align-items: center;
	padding: 20px;
	margin: 0 auto;
	max-width: 1920px;
	position: relative;
	overflow: hidden;
}

div#section03box {
	max-width: 940px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: start;
	align-items: center;
}

#section03title {
	padding: 20px 16rem 20px 0;
	text-align: start;
	margin: auto 0;
}

#section03 h2 {
	border-bottom: 2px solid #3ADCBF;
	padding-bottom: 1rem !important;
	color: #2d5a3d;
	font: 3.5em 'Oswald';
}

#section03box p {
	padding-top: 1rem;
}

#section03box>div {
	text-align: start;
	margin: auto 0;
}

#section03box span {
	font: 1.4em 'Oswald';
	color: #2d5a3d;
}

section#section04 {
	min-height: 473px;
	background-color: #ffffff;
	background-image: url(../img/fundo04-1920px.jpeg);
	background-size: auto auto;
	background-repeat: no-repeat;
	background-position: center top;
	display: flex;
	justify-content: end;
	align-items: center;
	padding: 20px;
	margin: 0 auto;
	max-width: 1920px;
	position: relative;
	overflow: hidden;
}

div#section04box {
	max-width: 940px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: end;
	align-items: center;
}

#section04title {
	padding: 20px 0 20px 0;
	text-align: end;
	margin: auto 0;
}

#section04 h2 {
	color: #2d5a3d;
	font: 3.5em 'Oswald';
}

#section04box>div {
	text-align: end;
	margin: auto 0;
}

#section04box span {
	font: 1.4em 'Oswald';
	color: #2d5a3d;
}

#section04 h2 {
	color: #2d5a3d;
	font: 3.5em 'Oswald';
	border-bottom: 2px solid #3ADCBF;
	padding-bottom: 2rem !important;
}

#section04message {
	padding-top: 1rem;
}

/* -------------- Nossa Missão -----------------------*/

/* Seção principal - Missão e Valores */

.missao-valores-section {
	background-color: rgba(0, 38, 17, 1);
	background-color: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(65, 87, 38, 1), rgba(0, 38, 17, 0.8));
	min-height: 700px;
	max-width: 1920px;
	margin: 0 auto;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	padding-top: 56px !important;
}

.missao-valores-section h2 {
	font: 3.5em 'Oswald';
}

/* Container principal */
.missao-valores-section .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	height: 100%;
	align-items: start;
	padding-top: 1rem;
}

/* Lado esquerdo - Missão */
.missao-container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	height: 70%;
}

/* Card da missão */
.missao-card {
	background-color: #2d5a3d;
	border-radius: 25px;
	padding: 2rem;
	color: white;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.missao-title {
	font-family: 'Oswald', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.missao-text {
	font-size: 1.4em;
	line-height: 1.6;
	font-weight: 400;
}

/* Container dos métodos */
.metodos-container {
	margin-top: auto;
}

.metodos-text {
	font-size: 1.5em;
	color: #ccc;
	line-height: 1.5;
	font-style: italic;
}

/* Lado direito - Valores */
.valores-container {
	padding-left: 1rem;
}

.valores-title {
	font-family: 'Oswald', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: #198754;
	margin-bottom: 1.5rem;
	border-left: 4px solid #198754;
	padding-left: 1rem;
}

/* Lista de valores */
.valores-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.valor-item {
	border-bottom: 1px solid #e9ecef;
	padding-bottom: 1rem;
}

.valor-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.valor-name {
	font-family: 'Oswald', sans-serif;
	font-size: 1.5em;
	font-weight: 600;
	color: #198754;
	margin-bottom: 0.5rem;
}

.valor-description {
	font-size: 1.4em;
	color: #ccc;
	line-height: 1.5;
}

/* Nota de rodapé */
.footer-note {
	background-color: #f8f9fa;
	padding: 1rem;
	border-radius: 8px;
	margin-top: auto;
	text-align: center;
}

.footer-note p {
	font-size: 1.5em;
	color: #2d5a3d;
	font-style: italic;
	margin: 0;
}


/* -----------------   CLIENTES ----------------------*/


.clientes {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 4rem 1rem;
	background-color: #efe9e9;
	text-align: center;
}

.clientes h2 {
	color: #2d5a3d;
	font: 3.5em 'Oswald';
}

.clientes .clientesmessage {
	font: 1.4em 'Oswald';
	color: #2d5a3d;
	margin-bottom: 2rem;
}

.logos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
	justify-items: center;
	align-items: center;
	margin: 0;
}

.logos-grid img {
	max-width: 70%;
	height: auto;
	max-height: 80px;
	object-fit: contain;
}

.logos-slider {
	display: none;
	max-width: 991px;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 320px;
	max-width: 400px;
	/* ajuste conforme o layout */
	margin: 0 auto;
}

.slider-track {
	display: flex;
	transition: transform 0.3s ease-in-out;
}

.slide {
	flex: 0 0 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 20px 0;
	box-sizing: border-box;
}

.slide img {
	max-height: 80px;
	max-width: 80%;
	object-fit: contain;
}


.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	font-size: 2.5rem;
	padding: 0.5rem 1rem;
	cursor: pointer;
	z-index: 2;
}

.slider-btn.prev {
	left: 0;
}

.slider-btn.next {
	right: 0;
}

.carousel-indicators {
	display: flex;
	height: -780px;
	justify-content: center;
	gap: 8px;
	margin-top: 15px;
	padding-left: 0;
	list-style: none;
}

.carousel-indicators button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: none;
	background-color: #5e5d5d;
	opacity: 0.5;
	transition: all 0.3s ease;
	position: relative;
}

.carousel-indicators button.active::after {
	content: "";
	position: absolute;
	top: -4px;
	left: -4px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #555;
	box-sizing: border-box;
	z-index: -1;
}

.carousel-indicators button.active {
	background-color: #548088;
	opacity: 1;
}

.feedback {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 4rem 1rem;
	background-color: #099e53;
	text-align: center;
}

/* -------------------   Testemunhos start ----------------------------*/

.testemunho-carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 2;
	padding-top: 4rem;
}

.testemunho-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testemunho-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    color: white;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    z-index: 3;
    border-radius: 5px;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    z-index: 3;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
}

.testemunho-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-image: url('../img/nastuh-abootalebi-ZtC4_rPCRXA-unsplash-1920px.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.testemunho-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 38, 17, 0.85) 0%, rgba(3, 86, 50, 0.75) 50%, rgba(0, 38, 17, 0.85) 100%);
    z-index: 1;
}

.testemunho-title {
	display: flex;
	margin: auto;
	justify-content: center;
	text-align: center;
	align-items: center;
	padding-top: 2rem;
	font-family: 'Oswald';
	font-size: 3.5em;
	color: #fff;
}

.quote-icon {
    margin-bottom: 2rem;
    opacity: 0.7;
}

.quote-icon svg {
    width: 80px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.testemunho-content {
    animation: fadeInUp 1s ease-out;
}

.testemunho-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-style: normal;
    letter-spacing: -0.02em;
}

.testemunho-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testemunho-details {
    text-align: center;
}

.testemunho-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.testemunho-position {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* -------------------   Testemunhos ends ----------------------------*/


/* Estilo da seção */
section#section05 {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 585px;
	background-color: #ffffff;
	background-image: url(../img/fundo05.jpeg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	padding-left: 20px;
}

/* Container principal */
.section05-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;

	max-height: 405px;
	padding-bottom: 20px;
}

#section05Text {
	flex: 1;
	white-space: nowrap;
	padding-left: 5%;
}

#section05box {
	margin: 0;
}

#section05box h2 {
	border-bottom: 2px solid #035632;
    padding-bottom: 1rem !important;
	color: #035632;
	font: 3.5em 'Oswald';
}

#section05box span {
	color: #035632;
	font: 1.4em 'Oswald';
}

#section05title {
	padding-bottom: 20px;
}

/* Formulário */
.form-container {
	flex: 1;
	max-width: 60%;
	padding: 15% 5% 10% 5%;
	border-radius: 8px;
}

/* Estilo do formulário */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.contact-form .form-group {
	display: flex;
	flex-direction: column;
}

.contact-form input,
.contact-form textarea {
	font-size: 14px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	outline: none;
	transition: border-color 0.3s ease;
	opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #007bff;
	opacity: 1;
}

.contact-form textarea {
	resize: none;
	min-height: 100px;
}


.recapButton {
	z-index: 1;
	justify-content: center;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 90px;
}

div.form-group.recaptcha-container {
	display: flex;
    margin: auto;
	height: 50px;
}

.contact-form .form-submit-btn {
	background-color: #007bff;
	color: #fff;
	width: 200px;
	font-size: 1em;
	padding: 10px 15px;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

div#button.form-group {
	padding-top: 10px;
	align-items: center;
}

.contact-form .form-submit-btn:hover {
	background-color: #0056b3;
}



.section06-container-note {
	display: flex;
	margin: auto;
	justify-content: center;
}

.section06-note {
	width: 50rem;
	justify-content: center;
	background-color: #2d5a3d;
	padding: 1rem;
	margin-bottom: 2rem;
	border-radius: 8px;
	text-align: center;
}

.section06-note p {
	font-size: 1.5em;
	color: #f8f9fa;
	font-style: italic;
	margin: 0;
}

.arrow {
	display: inline-block;
	font-size: 2em;
	/* Tamanho da seta */
	animation: bounce 1s infinite;
	/* Duração e repetição */
	cursor: pointer;
	/* Deixa o ponteiro como clique */
	margin-top: 10px;
	box-shadow: #002611;
}

[data-aos=fade-up].arrow {
	opacity: 1;
	transform: translateY(0);
	transition: none;
}

/* Animação para subir e descer */
@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
		/* Posição inicial e final */
	}

	50% {
		transform: translateY(-10px);
		/* Move para cima */
	}
}

hr.divider {
	border: 0;
	height: 1px;
	background: linear-gradient(to right, #0b4351, #ffffff, #0b4351);
	margin: 20px 0;
}

#section06 {
	height: fit-content !important;
	background-color: #ffffff;
	text-align: center;
	padding: 56px 0 !important;
	font: 'Oswald';
	color: #DAE6C9;
	margin: 0 auto;
	max-width: 1920px;
	position: relative;
	overflow: hidden;
}


#section06box {
	max-width: 1000px;
	margin: 0 auto;
}

#section06 h2 {
	font-size: 3.5em;
	font-family: Oswald, sans-serif;
	color: #2d5a3d;
	margin-bottom: 20px;
	padding-left: 60px;
	text-align: left;
}

.container-box {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.content-box {
	flex: 1 1 200px;
	max-width: 300px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	margin: 0 auto;
}

.image-box img {
	width: 100%;
	height: 75%;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

/* Overlay com texto inicial */
.overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 38, 17, 0.8);
	color: #fff;
	padding: 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.5s ease-in-out;
}

/* Texto inicial */
.text-overlay {
	display: block;
	color: #DAE6C9;
}

.text-overlay h3 {
	font-size: 1.5em;
	text-align: center;
}

.full-text {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	color: #fff;
	padding: 20px;
	text-align: left;
	overflow-y: auto;
	height: 100%;
	transition: all 0.5s ease-in-out;
	color: #DAE6C9;
}

.full-text h3 {
	text-align: center;
	font-size: 1.5em;
}

.full-text strong {
	text-align: center;
	display: block;
	margin: 0 auto;
}

.content-box.active .overlay {
	top: 0;
	height: 100%;
}

.content-box.active .text-overlay {
	display: none;
}

.content-box.active .full-text {
	top: 0;
}


footer {
	width: 100%;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	color: #fff;
	background-color: #002611;
	background-image: linear-gradient(rgba(50, 168, 219, .0), #000f07);
}

footer h5 {
	font-family: Oswald, sans-serif;
	color: #DAE6C9;
}

#footerContent {
	justify-content: center !important;
	align-items: center;
	margin: auto;
}


#footerSub {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-.5 * var(--bs-gutter-x));
	margin-left: calc(-.5 * var(--bs-gutter-x));
}

footer h1 {
	margin: 20px;
	font-weight: 700;
	font-size: 6.5em;
	font-family: "Pathway Gothic One", serif;
	letter-spacing: 4px;
}

footer span {
	font: 1.4em 'Oswald';
	color: #fff;
}

.btn-floating {
	border-radius: 50% !important;
}

#mail {
	white-space: nowrap !important;
}

#mail {
	font-size: 1rem;
}

hr.footerdivider {
	border: 0;
	height: 1px;
	background-color: #fff;
	margin: 1rem 0;
	opacity: 0.4;
}

hr.footerdivider+p {
	color: #aaa;
	font-style: italic;
	font-size: .8rem;
	font-family: 'roboto, 'Courier New', 'Courier', 'monospace';
}

#shareSpace {
	display: flex;
	flex-direction: column;
	margin: auto;
	justify-content: center;
	align-items: center;
}

.contatosContent {
	display: flex-start;
	justify-content: start;
	align-items: center;
}

/*--- Scroll To Top Button */
#myBtn {
	opacity: 70%;
	display: none;
	position: fixed;
	bottom: 1.25rem;
	right: 1.875rem;
	z-index: 99;
	border: 2px solid;
	color: #fff;
	outline: #fff;
	background-color: #ccc;
	/*background-color: #002611; */
	cursor: pointer;
	padding: 6px;
	border-radius: 3.125rem;
	font-size: 0.75rem;
}

.offcanvas-header {
	font-family: Oswald, sans-serif;
	font-weight: 700;
}

.offcanvas-header h5 {
	font-weight: 700;
	font-size: 1.8em;
}

.offcanvas-body {
	font-family: Oswald, sans-serif;
	font-size: 1.5em;
}

/* Estilos gerais para Desktop - 1440px */
@media (max-width: 1440px) {


	.fullyheader {
		background-color: rgba(255, 255, 255, 0.2);
		-webkit-backdrop-filter: blur(1px);
		backdrop-filter: blur(1px);
	}

	header {
		background-image: linear-gradient(to bottom, rgba(0, 38, 17, 0.7), rgba(255, 255, 255, 0.8)), url(../img/fundo01-1920px.jpeg);
		background-position: center top;
		background-size: auto 100%;
		background-repeat: no-repeat;
		height: 100vh;
	}

	#header img {
		display: flex;
		width: 30rem;
		height: auto;
		justify-content: center;
		align-items: middle;
		margin: auto;
	}

	#logo {
		padding-top: 10rem;
		width: 100%;
		max-width: 1440px;
	}

	section#section02 {
		min-height: 315px;
		width: 100%;
		max-width: 1440px;
		margin: auto;
	}

	section#section03 {
		background-image: url(../img/fundo03-1920px.png);
	}

	section.clientes {
		width: 100%;
		max-width: 1440px;
	}

	section#section05 {
		width: 100%;
		max-width: 1440px;
	}

	footer {
		width: 100%;
		max-width: 1440px;
	}
}

@media (max-width: 1024px) {

	header {
		background-image: linear-gradient(to bottom, rgba(0, 38, 17, 0.7), rgba(255, 255, 255, 0.8)), url(../img/fundo01-1920px.jpeg);
	}

	#header img {
		width: 20rem;
		height: auto;
	}

	#logo {
		width: 100%;
	}

	#logo h2 {
		font-size: 2.2em;
	}

	.nav {
		--bs-nav-link-padding-x: 0.5rem !important;
	}

	section#section02 {
		min-height: 315px;
		width: 100%;
		max-width: 1024px;
		margin: auto;
	}

	section#section03 {
		background-image: url(../img/fundo03-1920px.png);
		background-position: 40% 46%;
		background-size: auto 90%;
	}

	section#section04 {
		background-image: url(../img/fundo04-1920px.jpeg);
		background-size: auto 90%;
		background-repeat: no-repeat;
		background-position: 42% 120%;
	}

	section.clientes {
		width: 100%;
		max-width: 1024px;
	}

	.logos-slider {
		display: none;
	}

	section#section05 {
		width: 100%;
		max-width: 1024px;
	}

	#section05Text {
		flex: 1;
		white-space: wrap;
		padding-left: 5%;
	}

	.form-container {
		flex: 1;
		max-width: 90%;
		padding: 5% 5% 10% 5%;
		border-radius: 8px;
		height: 450px;
	}

	.experiencia-section {
		height: auto;
	}

	footer {
		width: 100%;
		max-width: 1024px;
	}

	#shareSpace {
		padding-left: 100px;
	}

	#lideres {
		height: 100%;
	}
}

@media (width: 1024px) and (height: 1366px) {
	/* Only iPad Pro */

	#logo {
		padding-top: 10rem;
	}

	#header img {
		width: 700px;
		height: auto;
	}
}

@media (height: 600px) and (width: 1024px) {
	/* Only Nest Hub*/

	header {
		background-image: linear-gradient(to bottom, rgba(0, 38, 17, 0.7), rgba(255, 255, 255, 0.8)), url(../img/fundo01-1920px.jpeg);
	}

	section#header {
		display: flex;
		height: auto;
		justify-content: center;
		align-items: middle;
		margin: auto;
	}

	#logo {
		position: relative;
		top: -20px;
	}

	#logo img {
		width: auto;
		height: 200px;
	}

	#logo h2 {
		font-size: 2rem;
	}

	.experiencia-section .main-title {
		font-size: 2.5rem;
	}

	section.experiencia-section {
		height: 100vh;
	}

	.xp-main-categories {
		padding: 1rem 4rem !important;
	}

	.xp-main-categories {
		padding: 0.70rem;
		gap: 1rem;
	}
}

@media (height: 800px) and (width: 1280px) {
	/* Only Nest Hub Max */

	.experiencia-section {
		height: auto;
	}
}

@media (max-width: 991px) {

	#logo {
		padding-top: 2rem;
	}

	.logos-grid {
		display: none;
	}

	.logos-slider {
		display: block;
	}

	div.row.justify-content-center.g-4 {
		--bs-gutter-y: 3.5rem;
	}

	footer {
		width: 100%;
		max-width: 991px;
	}

	#footerSub {
		display: flex;
		margin: auto;
		justify-content: center;
		align-items: center;
	}

	.contatosContent {
		padding-top: 45px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: auto;
	}

	.contatosContent:nth-child(1) {
		margin-top: 0px !important;
		margin-bottom: 0px !important;
		display: flex;
		justify-content: center;
	}

	.contatosContent li:nth-child(3) {
		margin-bottom: 0px !important;
		padding-bottom: 0px !important;
	}

	.contatosContent h5 {
		margin-bottom: 24px !important;
		padding-bottom: 0px !important;
	}

	.contatosContent ul {
		margin-bottom: 0px !important;
	}

	#mail {
		font-size: .8rem;
	}

	#shareSpace {
		padding-top: 45px;
		padding-left: 0px;
	}
}



@media (width: 912px) and (height: 1368px) {
	/* Only Surface Pro 7*/

	#logo {
		padding-top: 10rem;
	}

	#header img {
		width: 600px;
		height: auto;
	}

	section#section03 {
		background-image: url(../img/fundo03-1920px.png);
		background-position: 60% 46%;
		background-size: auto 90%;
		height: fit-content;
	}

	#section03title h2 {
		width: 80% !important;
	}
	 
	section#section04 {
        background-position: 30% 100%;
		background-size: auto 90%;
    }

	#section04title h2 {
		width: 90% !important;
		margin-left: 10%;
	}

	#section04box>div {
		width: 40% !important;
	}
}

/* Estilos gerais para dispositivos móveis */
@media (max-width: 865px) and (min-width: 769px) {
	/* Ajustes para dispositivos móveis */

	.testemunho-carousel-track {
		padding-top: 4rem;
	}
}


@media (width: 853px) and (height: 1280px) {
	/* Only Azus Zenbook Fold*/

	#logo {
		padding-top: 10rem;
	}

	#header img {
		width: 600px;
		height: auto;
	}

	section#section03 {
		background-position: 40% 46%;
		background-size: auto 60%;
	}

    section#section04 {
        background-position: 30% 120%;
    }

	#section04box>div {
		width: 40% !important;
	}
}


@media (width: 820px) and (height: 1180px) {
	/* Only Ipad Air*/

	.navbar {
		display: block !important;
	}

	.nav-desktop {
		display: none;
	}

	#logo {
		padding-top: 10rem;
	}

	#header img {
		width: 600px;
		height: auto;
	}

	.section02Text h2 {
		width: 100%;
	}

	section#section03 {
		background-position: 50% 50%;
		background-size: auto 74%;
	}

	#section03box>div {
		max-width: 65%;
	}

	#section03box h2 {
		font-size: 2.5em;
	}

	#section03box span {
		font-size: 1.2em;
	}

	#section03title {
		padding: 20px 0 10px 0;
	}

	section#section03 {
		display: flex;
		justify-content: space-between;
	}

	#section04message {
		text-align: justify;
		max-width: 73%;
		margin-left: auto;
	}

	#section04box h2 {
		font-size: 2.5em;
	}

	#section04box>div {
		width: 50% !important;
	}

	#section04box span {
		font-size: 1.2em;
	}

	#section04title {
		padding: 20px 0 10px 0;
	}

	section#section04 {
		display: flex;
		justify-content: space-between;
		/* Cria espaço entre texto e imagem */
	}
}


@media (max-width: 768px) {

	/* Ajustes para smartphones maiores */
	.navbar {
		display: block !important;
	}

	.nav-desktop {
		display: none;
	}

	header {
		margin-top: 56px;
		background-size: cover;
		background-size: auto 105%;
		background-repeat: no-repeat;
		background-position: 48%;
	}

	#header img {
		max-width: 70%;
	}

	#downPage {
		bottom: 69px;
	}

	#logo {
		width: 80%;
		max-width: 768px;
		margin: auto;
	}

	#logo>h1,
	#logo>h2 {
		font-size: 2.5em;
		margin: 20px;
	}

	section#section02 {
		width: 100%;
		max-width: 768px;
		height: auto;
	}

	.section02Text {
		padding: 20px;
		text-align: center;
		color: #2d5a3d;
		padding-top: 40px !important;
	}

	.section02Text h2 {
		font: 2.5em 'Oswald';
	}

	div.row.justify-content-center.g-4 {
		--bs-gutter-y: 3.5rem;
	}

	section#section03 {
		background-size: auto 100%;
	}

	#section03box h2 {
		max-width: 68%;
		font-size: 2.5em;
	}

	#section03box span {
		font-size: 1.2em;
		max-width: 100% !important;
	}

	#section03title {
		padding: 20px 0 10px 0;
	}

	section#section03 {
		display: flex;
		justify-content: space-between;
		background-position: 50% 50%;
		background-size: auto 74%;
	}

	section#section04 {
		background-image: url(../img/fundo04-1920px.jpeg);
		background-size: auto 90%;
		background-repeat: no-repeat;
		background-position: 35% 120%;
	}

	#section04message {
		text-align: justify;
		max-width: 73%;
		margin-left: auto;
	}

	#section04 h2 {
		border-bottom: 2px solid #3ADCBF;
    	padding-bottom: 2rem !important;
	}

	#section04box h2 {
		font-size: 2.5em;
	}

	#section04box>div {
		width: 50% !important;
	}

	#section04box span {
		font-size: 1.2em;
	}

	#section04title {
		padding: 20px 0 10px 0;
	}

	section#section04 {
		display: flex;
		justify-content: space-between;
	}

	/* -------------- Nossa Missão -----------------------*/

	.missao-valores-section {
		height: auto;
		min-height: 60vh;
		padding: 1.5rem;
	}

	.missao-valores-section h2 {
		font-size: 2.5em;
	}

	.missao-valores-section .container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.missao-title {
		font-size: 2rem;
	}

	.valores-title {
		font-size: 2rem;
	}

	.missao-text {
		font-size: 1rem;
	}

	.metodos-text {
		font-size: 1rem;
	}

	.valores-container {
		padding-left: 0;
	}


	/* -------------------   Testemunhos start ----------------------------*/

	.testemunho-title {
		font-size: 2.5em;
	}

	.testemunho-text {
        font-size: 1.5rem;
    }

    .testemunho-photo {
        width: 60px;
        height: 60px;
    }

    .testemunho-name {
        font-size: 1.2rem;
    }

    .testemunho-position {
        font-size: 0.9rem;
    }

	/* -------------------   Testemunhos ends ----------------------------*/

	/* ------------------- Clientes start ----------------------------*/

	section.clientes {
		width: 100%;
		max-width: 768px;
	}

	.logos-slider {
		display: block;
		position: relative;
		overflow: hidden;
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}

	.clientes h2 {
		font-size: 2.5em;
	}

	.clientesmessage p {
		font-size: 1.2em;
	}

	.logos-grid {
		display: none;
	}

	.logos-slider {
		display: block;
	}

	/* -------------------   Clientes ends ----------------------------*/

	#section05box h2 {
		font-size: 2.5em;
	}

	#section05box span {
		font-size: 1.2em;
	}

	section#section05 {
		width: 100%;
		max-width: 768px;
		background-size: auto 90%;
		padding: 0 0 0 5%;
		align-items: flex-start;
		margin-bottom: -6%;
	}

	.form-container {
		width: 100%;
		max-width: 320px;
		padding: 15% 0 10% 0;
	}

	.section05-container {
		width: 70%;
	}

	#section05Text {
		padding-top: 2%;
	}

	#section05 img {
		width: 95%;
		height: 100%;
	}

	div#button.form-group {
		padding-top: 2%;
		align-items: center;
	}

	#section06 {
		height: 760px;
	}

	#section06box h2 {
		font-size: 2.5em;
	}

	#section06box h3 {
		font-size: 1.3em;
	}

	#section06box span {
		font-size: 1.2em;
	}

	.content-box {
		flex: 1 1 200px;
		max-width: 250px;
		position: relative;
		overflow: hidden;
		border-radius: 10px;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		margin: 0 auto;
	}

	#section06box .container {
		flex-direction: column;
	}

	#section06box .image-box {
		width: 100%;
	}

	#section06box .text-box {
		width: 100%;
		text-align: justify;
	}

	footer {
		width: 100%;
		max-width: 768px;
		padding-top: 26px !important;
	}

	#footerSub {
		max-width: 400px;
	}

	.contatosContent span {
		font: 17.92px 'Oswald' !important;
	}
}


@media (min-height: 790px) {

    #logo {
        padding-top: 180px;
    }

}



@media (min-height: 750px) {

    #logo {
        padding-top: 140px;
    }

}

/* Estilos gerais para dispositivos móveis */
@media (max-width: 663px) {
	/* Ajustes para dispositivos móveis */

	header {
		background-image: linear-gradient(to bottom, rgba(0, 38, 17, 0.7), rgba(255, 255, 255, 0.8)), url(../img/fundo01-1920px.jpeg);
	}

	#logo {
		width: 100%;
		max-width: 663px;
	}

	#logo>h1,
	#logo>h2 {
		font-size: 2em;
	}

	section#section02 {
		width: 100%;
		max-width: 663px;
	}

    #section03box h2 {
		max-width: none;
	}

	section#section04 {
		background-image: url(../img/fundo04-1920px.jpeg);
		background-size: auto 65%;
		background-repeat: no-repeat;
		background-position: 35% 120%;
	}

	section.clientes {
		width: 100%;
		max-width: 663px;
	}

	section#section05 {
		width: 100%;
		max-width: 663px;
	}

	#section05title {
		padding-bottom: 0;
	}

	footer {
		width: 100%;
		max-width: 663px;
	}
}

/* Estilos gerais para dispositivos móveis */
@media (max-width: 618px) and (min-width: 481px) {
	/* Ajustes para dispositivos móveis */

	.testemunho-carousel-track {
		padding-top: 2rem;
	}
}


/* Estilos gerais para dispositivos móveis */
@media (max-width: 540px) {
	/* Ajustes para dispositivos móveis */

	header {
		background-image: linear-gradient(to bottom, rgba(0, 38, 17, 0.6), rgba(255, 255, 255, 0.4)), url(../img/fundo01-mobile-663px.jpeg);
		background-position: 45% 90%;
		background-size: cover;
	}
	
	#logo img {
		padding-top: 100px;
		width: 70% !important;
		height: auto;
	}

	section#section02 {
		min-height: 315px;
		background-image: url(../img/fundo02-textura.png), linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(65, 87, 38, 0.8));
		width: 100%;
		max-width: 540px;
	}

	.section02Text strong {
		font-size: 1em;
	}

	section#section03 {
		background-image: url(../img/fundo03-1920px.png);
		background-position: 66% 46% !important;
		background-size: auto 60%;
		height: fit-content;
	}

	#section03 h2 {
		max-width: 16rem;
	}

	div#section03box {
		max-width: 400px;
		margin: 0px auto 0px 0px;
	}

	#section03title img {
		width: 100%;
	}

	section#section04 {
		background-image: url(../img/fundo04-1920px.jpeg);
		background-size: auto 65%;
		background-repeat: no-repeat;
		background-position: 35% 120%;
	}

	div#section04box {
		max-width: 340px;
		margin: 0px 0px 0px auto;
	}

	#section04title img {
		width: 100%;
	}


	section.clientes {
		width: 100%;
		max-width: 540px;
	}

	section#section05 {
		width: 100%;
		max-width: 540px;
	}

	#section05box h2 {
		line-height: 1.2;
	}

	#section06 {
		height: 600px;
	}

	footer {
		width: 100%;
		max-width: 540px;
	}

	footer h1 {
		font-size: 4em !important;
	}

	.content-box {
		max-width: 200px;
	}
}



/*Para o desafio do reCaptcha do Google  seja redimensionado em telas menores*/
@media only screen and (max-width: 500px) {
    .g-recaptcha {
        transform: scale(0.77);
        -webkit-transform: scale(0.77); /* Compatibilidade Webkit */
        transform-origin: 0 0; /* Alinha a escala ao canto superior esquerdo */
        -webkit-transform-origin: 0 0; /* Compatibilidade Webkit */
    }

    /* Opcional: Redimensiona o desafio pop-up da imagem, se necessário */
    #rc-imageselect {
        transform: scale(0.77);
        -webkit-transform: scale(0.77);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

@media (max-width: 480px) {
	/* Ajustes para smartphones menores */

	header {
		background-image: linear-gradient(to bottom, rgba(0, 38, 17, 0.6), rgba(255, 255, 255, 0.4)), url(../img/fundo01-mobile-663px.jpeg);
		background-position: 50% 90%;
		background-size: cover;
	}

	#logo img {
		padding-top: 100px;
		width: 70% !important;
		height: auto;
	}

	#header img {
		max-width: 480px;
		width: 90%;
	}

	#logo>h1 {
		/* font-size: 1.5em; */
		font-weight: bold;
	}

	#logo>h1,
	#logo>h2 {
		font-size: 2em;
	}

	/* ------- Seção 02  -------*/

	.section02Text strong {
		font-size: 1.2em;
	}

	/* ------- Seção 03  -------*/

	section#section03 {
		background-image: url(../img/fundo03-1920px.png);
	}

	#section03 h2 {
		font-size: 2em;
		width: 100%;
	}

	section#section03 {
		max-width: 480px;
		width: 100%;
		align-items: flex-start;
		background-position: 90% top;
	}

	#section03box>div {
		max-width: 55%;
	}

	#section03box p {
		width: 75%;
	}

	#section03title {
		padding: 10px 0 0px 0;
	}

	#section03title img {
		width: 80%;
	}



	/* ------- Seção 04  -------*/

	section#section04 {
		background-size: auto 64%;
		background-repeat: no-repeat;
		background-position: 30% 120%;
	}

	#section04title img {
		width: 100%;
		max-width: 480px;
	}

	#section04box>div {
		max-width: 55%;
	}

	#section04title h2 {
		font-size: 2em;
		padding: 10px 0 0 0;
		margin: 0 0 8% -20%;
	}

	#section04message {
		text-align: right;
	}

	/* -------------- Nossa Missão  -----------------------*/

	.missao-valores-section {
		padding: 1rem;
		height: auto;
		min-height: 70vh;
	}

	.missao-valores-section h2 {
		font-size: 2em;
	}

	.missao-valores-section .container {
		gap: 1.5rem;
	}

	.missao-card {
		padding: 1.5rem;
		border-radius: 20px;
	}

	.missao-title {
		font-size: 1.75rem;
		margin-bottom: 1rem;
	}

	.valores-title {
		font-size: 1.75rem;
		margin-bottom: 1rem;
	}

	.missao-text {
		font-size: 0.95rem;
	}

	.metodos-text {
		font-size: 0.95rem;
	}

	.valor-name {
		font-size: 1.125rem;
	}

	.valor-description {
		font-size: 0.9rem;
	}

	.valores-list {
		gap: 1rem;
	}

	.footer-note {
		padding: 0.75rem;
	}

	.footer-note p {
		font-size: 0.85rem;
	}

	/* ---------------------- mobile - testemunhos start ------------------------*/

	.testemunho-title {
		padding: 2rem;
		font-size: 2em;
	}

	.testemunho-carousel-track {
		padding-top: 2rem;
	}

	.testemunho-section {
        padding: 1rem;
    }

    .testemunho-text {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .quote-icon svg {
        width: 60px;
        height: 45px;
    }

    .testemunho-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .testemunho-details {
        text-align: center;
    }


	/* ---------------------- mobile - testemunhos ends -------------------------*/


	#section05title h2 {
		font-size: 2em;
	}

	#section06 {
		height: 1140px;
	}

	#section06 h2 {
		font-size: 2em;
		padding-left: 20px;
	}

	#section06 h3 {
		font-size: 1em;
	}

	#section06 .container-box {
		gap: 82px;
	}

	footer h1 {
		font-size: 3.5em;
	}
}

@media (width: 430px) and (height: 932px) {
	/* Only iPhone 14 pro max  */

	section#section03 {
		background-position: 68% 50% !important;
		background-size: auto 40%;
		height: fit-content;
	}

	#section03box>div {
        max-width: 60%;
    }

	#section03box p {
		padding-top: 1rem;
		min-width: 350px !important;
	}

	#section03box h2 {
		max-width: 90%;
		width: 400px !important;
		font-size: 2.5em;
	}
}


@media (min-width: 425px) and (max-width: 479px) {

	header {
		background-image: linear-gradient(to bottom, rgba(0, 38, 17, 0.6), rgba(255, 255, 255, 0.4)), url(../img/fundo01-mobile-663px.jpeg);
		background-size: auto 150%;
		background-position: 50% 40% !important;
	}

	#logo img {
		width: 70% !important;
		height: auto;
	}

	section#section02 {
		width: 100%;
		max-width: 768px;
		height: auto;
	}

	.section02Text {
		padding: 20px;
		text-align: center;
		color: #2d5a3d;
		padding-top: 40px !important;
	}

	.section02Text h2 {
		font: 2.5em 'Oswald';
		width: 100%;
	}

	section#section03 {
		background-position: 70% 46%;
		background-size: auto 50%;
	}

	#section03 h2 {
		margin-bottom: 0;
	}

	#section03box h2 {
		max-width: 90%;
	}

    #section03box p {
        font-size: 1.2em;
		min-width: 400px;
    }

	#section03box p {
		margin-bottom: 2%;
	}

	#section03title {
		padding: 5px 0 0 0;
	}

	section#section04 {
		background-image: url(../img/fundo04-1920px.jpeg);
		background-size: auto 64%;
		background-repeat: no-repeat;
		background-position: 30% 120%;
	}

	#section04title h2 {
		display: flex;
		justify-content: end;
		white-space: nowrap;
		padding: 0;
	}

	#section04title img {
		width: 90%;
	}

	#section04box p {
		width: 100%;
	}

	#section04box>div {
		max-width: 57%;
	}

	#section04title {
		padding: 6% 0 2% 0;
	}

	.clientes h2 {
		letter-spacing: -2px !important;
	}

	section#section05 {
		margin-bottom: -10%;
	}

	.form-container {
		width: 100%;
		max-width: 320px;
		padding: 26% 6% 6% 10%;
	}

}

@media (min-width: 375px) and (max-width: 424px) {

	header {
		background-image: linear-gradient(to bottom, rgba(0, 38, 17, 0.6), rgba(255, 255, 255, 0.4)), url(../img/fundo01-mobile-663px.jpeg);
		background-repeat: no-repeat;
		background-position: center top !important;
		background-size: cover;
	}

	div.row.justify-content-center.g-4 {
		--bs-gutter-y: 1.5rem;
	}

	#section02 h2 {
		font-size: 2em;
		line-height: 1.2em;
	}

	section#section03 {
		background-position: 65% 50%;
		min-height: 350px;
	}

	#section03 h2 {
		margin-bottom: 0;
		white-space: wrap;
		margin-right: 60%;
		font-size: 1.8em;
		line-height: 1.2em;
	}

	#section03box p {
		margin-bottom: 6%;
		font-size: .9em;
		width: 170%;
	}

	#section03title {
		max-width: 290px;
		white-space: wrap;
	}

	#section03title img {
		width: 90%;
	}

	section#section04 {
		background-image: url(../img/fundo04-1920px.jpeg);
		background-size: auto 64%;
		background-repeat: no-repeat;
		background-position: 28% 120%;
	}

	#section04title h2 {
		padding: 0;
		margin: -5% 0 0 -40%;
		white-space: wrap;
		font-size: 1.8em;
	}

	#section04title img {
		width: 90%;
	}

	#section04box p {
		margin: 0 0 10% 0;
		font-size: .9em;
		max-width: 114px;
		line-height: 1.2em;
		text-align: right;
	}

    #section04box>div {
      width: 80% !important;
    }

	#section04box>div {
		max-width: 57%;
	}

	#section04title {
		padding: 6% 0 2% 0;
	}

	#section04message {
		max-width: 114px;
	}

	.clientes h2 {
		letter-spacing: -2px !important;
	}

	p.clientesmessage {
		font: 17.92px 'Oswald' !important;
	}

	.logos-slider {
		display: block;
		position: relative;
		overflow: hidden;
		width: 100%;
		height: 320px;
		margin: 0 auto;
	}

	.slider-btn {
		padding: 0 0;
	}

	.recapButton{
		gap: 100px;
	}

	button.form-submit-btn {
		font-size: .8em;
		width: 80%;
	}

	section#section05 {
		margin-bottom: -11%;
	}

	.form-container {
		width: 100%;
		max-width: 320px;
		padding: 30% 6% 10% 6%;
	}

}


@media (width: 375px) and (height: 667px) {
	/* Estilo específico para Iphone SE */

	header {
		background-image: linear-gradient(to bottom, rgba(0, 38, 17, 0.6), rgba(255, 255, 255, 0.4)), url(../img/fundo01-mobile-663px.jpeg);
		background-repeat: no-repeat;
		background-position: center 50% !important;
		background-size: 150%;
	}

	#section03 {
		background-position: 68% 50% !important;
	}

	#section03box h2 {
		max-width: 100%;
	}

}

@media (min-width: 270px) and (max-width: 374px) {

	section#header {
		width: 100%;
		max-width: 374px !important;
	}

	header {
		background-image: linear-gradient(to bottom, rgba(0, 38, 17, 0.6), rgba(255, 255, 255, 0.4)), url(../img/fundo01-mobile-663px.jpeg);
		background-repeat: no-repeat;
		background-position: center top !important;
		background-size: cover;
	}

	#logo {
		width: 100%;
		margin: auto;
	}

	h2 {
		font-size: 1.8em !important;
	}


	div.row.justify-content-center.g-4 {
		--bs-gutter-y: 1.5rem;
	}

	section#section03 {
		background-position: 64% 56%;
		background-size: auto 40%;
		;
		min-height: auto;
	}

	#section03box>div {
		max-width: 80%;
	}

	#section03box p {
		width: 100% !important;
	}

	#section03 h2 {
		margin-bottom: 0;
		margin-right: 0%;
		font-size: 1.8em;
		line-height: 1.2em;
	}

	#section03box h2 {
        max-width: 68%;
    }

	#section03 p {
		font-size: .8em;
	}

	#section03box span {
		width: 70% !important;
		max-width: fit-content !important;
		min-width: fit-content !important;
	}

	section#section04 {
		background-image: url(../img/fundo04-1920px.jpeg);
		background-size: auto 50%;
		background-repeat: no-repeat;
		background-position: 30% 112%;
	}

	#section04 p {
		font-size: .8em;
	}

	#section04box span {
		font-size: 1.4em;
	}

	#section04title h2 {
		display: flex;
		justify-content: end;
		font-size: 1.8em;
		white-space: nowrap;
		padding: 10px 0 0 0;
		margin: 0 0 8% -40%;
	}

	p.clientesmessage {
		font: 17.92px 'Oswald' !important;
	}

	section#section05 {
		display: block;
		height: 740px;
		padding: 5% 5% 0 5%;
		background-position: 68% 0%;
		margin-bottom: -22px;
	}

	#section05title,
	#section05title h2,
	#section05title img,
	#section0message p,
	#section05Text {
		padding: 0;
		margin: 0;
		text-align: center;
	}

	.section05-container {
		max-width: 100%;
		width: 100%;
		/*display: flex;*/
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		padding: 10px;
		box-sizing: border-box;
	}

	#section05 #section05 span {
		font: 1em 'Oswald';
	}

	#section05Text {
		margin-bottom: 20px;
	}

	.form-container {
		width: 100%;
		max-width: 320px;
		padding: 5% 0 10% 0;
	}

	div.form-group.recaptcha-container {
		align-items: center;
		margin: 20px 0;
	}
	

	.contact-form {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.form-group {
		width: 100%;
	}

	div#button.form-group {
		align-items: center;
	}

	.form-submit-btn {
		width: 100%;
		padding: 10px;
		font-size: 16px;
		background-color: #007bff;
		color: #fff;
		border: none;
		border-radius: 5px;
		cursor: pointer;
	}

	.form-submit-btn:hover {
		background-color: #0056b3;
	}

	.section05-container {
		display: flex;
		justify-content: center !important;
		align-items: center !important;
		text-align: center !important;
		margin: 0 !important;
	}

	div.form-group.recaptcha-container {
		align-items: center;
	}

	#section06 {
		padding: 0;
	}

	#section06 .content-box {
		max-width: 200px;
	}

	footer h1 {
		font-size: 3.5em !important;
	}

	.contatosContent ul {
		padding-left: 1px;
	}

	#mail span {
		letter-spacing: -0.5px !important;
	}
}