/*
Theme Name: Modo Acelera
Theme URI: https://www.modoacelera.com.br/
Description: Tema desenvolvido para a Modo Acelera
Author: Rafael Peres (Hausti Tecnologia Inteligente)
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: modo-acelera
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body {
	background-color: #F8F8F8;
	color: #666;
	font-family: 'Poppins', 'Open Sans', sans-serif;
	font-size: 15px;
	font-weight: 400;
	margin: 0;
	padding: 0;
}

html {
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*-----------------------------
-> HEADER
-----------------------------*/

header {
	background-color: #FFF;
	box-shadow: 0 12px 10px 0px rgba(50, 50, 50, .1);
	padding: 5px 0;
	position: fixed;
	top: 0;
	z-index: 1000 !important;
}

	header .logotipo {
		margin: 10px 0 0;
	}

		header .logotipo img {
			height: auto;
			width: 250px;
		}

	header .icones-cabecalho {
		margin: 5px 5px 2px 0;
		position: relative;
		text-align: right;
	}

		header .icones-cabecalho div {
			display: inline-block;
			margin-left: 10px;
		}

			header .icones-cabecalho div a {
				color: #888;
				display: inline-block;
				font-size: 18px;
				transition: color 1s ease;
			}

				header .icones-cabecalho div a:hover {
					color: #000;
				}

section.home {
	margin: 0px auto;
}

	section.home .texto-inicial {
		margin: -40px auto 50px;
	}

	section.home .botao-home-diagnostico {
		font-size: 14px;
		font-weight: 500;
		letter-spacing: 0;
		margin-left: 0;
		max-width: 380px;
		padding: 8px 43px;
		text-align: center;
		transition: all 1s;
		width: 100%;
	}

	section.home h1 {
		color: #050170;
		font-size: clamp(3rem, 5.5vw, 3.48rem);
		font-weight: 300;
		line-height: 55px;
	}

		section.home h1 strong {
			color: #050170;
			font-size: clamp(4.4rem, 5vw, 5rem);
			font-weight: 700;
		}

		section.home p {
			color: #050170;
			font-size: clamp(1.4rem, 5.5vw, 1.55rem);
			font-weight: 400;
			margin-bottom: 8px;
		}

section.servicos {
	background: #050170;
	color: #FFF;
	font-weight: 400;
	margin: 60px auto 0;
	padding-bottom: 60px;
	padding-top: 60px;
	position: relative;
}

	section.servicos .titulo-servicos {
		margin-bottom: 50px;
		text-align: center;
	}

	section.servicos h1 {
		color: #FFF;
		font-size: 45px;
		text-align: center;
	}

	section.servicos h2 {
		color: #FFF;
		text-align: center;
	}

	section.servicos .box-servicos-container {
		margin-bottom: 40px;
	}

	section.servicos .box-icone-servico {
		background-color: #155BA8;
		border-radius: 8px;
		cursor: pointer;
		max-width: 250px;
		padding: 20px 20px 8px;
		text-align: center;
		text-transform: uppercase;
		transition: all 1s;
		width: 100%;
	}

		section.servicos .box-icone-servico:hover {
			background-color: #3030AE;
			box-shadow: 0 0 22px 0 rgba(0,0,0,0.3);
			-webkit-box-shadow: 0 0 22px 0 rgba(0,0,0,0.3);
			-moz-box-shadow: 0 0 22px 0 rgba(0,0,0,0.3);
		}

		section.servicos .box-icone-servico.ativo {
			background-color: #04015A !important;
			border-bottom: 3px solid #1486F6;
		}

		section.servicos .box-icone-servico p {
			margin-top: 30px;
		}

		section.servicos .box-icone-servico img {
			height: 50px;
			width: auto;
		}

	section.servicos .textos-servicos h3 {
		color: #FFF !important;
	}

section.servicos .titulo-servicos h1 {
	font-size: 38px;
}

section.servicos .titulo-servicos h2 {
	color: #FFF;
	font-size: 17px;
	font-weight: 400;
	text-align: center;
}

.textos-servicos {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.3s ease, transform 0.3s ease;
	min-height: 100px;
	overflow: hidden;
}

.textos-servicos.fade-out {
	opacity: 0;
	transform: translateY(-10px);
}

.textos-servicos.fade-in {
	opacity: 1;
	transform: translateY(0); /* volta à posição normal */
}

/* Container com scroll horizontal */
.scroll-horizontal {
	display: flex;
	flex-direction: row;
	overflow-x: auto;
	gap: 1rem;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scroll-padding-left: 1rem;
	position: relative; /* para posicionar as setas */
}

.scroll-horizontal::-webkit-scrollbar {
	display: none;
}

.box-icone-servico {
    max-width: 100% !important;
}

.scroll-horizontal {
    scroll-padding-left: 0 !important;
}

.card-servico {
	scroll-snap-align: start;
	width: 100%;
	flex-shrink: 0;
	padding: 0 !important;
	box-sizing: border-box;
}

.box-icone-servico.ativo {
	background-color: var(--cor-destaque);
	color: #fff;
}

.only-desktop-br {
  display: none;
}

.fade-out {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s, transform 0.3s;
}

.fade-in {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.3s, transform 0.3s;
}

/* Setas */
.scroll-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.scroll-arrow.left {
	left: 10px;
}

.scroll-arrow.right {
	right: 10px;
}

section.metodo {
	background: #FFF;
	padding-bottom: 60px;
	padding-top: 60px;
}

	section.metodo .titulo-metodo {
		margin-bottom: 30px;
	}

		section.metodo .titulo-metodo h1 {
			color: #04015A;
			font-size: clamp(1.65rem, 5vw, 1.65rem);
			font-weight: 400;
			line-height: 1;
			letter-spacing: -1px;
			text-align: center;
		}

			section.metodo .titulo-metodo h1 strong {
				font-size: clamp(2rem, 5vw, 2rem);
				font-weight: 700;
			}

section.operacao {
	background-color: #CCE757;
	color: #04015A;
	padding-bottom: 60px;
	padding-top: 60px;
}

	section.operacao .operacao-content { }

		section.operacao .operacao-content h1, section.operacao .operacao-content h2 {
			color: #04015A;
			font-weight: 400;
			text-align: center;
		}

		section.operacao .operacao-content h1 {
			font-size: 39px;
			letter-spacing: -1px;
			line-height: 1;
			margin-bottom: 20px;
			text-align: center;
		}

			section.operacao .operacao-content h1 strong {
				font-size: 44px;
				font-weight: 700;
			}

		section.operacao .operacao-content h2 {
			font-size: 22px;
			margin-bottom: 20px;
		}

		section.operacao .operacao-content .icones {
			margin-bottom: 40px;
			text-align: center;
		}

			section.operacao .operacao-content .icones img {
				cursor: pointer;
				height: 40px;
				margin-right: 5px;
				width: 40px;
			}

		section.operacao .operacao-content .modo-acelera-contato {
			display: none;
			margin: 40px auto;
			text-align: left;
		}

			section.operacao .operacao-content .modo-acelera-contato img {
				height: auto;
				max-width: 300px;
				width: 100%;
			}

	section.operacao .contato {
		background-color: #196DBF;
		padding: 30px 20px;
		position: relative;
		width: 100%;
	}

		section.operacao .contato .botao-enviar-contato {
			margin-left: 0;
			margin-top: 20px;
			position: relative;
			top: 0;
			transition: all 1s;
			width: 100%;
		}

			section.operacao .contato .botao-enviar-contato:hover {
				background-color: #000
			}

.quem-somos {
	margin: 160px auto 80px;
}

	.quem-somos .imagem-destaque {
		margin: 10px auto 50px;
		text-align: center;
	}

/*-----------------------------
-> PÁGINA NÃO ENCONTRADA (404)
-----------------------------*/

section.pagina-nao-encontrada {
	margin-bottom: 100px;
	margin-top: 350px;
}

	section.pagina-nao-encontrada h2 {
		font-size: 32px;
		text-align: center;
	}

/*-----------------------------
-> GLOBAL
-----------------------------*/

main {
	margin-top: 200px;
	position: relative;
	z-index: 100;
}

h1, h2, h3 {
	color: #000;
	font-family: 'Open Sans', 'Poppins', sans-serif;
	letter-spacing: -.5px;
	margin: 0;
	padding: 0;
	text-align: left;
}

	h1 {
		font-size: 35px;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 18px;
	}

strong {
	font-weight: 600;
}

a {
	color: #246FD6;
  padding-bottom: 13px;
  position: relative;
	text-decoration: none;
  transition: all .5s;
}

	a:hover {
    color: #000;
	}

label {
	width: 100%;
}

input, select {
	background-color: #FFF;
	border: 1px solid transparent;
	border-radius: 5px;
	color: #6E6E6E;
	font-family: 'Poppins', 'Roboto', 'Helvetica Neue', Arial;
	font-size: 15px;
	margin: 10px 0 0;
	opacity: 1;
	outline: none;
	padding: 15px;
	resize: none;
	transition: all 1s;
	width: 100%;
}

	input::placeholder, textarea::placeholder, select::placeholder {
		color: #666;
	}

	select.erro {
		color: #FF0000 !important;
		font-weight: 500;
	}

	input.erro::placeholder, textarea.erro::placeholder {
		color: #FF0000 !important;
		font-weight: 500;
	}

	input:focus, select:focus {
		background-color: #F4F4F4 !important;
		border: 1px solid #0C3914 !important;
	}

.container {
	max-width: 1340px !important;
}

.container-small {
	max-width: 1240px !important;
}

.container-nano {
	max-width: 1140px !important;
}

.botao-padrao {
	background-color: #050170;
	border-radius: 8px;
	color: #FFF;
	cursor: pointer;
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
	margin-left: 50px;
	padding: 19px 30px 17px;
	position: relative;
	top: -2px;
	transition: all .5s;
}

	.botao-padrao:hover {
		background-color: #1486F6;
		color: #FFF;
	}

.custom-icon {
	font-size: 22px;
}

.overlay {
	background-color: #000;
	display: none;
	height: 100%;
	left: 0;
	margin: 0;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 30px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.conteudo-overlay {
	color: #FFF;
	display: none;
	position: fixed;
	text-align: center;
	top: 50%;
	width: 100%;
	z-index: 1001;
}

	.conteudo-overlay .botao-fechar-overlay {
		background-color: #CAF51F;
		color: #000;
		margin: 30px auto 0;
		max-width: 250px;
		padding: 25px;
		text-align: center;
		width: 100%;
		z-index: 1002;
	}

		.conteudo-overlay .botao-fechar-overlay:hover {
			background-color: #FFF !important;
			color: #000;
		}

.topo {
	background-image: url('imagens/topo.png'); 
	bottom: 20px !important;
	border-radius: 100%;
	cursor: pointer;
	display: none;
	height: 40px;
	position: fixed;
	right: 30px;
	width: 40px;
	z-index: 10000;
}

.cmplz-cookiebanner { }

	.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
		font-size: 13px !important;
		font-family: 'Poppins', 'Open Sans', sans-serif !important;
		font-weight: 300 !important;
		text-transform: uppercase;
	}

	.cmplz-cookiebanner .cmplz-links.cmplz-documents {
		display: none;
	}

/*-----------------------------
-> FOOTER
-----------------------------*/

footer {
	background: #050170;
	color: #FFF;
	padding-bottom: 40px;
	padding-top: 40px;
	position: relative;
}

	footer h2 {
		color: #FFF;
		font-size: 22px;
		font-weight: 400;
		margin-bottom: 15px;
		text-align: center;
	}

		footer .contato-item {
			align-items: center;
			color: #FFF;
			display: flex;
			font-size: 15px;
			font-family: 'Poppins', 'Open Sans', sans-serif;
			gap: 10px;
			justify-content: center;
			margin-bottom: 7px;
			text-align: center;
		}

		footer .redes-sociais-icons {
			display: flex;
			gap: 15px;
			justify-content: center;
			margin-top: 10px;
		}

			footer .custom-icon {
				color: #FFF;
				cursor: pointer;
				font-size: 23px;
				transition: transform 0.3s ease;
			}

				footer .custom-icon:hover {
					transform: scale(1.2);
				}

	footer .rodape-coluna-redes-sociais {
		margin: 30px auto;
		text-align: center;
	}

	footer .logotipos-parceiros {
		align-items: center;
		display: flex;
		flex-direction: column;
		gap: 5px;
		justify-content: center;
	}

		footer .logotipos-parceiros img {
			display: block;
			height: auto;
			width: 120px;
		}

  footer .direitos-reservados-rodape {
  	color: #FFF;
		font-size: 13px;
		font-weight: 400;
  }

  footer .melhor-experiencia {
		font-size: 12px;
		text-align: center;
  }

.logotipo-branco-rodape {
	margin: 0 auto 30px;
	text-align: center;
}

.rodape-coluna-contato {
	text-align: center;
}

/*-----------------------------
-> RESPONSIVO
-----------------------------*/

@media (min-width: 1200px) {

	main {
		margin-top: 190px;
	}

	section.home { }

		section.home .texto-inicial {
			margin: 15px auto;
		}

		section.home .botao-home-diagnostico {
			max-width: 360px;
		}

	section.servicos {
		margin: 40px auto 0;
		padding-bottom: 30px;
		padding-top: 30px;
	}

		section.servicos h1 {
			font-size: 45px !important;
		}

		section.servicos h2 {
			font-size: 20px !important;
		}

		section.metodo {
			padding-bottom: 60px;
			padding-top: 50px;
		}

			section.metodo .titulo-metodo {
				margin-bottom: 30px;
			}

	.scroll-horizontal {
		overflow-x: visible !important;
		flex-wrap: wrap;
		gap: 0;
	}

	.card-servico {
		width: auto;
		min-width: 0;
		flex: 0 0 calc(25% - 1.5rem);
		max-width: calc(25% - 1.5rem);
		padding: 0 0.75rem;
	}

	.only-desktop-br {
		display: inline;
	}

	.scroll-arrow {
		display: none;
	}

	section.operacao {
		padding-top: 60px;
	}

		section.operacao .operacao-content {
			color: #04015A;
			max-width: 330px;
			width: 100%;
		}

			section.operacao .operacao-content h1, section.operacao .operacao-content h2 {
				font-weight: 400;
				text-align: left;
			}

			section.operacao .operacao-content h1 {
				font-size: 34px;
				line-height: 1.1;
			}

				section.operacao .operacao-content h1 strong {
					font-size: 39px;
					font-weight: 700;
				}

			section.operacao .operacao-content h2 {
				font-size: 20px;
				line-height: 1.5;
				margin-bottom: 20px;
			}

			section.operacao .operacao-content .icones {
				text-align: left;
			}

			section.operacao .operacao-content .modo-acelera-contato {
				display: block !important;
				margin-top: 120px;
			}

		section.operacao .contato {
			padding: 50px;
		}

			section.operacao .contato .botao-enviar-contato {
				width: auto;
			}

		footer .rodape-coluna-redes-sociais, footer .logotipo-branco-rodape {
			margin-left: 30px;
			margin-top: 0;
			text-align: left;
		}

		footer .redes-sociais-icons {
			justify-content: flex-start;
		}

	footer h2 {
		font-size: 20px;
		text-align: left;
	}

	footer .contato-item {
		justify-content: flex-start;
		text-align: left;
	}

	footer .logotipos-parceiros {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}

}