:root {

	--azul-claro: #5DDEFE;
	--azul-medio: #085B7D;
	--azul-escuro: #103D52;
	--azul: #099ECC;
	--background-cinza: #F6F6F6;
	--cinza: #647C96;
	--cinza-claro: #001A2624;
	--preto: #404142;
	--branco: #FFFFFF;

	--text: #001A26;

	--padding-x-global: 3.25rem;
	--padding-x-global-mobile: 1.5rem;
	--section-y-global: 3rem;
	--section-y-global-mobile: 1rem;

	--Space-Grotesk: "Space Grotesk", sans-serif;

	--h1-fs: 3.5rem;
	--h1-lh: 1.2em;
	--h2-fs: 2.2rem;
	--h2-lh: 1.2em;
	--h3-fs: 1.8rem;
	--h3-lh: 1.2em;
	--h4-fs: 1.375rem;
	--h4-lh: 1.2em;
	--h5-fs: 1rem;
	--h5-lh: 1.2em;
	--h6-fs: 1.125rem;
	--h6-lh: 1.2em; 

	--h1-fs-mobile: 2rem;
	--h1-lh-mobile: 1.2em;
	--h2-fs-mobile: 1.75rem;
	--h2-lh-mobile: 1.2em;
	--h3-fs-mobile: 2rem;
	--h3-lh-mobile: 1.2em;
	--h4-fs-mobile: 1.375rem;
	--h4-lh-mobile: 1.2em;
	--h5-fs-mobile: 1.25em;
	--h5-lh-mobile: 1.2em;
	--h6-fs-mobile: 1.125rem;
	--h6-lh-mobile: 1.2em; 

	--bs-offcanvas-mobile-padding-x: 2rem
}

h1, h2,
.h1, .h2 {
	font-weight: 400;
}

.h1, h1 {
	font-size: var(--h1-fs);
	line-height: var(--h1-lh);
}

.h2, h2 {
	font-size: var(--h2-fs);
	line-height: var(--h2-lh);
}

.h3, h3 {
	font-size: var(--h3-fs);
	line-height: var(--h3-lh);
}

.h4, h4 {
	font-size: var(--h4-fs);
	line-height: var(--h4-lh);
}

.h5, h5 {
	font-size: var(--h5-fs);
	line-height: var(--h5-lh);
}

.h6, h6 {
	font-size: var(--h6-fs);
	line-height: var(--h6-lh);
}

@media(max-width: 568px){
	.h2, h2 {
		font-size: var(--h2-fs-mobile);
		color: var(--azul-escuro);
		font-weight: 500;
	}

	.h3, h3 {
		font-size: var(--h3-fs-mobile);
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--Space-Grotesk);
	color: var(--text);
}

body{
	background-color: var(--background-cinza);
}

a{
	transition: 0.5s;
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: none;
	color: inherit;
}

:not(.content) > ul,
:not(.content) > ol {
	list-style: none;
	padding: 0;
	margin-bottom: 0;
}

button.btn,
button.btn:active,
button.btn:focus,
input:active,
input:focus,
textarea:active,
textarea:focus {
	outline: none !important;
	box-shadow: none !important;
}

button.btn:active {
	outline: none !important;
	box-shadow: none !important;
	border-color: transparent !important;
}

.form-control:focus {
	box-shadow: none;
}

.main{
	margin-top: 8rem;
}
@media(max-width: 576px){
	.main{
		margin-top: 5rem;
	}
}

.wrapper {
	padding: var(--section-y-global) 0;
	overflow: hidden;
}

.padding{
	padding: var(--section-y-global) 0;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	padding: 0 var(--padding-x-global);
	max-width: 85rem;
}

.container-person{
	padding-left: 4rem;
}

@media(max-width: 576px){
	header .container{
		padding: 0 var(--padding-x-global-mobile);
	}
	
	.container{
		padding: var(--padding-x-global-mobile);
	}

	.container-person{
		padding: var(--padding-x-global-mobile);
	}
	
	.wrapper {
		padding: var(--section-y-global-mobile) 0;
	}
}

/* SUBTITULOS */
.subtitle{
	color: var(--azul-medio);
	font-weight: 600;
}

.subtitle-banner {
	color: var(--azul);
	font-weight: 600;
	font-size: 1.2rem;
}

/* BOTÃO PADRÃO*/
.btn.btn-default {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 260px;
	height: 55px;
	transition: 0.8s;
	border: 1px solid transparent;
	background-color: rgba(255, 255, 255, 0.4);
}

.btn.btn-default.ajax {
	background-color: var(--azul-escuro);
	color: var(--branco);
}

.btn.btn-default.ajax:hover {
	background-color: var(--azul-medio);
	color: var(--branco);
}

.btn.btn-default p{
	margin-bottom: 0;
	color: var(--branco);
}

.btn.btn-default:hover{
	border: 1px solid var(--branco);
}

.btn.btn-default:hover p{
	text-decoration: underline var(--branco);
}

.btn-default-outline{
	text-underline-offset: 4px;
	text-decoration: underline var(--branco);
	color: var(--branco);
}

.btn-default-outline:hover{
	text-shadow: 2px 2px 5px var(--branco);
	text-decoration: underline var(--branco);
	color: var(--branco);
}

.btn-default-outline.azul{
	text-decoration: underline var(--azul-escuro);
	color: var(--azul-escuro);
	font-weight: 500;
}

.btn-default-outline.azul:hover{
	text-shadow: 2px 2px 5px var(--azul-medio);
	text-decoration: underline var(--azul-medio);
	color: var(--azul-medio);
}

.btn-default-outline.cinza{
	text-decoration: underline var(--cinza);
	color: var(--cinza);
	font-weight: 500;
}

.btn-default-outline.cinza:hover{
	text-shadow: 2px 2px 5px var(--azul-medio);
	text-decoration: underline var(--azul-medio);
	color: var(--azul-medio);
}

/* HEADER */
header {
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(8,91,125, 0.7); /* Fundo preto com 50% de opacidade */
    backdrop-filter: blur(5px); /* Efeito de desfoque (opcional) */
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
}

header .navbar {
	margin: 2rem 0;
}

header.scrolled .navbar {
    margin: 0.7rem 0;
	transition: 0.5s;
}

header .navbar-brand img{
	height: 2.5rem;
}

header .navbar .menu ul{
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

header .navbar .menu li {
	margin-left: 3rem;
}

header .navbar .menu li a,
#offcanvasMenu .menu li a {
	font-size: 0.9rem;
	font-weight: 500;
	transition: 0.3s;
	text-transform: uppercase;
}

#offcanvasMenu .menu li a,
header .navbar .menu li a {
	color: var(--branco);
}

header .navbar .menu li a:hover,
#offcanvasMenu .menu li a:hover{
	text-decoration: underline var(--branco);
}

/* header .navbar .menu li a:hover:not(.sub-menu){
	text-decoration: none;
} */

#offcanvasMenu {
	background: linear-gradient(180deg, var(--azul) 0%, var(--cinza) 100%) 0% 0% no-repeat padding-box;
	height: fit-content;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

#offcanvasMenu .offcanvas-body{
	padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-mobile-padding-x);
}

/* SUBMENU */
header .navbar.desktop .dropdown-button,
#offcanvasMenu .dropdown-button {
	position: relative;
}

header .navbar.desktop .dropdown-button > a:after,
#offcanvasMenu .dropdown-button > a:after {
	content: "\f0d7";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--rosa);
	margin-left: 0.5rem;
}

header .navbar.desktop .sub-menu {
	list-style: none;
	top: 5rem;
	position: absolute;
	display: block;
	width: 17rem;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: .5rem 1rem 1rem;
	background-color: rgba(0, 0, 0, 0.5);
	visibility: hidden;
	border-radius: 1rem;
	text-align: center;
	margin-left: -5rem;
}

header .navbar.desktop .sub-menu li {
	margin: 0;
	padding: 0.5rem 0 ;
}

header .navbar.desktop .sub-menu li a {
    position: relative;
    display: block;
    font-size: 0.8rem;
    width: 100%;
    font-weight: 300;
/* 	border-bottom: 1px solid #cccccc; */
	padding:  0 0 0.5rem;
}

/* MENU MOBILE */
#logo-mobile{
	display: none;
}

header .menu-btn {
	display: none;
	font-size: 28px;
	transform: scaleX(1.3);
}

/* RESPONSIVIDADE HEADER */
@media(max-width: 1320px){

	header .navbar-brand img{
		height: 1.875rem;
	}

}

@media(max-width: 1028px){

	header .navbar .menu li a {
		font-size: 0.7rem;
	}

	header .navbar.desktop .btn.btn-default{
		max-width: 150px;
	}

	header .navbar.desktop .btn.btn-default p {
		font-size: 0.7rem;
	}

}

@media(max-width: 998px){

	header {
		position: fixed;
	}
	
	header.scrolled {
		background-color: var(--azul-medio);
	}
	
	#logo-desktop{
		display: none;
	}
	
	#logo-mobile{
		display: block;
	}

	header .navbar-brand img {
		height: 3.5rem;
	}
	
	header .navbar {
		margin: 0;
	}

	header .navbar.desktop .btn.btn-default,
	header .navbar.desktop .menu-header-container {
		display: none;
	}

	header .menu-btn {
		display: block;	
	}

	#offcanvasMenu {
		padding-top: 6.35rem;
	}
	
	.offcanvas .offcanvas-body .menu .sub-menu {
		margin-left: 2rem;
	}

	.offcanvas .offcanvas-body .menu li{
		margin: 0.8rem 0;
	}

}


/* BANNER PADRÃO */
#main-banner {
	height: 700px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.mask-main-banner {
	background-image: linear-gradient(to right, var(--azul) 50%, transparent 50%);
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0.6;
	z-index: 1;
}

#main-banner img{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
/* 	z-index: 1; */
}

#main-banner #image-mobile{
	display: none;
}

#main-banner .wrapper-slide{
	align-items: center;
}

#main-banner .text-banner {
	z-index: 1;
}

#main-banner .title {
	color: var(--branco);
}

#main-banner .title.max-font {
	font-size: 2.8rem;
}

#main-banner .description {
	font-size: 1rem;
	margin-bottom: 1.5rem;
	max-width: 90%;
	color: var(--branco);
	z-index: 3;
}

#main-banner .btn-back{
	height: fit-content;
	display: none;
}

#main-banner .text-banner{
	height: fit-content;
}

#main-banner .btn-back i{
	color: var(--branco);
}

#main-banner .btn-back spam{
	color: var(--branco);
	opacity:0.5;
}

@media(max-width: 998px){
	.mask-main-banner {
		background-image: linear-gradient(to right, var(--azul) 100%, transparent 50%);
	}
	
	#main-banner.banner img,
	#main-banner.carrossel img {
/* 		object-position: -60rem; */
		object-position: center;
	}
	
	#main-banner.banner .row{
		align-content: space-between;
	}
	
	#main-banner .btn-back{
		display: block;
	}
	
}

@media(max-width: 586px){
	#main-banner .wrapper-slide{
		align-items: flex-end;
	}
	
	#main-banner #image-desktop{
		display: none;
	}
	
	#main-banner #image-mobile{
		display: block;
	}

	#main-banner .title {
		font-size: var(--h1-fs-mobile);
	}
	
	#main-banner .title.max-font {
		font-size: 2.5rem;
	}
	
	#main-banner .description {
		max-width: 100%;
	}
	
}

/* SEÇÃO CALL */
#call{
	background-color: var(--branco);	
	border-radius: 1rem;
}

#call .call-box {
	padding: 2rem 2rem 3rem 2rem;
	background-color: var(--azul-escuro);
	border-radius: 1rem;
}

#call .call-box-inside {
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	background-color: var(--branco);
}

#call .box-right .images-single {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	min-height: 258px;
}

#call .box-right .images-single img:first-child {
	height: 200px;
	position: absolute;
	left: 3rem;
	bottom: -1rem;
	z-index: 1;
}

#call .box-right .images-single img:last-child {
	height: 250px;
	position: absolute;
	right: -4rem;
	top: -2rem;
}

@media(max-width: 998px){
	#call .call-box-inside {
		padding: 1rem;
	}

	#call .box-left{
		text-align: center;
		margin-top: 2rem;
	}

	#call .box-right .images-single img:first-child {
		left: 0;
		bottom: 0;
	}

	#call .box-right .images-single img:last-child {
		right: 0;
		top: 0;
	}
}

@media(max-width: 568px){
	#call .call-box-inside {
		padding: 1rem 0;
	}

	#call .box-right .images-single img:first-child {
		height: 135px;
	}

	#call .box-right .images-single img:last-child {
		height: 180px;
	}
}

/* SEÇÃO CALL SECOND */
#call-two .wrapper{
	padding: 3rem 0;	
}

#call-two .title{
	font-weight: 500;
	color: var(--azul-escuro);
}

#call-two .call-box .call-box-inside{
	margin: 3rem auto;
}

#call-two .call-box .call-box-inside:nth-child(2) .box-right {
	transform: rotateY(190deg);
}

#call-two .images-single {
	position: relative;
}

#call-two .images-single img {
	border-radius: 0.5rem;
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
	background: var(--cinza);
}

#call-two .box-one{
	display: flex;
	margin-bottom: 0.8rem;
}

#call-two .box-two {
	display: flex;
	flex-wrap: wrap; 
	gap: 0.6rem;
	margin-top: 0.8rem;
}

#call-two .single-one .box:nth-child(1) {
	width: 65%;
	height: 4rem;
	background-color: var(--azul-escuro);
	border-top-left-radius: 100%;
}

#call-two .single-one .box:nth-child(2){
	width: 35%;
	height: 4rem;
	background-color: var(--azul-medio);
	border-radius: 5px;
	margin-left: 0.6rem;
}

#call-two .box-two .box:nth-child(1),
#call-two .box-two .box:nth-child(2) {
	width: calc(50% - 0.3rem);
	height: 4rem;
}

#call-two .box-two .box:nth-child(1) {
	background-color: var(--azul-claro);
	border-radius: 5px;
}

#call-two .box-two .box:nth-child(2) {
	background-color: var(--azul);
	border-bottom-right-radius: 100%;
}

#call-two .box-two .box:nth-child(3) {
	width: 100%;
	height: 5rem;
	background-color: var(--azul-escuro);
	border-radius: 5px;
}

#call-two .single-one .images-single:nth-child(2) {
	height: 16.313rem;
}

#call-two .single-two .images-single:nth-child(1) {
	height: 10.313rem;

}

@media(max-width: 998px){
	#call-two .call-box .call-box-inside {
		margin-bottom: 3rem;
	}
	
	#call-two .box-left{
		margin-top: 1rem;
	}
}

@media(max-width: 568px){
	#call-three .wrapper,
	#call-two .wrapper {
		padding: 0;
	}
	
	#call-two .single-one .images-single:nth-child(2) {
		height: 12.313rem;
	}
	
	#call-two .single-two .images-single:nth-child(1) {
		height: 6.675rem;
	}
	
	#call-two .box-right .row .single-one {
		padding: 0 5px 0 calc(var(--bs-gutter-x) * .5);
	}
	
	#call-two .box-right .row .single-two {
		padding: 0 calc(var(--bs-gutter-x) * .5) 0 5px;
	}
	
	#call-two .box-left{
		text-align: center;
	}
	
}

/* SEÇÃO CARDS POSTS */
#cards h3{
	color: var(--azul-medio);
}

#cards .card{
	border: none;
}

#cards .card-body .card-title {
	font-weight: 600;
	padding: 0 5px 0 0;
}

#cards .card .image-card{
	width: 8rem;
	height: 8rem;
	position: relative;
}

/* SEÇÃO CALL FOOTER */
#call-footer {
    position: relative;
    background-color: var(--azul-escuro);
    height: 20rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#call-footer img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
}

#call-footer h3{
	color: var(--branco);
}

#call-footer .text-center{
	position: relative;
	z-index: 1;
}

@media(max-width: 568px){
	#call-footer {
/* 		margin-top: 5rem; */
		height: 25rem;
	}
}

/* SEÇÃO FOOTER */
footer{
	padding: 2rem 0;
}

.wrapper-footer{
	justify-content: space-between;
}

.logo-footer .navbar-brand{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.logo-footer .navbar-brand img{
	height: 4.5rem;	
}

footer .navbar-brand .slogan {
	margin: -20px 0 20px 0;
	width: fit-content;
	color: var(--cinza);
}

.redes-sociais{
	display: flex;
	margin-bottom: 1rem;
}

.redes-sociais .social{
	display: flex;
	justify-content: center;
	flex-direction: column;
	transition: 0.5s;
}

.redes-sociais .social i {
	color: var(--preto);
	font-size: 1rem;
}

.redes-sociais .social:hover{
	background: var(--verde);
}

.border-footer{
	background-color: var(--cinza);

}

footer .feature{
	text-align: right;
}

#link-mobile{
	display: none;
}

#logo-tuna-footer{
	margin-left: 4rem;
}

@media(max-width:998px){
	.wrapper-footer{
		justify-content: center;
	}

	.menu-footer,
	.redes-sociais-footer {
		margin-top: 2rem;
	}
	
	.logo-footer .navbar-brand {
		align-items: center;
	}
	
	footer .navbar-brand .slogan {
		margin: -20px -100px 20px 0;
	}
}

@media(max-width:568px){
	footer{
		text-align: center;	
	}
	
	.logo-footer .navbar-brand {
		align-items: center;
	}
	
	footer .navbar-brand .slogan {
		margin: -20px -100px 20px 0;
	}

	.redes-sociais {
		justify-content: center;
	}

	.logo-footer .navbar-brand img{
		height: 4.5rem;	
	}

	.logo-footer .border-footer,
	.logo-footer .slogan-second{
		display: none;
	}

	footer .feature{
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	#logo-tuna-footer {
		margin-left: 0;
	}

	#link-desktop{
		display: none;
	}

	#link-mobile{
		display: block;
	}

}

/* LOADING ANIMAÇÃO */
.preloader {
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
/* 	background: var(--preto); */
	background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
	color: var(--verde);
	z-index: 99999;
	transition: 1s;
}

@keyframes spin2 { 
	0% {transform: rotatey(0deg);}
	100% {transform: rotatey(360deg);}
}

#logo{
	animation: spin2 2s linear infinite;
}

#logo:before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: blur(6px);
}

