@charset "UTF-8";

@font-face {
    font-family: 'Nunito Sans';
    src: url('../../assets/fonts/nunito-sans/NunitoSans-SemiBold.woff2') format('woff2'),
        url('../../assets/fonts/nunito-sans/NunitoSans-SemiBold.woff') format('woff'),
        url('../../assets/fonts/nunito-sans/NunitoSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../../assets/fonts/nunito-sans/NunitoSans-Bold.woff2') format('woff2'),
        url('../../assets/fonts/nunito-sans/NunitoSans-Bold.woff') format('woff'),
        url('../../assets/fonts/nunito-sans/NunitoSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../../assets/fonts/nunito-sans/NunitoSans-Regular.woff2') format('woff2'),
        url('../../assets/fonts/nunito-sans/NunitoSans-Regular.woff') format('woff'),
        url('../../assets/fonts/nunito-sans/NunitoSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../../assets/fonts/nunito-sans/NunitoSans-Light.woff2') format('woff2'),
        url('../../assets/fonts/nunito-sans/NunitoSans-Light.woff') format('woff'),
        url('../../assets/fonts/nunito-sans/NunitoSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../../assets/fonts/nunito-sans/NunitoSans-ExtraLight.woff2') format('woff2'),
        url('../../assets/fonts/nunito-sans/NunitoSans-ExtraLight.woff') format('woff'),
        url('../../assets/fonts/nunito-sans/NunitoSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Mayonice';
    src: url('../../assets/fonts/mayonice/Mayonice.woff2') format('woff2'),
        url('../../assets/fonts/mayonice/Mayonice.woff') format('woff'),
        url('../../assets/fonts/mayonice/Mayonice.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-family-base: 'Nunito Sans', sans-serif;
    --font-family-heading: 'Mayonice', serif;
}

.font-base {
    font-family: var(--font-family-base) !important;
}

.font-heading {
    font-family: var(--font-family-heading) !important;
}


body{
    font-family: var(--font-family-base);
	overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overscroll-behavior-x: none;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    background-color: #f7f7f7;
}

/* Typography */

.h1, h1{
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.h2, h2{
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .h1, h1{
        font-size: 42px;
    }
    .h2, h2{
        font-size: 32px;
    }
}

/* Buttons */

.btn{
    font-family: var(--font-family-base);
    font-style: normal;
}

img{
    width: 100%;
    height: auto;
}

/* Header */

.site-header{
    position: relative;
}

.site-header__navbar{
    padding: 16px 0;
}

.site-header .site-header__navbar {
	transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(255, 255, 255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-header__left,
.site-header__right {
	flex: 1 1 0;
}

.site-header__brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 240px;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.site-header__brand-logo {
	display: block;
	width: 100%;
	height: auto;
    max-width: 180px;
}

@media (max-width: 991px) {
    .site-header__brand-logo {
        max-width: 130px;
    }
}


.site-header:not(.site-header--white) .site-header__brand,
.site-header--scrolled .site-header__brand {
	opacity: 1;
}

.site-header--scrolled .site-header__navbar {
	background-color: rgba(0, 0, 0, 0.85);
	box-shadow: 0 8px 24px rgba( 0, 0, 0, 0.12 );
}

.site-header:not(.site-header--white) .site-header__navbar {
	background-color: rgba(0, 0, 0, 0.85);
	box-shadow: 0 8px 24px rgba( 0, 0, 0, 0.12 );
}

.site-header--hidden .site-header__navbar {
	transform: translateY( -100% );
}

.site-header__brand img{
    filter: invert(1) brightness(1.8);
    -webkit-filter: invert(1) brightness(1.8);
}

.site-header__menu-toggler .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(255, 255, 255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	opacity: 1;
}

.site-header__menu-toggler:hover .navbar-toggler-icon,
.site-header__menu-toggler:focus .navbar-toggler-icon,
.site-header__menu-toggler:active .navbar-toggler-icon {
	opacity: 1;
}

.site-header__menu-toggler {
	color: #fff;
	opacity: 1;
}

.site-header .offcanvas{
    background-color: black;
    color: white;
}

.site-header .offcanvas .navbar-nav .nav-link{
    color: white;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .site-header .offcanvas .navbar-nav .nav-link{
        font-size: 16px;
    }
}

.site-header .offcanvas .navbar-nav .nav-link:hover{
    color: #dd9f33;
    text-decoration: underline;
}

.site-header .gtranslate_wrapper{
    margin-left: 10px;
}

.site-header .gtranslate_wrapper a.glink{
    color: #fff;
}

/* Newsletter (rodapé): fundo em <img>, overlay em CSS */
.footer-newsletter {
	position: relative;
	overflow: hidden;
    padding: 100px 0;
	background-color: #1a1a1a;
}

.footer-newsletter__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.footer-newsletter__bg-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer-newsletter__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: #000;
	opacity: var(--footer-nl-overlay, 0.25);
	pointer-events: none;
}

.footer-newsletter .container {
	z-index: 2;
}

.footer-newsletter__title{
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 48px;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 6px;
}

@media (max-width: 991px) {
    .footer-newsletter__title{
        font-size: 32px;
    }
}


.footer-newsletter__cf7{
    margin-top: 40px;
}


.footer-newsletter__cf7 .wpcf7-form input[type="text"],
.footer-newsletter__cf7 .wpcf7-form input[type="email"],
.footer-newsletter__cf7 .wpcf7-form input[type="tel"],
.footer-newsletter__cf7 .wpcf7-form textarea {
    border: none;
    background-color: #ffffff;
    padding: 12px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    width: 100%;
    box-sizing: border-box;
    text-transform: uppercase;
}

.footer-newsletter__cf7 label{
    width: 100%;
}

.footer-newsletter__cf7 .wpcf7-list-item{
    margin: 0;
}

.footer-newsletter__cf7 .wpcf7-submit{
    background-color: transparent;
    color: white;
    border: none;
    border-bottom: 1px solid white;
    padding: 6px 14px;
    border-radius: 0;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
}

.footer-newsletter__cf7 .wpcf7-list-item-label{
    color: white;
}


/* Footer */

.site-footer{
    padding: 60px 0;
    background-color: #000;
}

.site-footer__logo{
    max-height: 100%;
    width: auto;
}

.site-footer__kicker{
    font-size: 44px;
    color: #ffffff;
    position: relative;
    padding: 0 10px;
    display: inline-flex;
    margin-bottom: 10px;
} 

.site-footer__kicker span{
    position: relative;
    z-index: 1;
}

.site-footer__kicker::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 8px;
    left: 0;
    background-color: #dd9f33;
    bottom: 20px;
    z-index: 0;
}

.site-footer__title{
    font-size: 42px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 0 30px;
    color: #ffffff;
}

@media (max-width: 991px) {
    .site-footer__title{
        font-size: 32px;
    }
}

.footer-value span{
    color: #ffffff;
}

.footer-value--email a{
    text-decoration: underline;
}

.footer-value--telefone a{
    font-weight: 700;
 
}

.footer-menu{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu li a{
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .footer-nav{
        margin-top: 30px;
    }
}


.footer-menu li a:hover{
    color: #dd9f33;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .footer-bottom{
        margin-top: 30px;
    }
}


/* Page Politicas */

.page-politicas{
    padding: 120px 0;
}

@media (max-width: 991px) {
    .page-politicas{
        padding: 80px 0;
    }
}
