@font-face {
	font-family: Segoe UI;
	src: url(../fonts/Segoe UI.ttf);
	font-weight: 400;
}

@font-face {
	font-family: Segoe UI;
	src: url(../fonts/Segoe UI Bold.ttf);
	font-weight: 700;
}

@font-face {
	font-family: Adelia;
	src: url(../fonts/adelia.ttf);
	font-weight: 400;
}

:root {
	--laranja: #F06422;
	--laranja-escuro: #C94709;
	--azul: #4857A1;
	--azul-escuro: #182771;
	--preto: #4D4D4D;
	--cinza-claro: #F9F9F9;
	--cinza-medio: #ECECEC;
	--cinza-escuro: #00000029;
	--branco: #FFFFFF;
	
	--padding-x-global: 4rem;
	--padding-x-global-mobile: 2rem;
	--section-y-global: 4rem;
	--section-y-global-mobile: 2rem;
	
	--Work-Sans: "Work Sans", sans-serif;
	--M-Plus-Rounded: "M PLUS Rounded 1c", sans-serif;
	--Segoe-UI: "Segoe UI", sans-serif;
	--Adelia: "Adelia", sans-serif;

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

	--h1-fs-mobile: 3.5rem;
	--h1-lh-mobile: 1.2em;
	--h2-fs-mobile: 2rem;
	--h2-lh-mobile: 1.2em;
	--h3-fs-mobile: 1.5rem;
	--h3-lh-mobile: 1.2em;
	--h4-fs-mobile: 1.25rem;
	--h4-lh-mobile: 1.2em;
	--h5-fs-mobile: 1.125em;
	--h5-lh-mobile: 1.2em;
	--h6-fs-mobile: 1rem;
	--h6-lh-mobile: 1.2em; 
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--Work-Sans);
/* 	font-size: calc(12px + 0.390625vw); */
}

body, html {
	color: var(--preto);
}

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

ul, ol {
    list-style: none;
    padding: 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,
button.btn-close:active {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: var(--branco);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 99999;
	transition: opacity 0.75s ease; /* Efeito suave ao fechar */
}

.loading-screen .logo-loading {
	position: absolute;
    margin-bottom: .35rem;
}

.loading-screen .spinner-border {
	height: 100px;
    width: 100px;
    color: var(--laranja);
	--bs-spinner-animation-speed: 1s;
}

.loading-screen #loader {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-screen .circle-loader {
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-screen  .circle {
	position: absolute;
	border: 1px solid transparent;
	border-radius: 50%;
	animation: rotate 2s infinite ease-in-out;
}

.loading-screen .circle-1 {
	width: 140px;
	height: 140px;
	border-right-color: var(--laranja);
	border-left-color: var(--laranja);
	border-bottom-color: var(--laranja);
	animation-delay: -0.2s;
}

.loading-screen .circle-2 {
	width: 120px;
	height: 120px;
	border-right-color: var(--laranja);
	border-left-color: var(--laranja);
	border-bottom-color: var(--laranja);
	animation-delay: -0.4s;
}

.loading-screen .circle-3 {
	width: 100px;
	height: 100px;
	border-right-color: var(--laranja);
	border-left-color: var(--laranja);
	border-bottom-color: var(--laranja);
	animation-delay: -0.6s;
}

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

.back-history {
	display: inline-flex;
	background: none;
    border: none;
	font-size: 1.125rem;
	color: var(--preto);
}

.back-history i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
	width: 28px;
	height: 28px;
	margin-right: .75rem;
	background-color: var(--laranja);
    color: var(--branco);
    border-radius: 3px;
    transition: .3s;
}

.back-history:hover span {
	text-decoration: underline;
}

.back-history:hover i {
	background-color: var(--laranja-escuro);
}

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

.main {
	position: relative;
}

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

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

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--Segoe-UI);
}

.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);
}

.btn.btn-laranja {
	background-color: var(--laranja);
	border-radius: 10px;
	padding: 0.5rem 1.95rem;
	min-width: 230px;
	transition: .3s;
}

.btn.btn-azul {
	background-color: var(--azul);
	border-radius: 10px;
	padding: 0.5rem 1.95rem;
	min-width: 230px;
	transition: .3s;
	height: fit-content;
	width: fit-content;
}

.btn.btn-agendar {
	background-color: var(--laranja);
	border-radius: 100px;
	padding: 0.25rem 0.75rem;
	transition: .3s;
}

.btn.btn-filtrar {
	font-family: var(--Work-Sans);
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--branco);
	background-color: var(--laranja);
	border-radius: 5px;
	padding: 0.25rem 1.5rem;
	transition: .3s;
}

.btn.btn-anterior {
	padding: 0;
}

.btn.btn-anterior i {
	position: relative;
    display: inline-block;
    transform: translateY(2px);
    background-color: var(--laranja);
    color: var(--branco);
    padding: 0.5rem 0.65rem 0.15rem 0.65rem;
    border-radius: 3px;
    margin-right: 0.5rem;
}

.btn.btn-laranja span,
.btn.btn-azul span {
	font-family: var(--M-Plus-Rounded);
	font-size: 1.25rem;
	color: var(--branco);
}

.btn.btn-agendar span {
	font-family: var(--Work-Sans);
	font-size: 0.9rem;
	color: var(--branco);
}

.btn.btn-laranja i,
.btn.btn-azul i {
	font-size: 1rem;
	color: var(--branco);
	margin-left: 0.35rem;
}

.btn.btn-agendar i {
	font-size: 0.85rem;
	color: var(--branco);
	margin-left: 0.25rem
}

.btn.btn-laranja:hover {
	background-color: var(--laranja-escuro);
}

.btn.btn-azul:hover {
	background-color: var(--azul-escuro);
}

.btn.btn-laranja:hover span,
.btn.btn-azul:hover span,
.btn.btn-agendar:hover span,
.btn.btn-anterior:hover span,
.btn.btn-filtrar:hover {
	text-decoration: underline;
}

.pagination {
	--bs-pagination-color: var(--preto);
	--bs-pagination-border-color: transparent;
	--bs-pagination-bg: none;
}

.pagination .page-numbers {
	font-size: 1.375rem;
	width: 36px;
	height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: .3s;
	margin: 0 .25rem;
}

.pagination .page-numbers.current {
	color: var(--cinza-medio);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
	background-color: var(--laranja);
	color: var(--branco);
	border-radius: 3px;
	transition: .3s;
}

.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover {
	background: var(--laranja-escuro);
}

.pagination .page-numbers.prev {
	margin-right: .5rem;
}

.pagination .page-numbers.next {
	margin-left: .5rem;
}

.pagination .page-numbers i {
	position: relative;
	display: block;
	transform: translateY(3px);
	color: var(--branco);
}

.pagination .page-numbers:not(.current, .dots):hover {
	color: var(--laranja);
}

form#general-search {
	position: relative;
	height: 60px;
	max-width: 700px;
	margin: 0 auto;
}

form#general-search .form-control {
	border-radius: 30px;
	border-color: var(--preto);
	padding: 0.5rem 6.5rem 0.5rem 1.5rem;
}

form#general-search button {
	position: absolute;
    display: block;
	right: 0;
	background: var(--laranja);
	border: 1px solid var(--preto);
    height: 100%;
    width: 90px;
    border-radius: 30px;
	transition: 0.3s;
}

form#general-search button:hover {
	background: var(--laranja-escuro);
}

form#general-search button i {
	position: relative;
    display: block;
    color: var(--branco);
    font-size: 1.7rem;
    transform: translateY(5px);
}

form.form-search-default {
	position: relative;
	display: flex;
	height: 45px;
	max-width: 560px;
}

form.form-search-default .form-control {
	border-color: var(--preto);
	border-radius: 10px;
	padding-right: 2.5rem;
}

form.form-search-default button {
	position: absolute;
    display: block;
    right: 0;
    height: 100%;
    width: 45px;
}

form.form-search-default button i {
	position: relative;
    display: block;
    font-size: 1.2rem;
    transform: translateY(3px);
	transition: 0.3s;
}

form.form-search-default button:hover i {
	color: var(--laranja);
}

form.form-search-default .form-control::placeholder {
	color: #D4D4D4;
}

header {
	background-color: var(--cinza-claro);
}

header.laranja {
	box-shadow: 0 -4px 0 0px var(--laranja) inset;
}

header.azul {
	box-shadow: 0 -4px 0 0px var(--azul) inset;
}

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

header .navbar .navbar-brand {
	margin-right: 0;
}

header .navbar .menu li,
#offcanvasMenu .menu li {
	margin: 0 1.5rem; 
}

header .navbar .menu li a,
#offcanvasMenu .menu li a {
	font-size: 1.125rem;
	transition: .3s;
}

header .navbar .menu li a:hover,
#offcanvasMenu .menu li a:hover,
header .navbar .help:hover small,
header .navbar .help:hover i {
	color: var(--laranja);
	text-shadow: 0 0 .65px var(--laranja), 0 0 .65px var(--laranja);
}

header .navbar .help {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.75rem;
}

header .navbar .help i {
	margin: 0 0.25rem 0;
	line-height: 0;
}

header .navbar #search-bar .dropdown-toggle.show small,
header .navbar #search-bar .dropdown-toggle.show i {
	color: var(--laranja);
	text-shadow: 0 0 .65px var(--laranja), 0 0 .65px var(--laranja);
}

header .navbar .area-buttons .btn {
	color: var(--branco);
	border-radius: 10px;
	padding: .5rem .65rem;
	width: 155px;
	transition: 0.3s;
}

header .navbar .area-buttons .btn#pacient-access {
	background-color: var(--laranja);
}

header .navbar .area-buttons .btn#doctor-access {
	background-color: var(--azul);
}

header .navbar .area-buttons .btn#pacient-access:hover {
	background-color: var(--laranja-escuro);
	text-decoration: underline;
}

header .navbar .area-buttons .btn#doctor-access:hover {
	background-color: var(--azul-escuro);
	text-decoration: underline;
}

header .navbar .dropdown-toggle::after {
  display: none;
}

header .navbar .dropdown#search-bar .dropdown-menu {
	position: absolute;
    background-color: var(--cinza-claro);
    width: 700px;
    padding: 2rem;
	left: 50%;
	transform: translateX(-50%);
	top: 4.3rem;
	box-shadow: inset 0px 3px 6px #00000029;
	border-radius: 0px 0px 10px 10px;
	border: none;
    transition: all 0.3s ease-out 0.3s;
	z-index: 9;
}

header .dropdown#search-bar .dropdown-menu .top-list {
	font-weight: 700;
	border-bottom: 1px solid var(--cinza-escuro);
	margin: 2.5rem 0 1rem;
    padding: 0 0.75rem;
}

header .dropdown#search-bar .dropdown-menu .most-accessed li {
	margin: 0.5rem 0.75rem;
}

header .dropdown#search-bar .dropdown-menu .most-accessed li a:hover {
	transition: 0.3s;
	color: var(--laranja);
}

header .dropdown#search-bar .dropdown-menu .close-btn-search {
	position: absolute;
    display: block;
    right: 1rem;
	bottom: 1rem;
	width: fit-content;
	padding: 0;
}

header .dropdown#search-bar .dropdown-menu .close-btn-search i {
	font-size: .75rem;
}

header .navbar .menu-btn {
	position: relative;
	display: none;
	padding: 7px 0 0;
	font-size: 2.25rem;
	color: var(--azul);
}

header .menu-mobile {
	display: none;
}

header .logged {
	position: relative;
	width: 20rem;
    display: flex;
    justify-content: end;
}

header .logged .area-buttons {
	display: none;
}

header .logged.out .area-buttons {
	display: block;
}

header .logged.in .user-head {
	display: block;
}

footer {
	background-color: var(--cinza-claro);
}

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

footer .logotipos .logo-lucilo {
	width: 172px;
	height: 172px;
	object-fit: contain;
}

footer .logotipos .selo-padi {
	width: 119px;
	height: 119px;
}

footer .group {
	margin-bottom: 2.5rem;
}

footer .group .label {
	color: var(--azul);
	font-size: 1.25rem;
	font-weight: 700;
	margin: 1rem 0;
}

footer .group .content b {
	color: var(--azul);
}

footer .group .link:hover {
	color: var(--laranja);
	text-decoration: underline;
	transition: 0.3s;
}

footer .socials {
	display: flex;
}

footer .socials .social {
	margin-right: 1rem;
}

footer .socials .social i {
	font-size: 2rem;
	color: var(--laranja);
}

footer .socials .social i:hover {
	transition: 0.3s;
	color: var(--laranja-escuro);
}

footer .copy {
	display: flex;
}

footer .copy span {
	color: var(--azul);
}

.custom-tooltip {
	--bs-tooltip-font-size: 0.75rem;
	--bs-tooltip-bg: #EAEAEA;
	--bs-tooltip-color: var(--preto);
	--bs-tooltip-opacity: 1;
}

.swiper {
	width: 100%;
	height: 100%;
}

.title-section {
	position: relative;
	display: flex;
	align-items: center;
	font-weight: 700;
	white-space: nowrap;
	padding-left: 150px;
	margin-bottom: 3.5rem;
}

.title-section:before {
	content: "";
	position: absolute;
	display: block;
	background-image: url('../images/lines-orange.svg');
	background-repeat: no-repeat;
	width: 150px;
	height: 25px;
	margin-bottom: 2px;
	left: 0;
	top: 2px;
	-webkit-user-drag: none;
	-moz-user-drag: none;
	user-drag: none;
}

.title-section.line:after {
	content: "";
	position: relative;
	display: block;
	width: 100%;
	height: 1px;
	background: var(--laranja);
	margin-left: 1rem;
}

.packagesSwiper,
.blogSwiper {
	padding-left: 6px;
    padding-right: 6px;
	padding-bottom: 8px;
}

.packagesSwiper .swiper-slide,
.blogSwiper .swiper-slide {
	height: auto;
}

.card.package {
	height: 100%;
    padding: 1.5rem 1.125rem;
    background: var(--cinza-claro);
    box-shadow: 0px 3px 6px #00000029;
    border: none;
    border-radius: 10px;
}

.card.package .card-img-top {
	height: 150px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: inset 0px 3px 6px #00000029;
}

.card.package .card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.5rem 0 0;
}

.card.package .card-title {
	font-weight: 700;
    margin-bottom: 1rem;
    min-height: 43px;
}

.card.package .card-text {
	font-size: .875rem;
}

.card.package .card-body .detail {
	margin-left: .5rem;
	color: var(--azul);
}

.card.package .card-body .detail:hover {
	text-decoration: underline;
}

#contact {
	padding-bottom: 1rem;
}

#contact .img-banner {
	position: relative;
	height: 450px;
}

#contact .content-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#contact .via {
	font-weight: 700;
	color: var(--azul);
}

#contact .contato {
	color: var(--azul);
}

#contact .ouvidoria {
	color: var(--laranja);
}

#successSubmitModal.modal .modal-dialog {
	max-width: var(--bs-modal-width);
}

#successSubmitModal .modal-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 6rem 2rem;
	color: var(--azul);
}

#successSubmitModal .modal-body .text {
	margin-bottom: 2.5rem;
}

#successSubmitModal .modal-body .text p {
	font-size: 1.125rem;
    color: #707070;
    max-width: 625px;
    text-align: center;
}

.card.post {
	border: none;
	margin-bottom: 3.5rem;
	max-width: 630px;
}

.card.post .col-md-3 {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}

.card.post .img-fluid {
	width: 100%;
	height: 100%;
	min-height: 170px;
	object-fit: cover;
	border-radius: 5px;
	transition: .3s;
}

.card.post .img-fluid:hover {
	transform: scale(1.1);
}

.card.post .card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 0 1rem;
}

.card.post .cats {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: .25rem;
}

.card.post .cats .cat-item a {
	display: block;
	color: var(--branco);
	background: var(--laranja);
	border-radius: 50px;
	padding: .25rem 1rem;
	margin: 0 .25rem .25rem 0;
	transition: .3s;
}

.card.post .cats .cat-item a:hover {
	background: var(--laranja-escuro);
}

.card.post .publication {
	font-size: .75rem;
	color: #3D3D3D;
	margin-bottom: .5rem;
}

.card.post .publication i {
	color: var(--laranja);
}

.card.post .card-title {
	font-weight: 700;
	color: var(--azul);
	margin-bottom: 0;
}

.card.post .card-title:hover {
	text-decoration: underline;
}

#subscribe {
	background: var(--azul);
	color: var(--branco);
	margin-top: 10rem;
}

#subscribe .wrapper {
	padding: 2.5rem 0;
}

#subscribe .container {
	position: relative;
}

#subscribe .avatar {
	position: absolute;
	left: -4rem;
	bottom: -2.5rem;
	height: 500px;
    width: 500px;
    object-fit: contain;
}

#subscribe .title-section {
	margin-bottom: 1.5rem;
}

#subscribe form#contact-newsletter {
	display: grid;
	grid-template-columns: 3fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 1rem 2rem;
}

#subscribe form#contact-newsletter .form-group {
	display: flex;
	flex-direction: column;
	justify-content: end;
}

#subscribe form#contact-newsletter .form-control {
	height: 60px;
	border: none;
	border-radius: 4px;
	background-color: var(--cinza-medio);
	
}

#subscribe form#contact-newsletter .form-control::placeholder {
	color: #918E8E;
}

#subscribe form#contact-newsletter .btn {
	height: 60px;
	transition: none;
}

#subscribe form#contact-newsletter .form-label {
	font-size: 1.125rem;
	font-weight: 600;
}

#subscribe form#contact-newsletter .form-label span {
	color: red;
	font-size: 1rem;
}

#subscribe .wpcf7 {
	display: none;
}

ul.terms {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 2.5rem;
	margin: 0;
	max-width: 40rem;
}

ul.terms li.term-item {
	margin-right: .75rem;
	margin-bottom: .75rem
}

ul.terms li.term-item .btn-term {
	font-size: 1.125rem;
	background: var(--branco);
	box-shadow: 0px 3px 6px #00000029 !important;
	border-radius: 5px;
	border: 0.5px solid transparent;
	padding: .75rem 1.25rem;
	min-width: 150px;
	transition: .3s;
}

ul.terms li.term-item .btn-term.active,
ul.terms li.term-item .btn-term:hover {
	border: 0.5px solid var(--azul);
	color: var(--azul);
	text-decoration: underline;
}

ul.terms li.term-item .btn-term.active {
	pointer-events: none;
}

.results-head h4 em {
	font-weight: 700;
}

.no-results {
	font-size: 1.125rem;
	padding: 1.875rem 1.75rem;
	margin-top: 1rem;
	background: var(--cinza-claro);
	max-width: 560px;
	width: 100%;
	min-height: 300px;
}

.no-results a {
	color: var(--azul);
	text-decoration: underline;
}

@media(max-width: 1200px) {
	
	header {
		position: fixed;
		width: 100%;
		background-image: url('../images/header-mobile.png');
		background-position: center;
        background-repeat: no-repeat;
		background-size: cover;
		z-index: 9999;
	}
	
	header .navbar .container .menu-header-container,
	header .navbar .container .logged {
		display: none;
	}
	
	header .navbar .menu-btn {
		display: block;
	}
	
	header .navbar .menu-btn i {
		position: relative;
		display: block;
	}

	header .navbar .help {
		background-color: var(--cinza-claro);
		padding: 0.75rem 1rem;
		border: 1px solid var(--cinza-escuro);
		border-radius: 30px;
		margin: 0;
	}
	
	header .navbar .dropdown#search-bar .dropdown-menu {
		width: 500px;
	}
	
	header .menu-mobile {
		position: fixed;
		display: flex;
		flex-direction: column;
		background-color: var(--cinza-claro);
		padding: 3rem 2rem;
		border-radius: 20px;
		right: 1rem;
		top: 1rem;
		min-width: 260px;
		opacity: 0;
		visibility: hidden;
		box-shadow: inset 0px 0px 3px #00000029;
		transition: all ease 0.5s;
		z-index: 999;
	}
	
	header .menu-mobile.show {
		opacity: 1;
		visibility: visible;
	}
	
	header .navbar .menu-mobile .menu-header-container .menu,
	header .navbar .menu-mobile .logged.out .area-buttons {
		display: flex;
		flex-direction: column;
		margin-bottom: 1rem;
	}
	
	header .menu-mobile .logged {
		justify-content: start;
		width: auto;
	}
	
	header .navbar .menu-mobile .logged.in .area-buttons,
	header .navbar .menu-mobile .logged.out .user-head {
		display: none;
	}
	
	header .navbar .menu-mobile .logged.in .user-head {
		display: block;
		margin-bottom: 2rem;
	}
	
	header .navbar .menu-mobile .logged.in .user-head .dropdown-toggle {
		min-width: 197px;
	}
	
	header .navbar .menu-mobile .logged.in .user-head .dropdown-menu {
		position: initial;
	}
	
	header .navbar .menu-mobile .menu-header-container .menu .menu-item,
	header .navbar .menu-mobile .area-buttons .btn {
		margin: 0 0 1rem 0;
	}

	header .navbar .menu-mobile .close-btn {
		font-size: 1.125rem;
		width: fit-content;
		padding: 0;
	}
	
	header .navbar .menu-mobile .close-btn i {
		font-size: 0.8rem;
	}
	
	header .navbar .menu-mobile .close-btn:hover,
	header .navbar .menu-mobile .close-btn:hover i {
		color: var(--laranja);
		text-shadow: 0 0 .65px var(--laranja), 0 0 .65px var(--laranja);
	}
	
	.main {
		padding-top: 96px;
	}
	
	footer .copy {
		flex-direction: column;
	}

	footer .copy span {
		margin: 0.25rem 0; 
	}
	
	#contact .img-banner {
		display: block;
        left: auto;
        margin: 0 auto;
        max-height: 600px;
        width: 100%;
        object-fit: contain;
	}
	
	#contact .btn.btn-azul {
		display: block;
        width: fit-content;
        margin: 0 auto;
	}

}

@media(max-width: 992px) {

	footer .logotipos .logo-lucilo {
		width: 122px;
	}

	footer .logotipos .selo-padi {
		width: 69px;
	}

	.title-section {
		white-space: normal;
	}

	#subscribe {
		margin-top: 0;
		overflow: hidden;
	}
	
	#subscribe .row {
		flex-direction: column-reverse;
	}
	
	#subscribe .avatar {
		position: relative;
        left: auto;
        bottom: -2.5rem;
		right: -6.5rem;
        height: auto;
        width: 100%;
	}
	
}

@media(max-width: 768px) {

	.title-section {
		margin-bottom: 2rem;
	}
	
	.title-section.line {
		white-space: initial;
		padding-left: 0;
		padding-bottom: 3rem;
	}
	
	.title-section.line span {
		transform: translate(0, 3rem);
	}

	.title-section.line:after {
		position: absolute;
		width: calc(100% - 130px);
		top: 15px;
		margin-left: 130px;
	}
	
}

@media(max-width: 576px) {
	
	.wrapper {
		padding: var(--section-y-global-mobile) 0;
	}

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

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

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

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

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

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

	.h6, h6 {
		font-size: var(--h6-fs-mobile);
		line-height: var(--h6-lh-mobile);
	}
	
	header .navbar .navbar-brand {
		margin: 0 auto 1rem;
		transition: 0.7s;
	}
	
	header .navbar .dropdown#search-bar {
		width: 100%;
		height: 61px;
		transition: 0.7s;
	}
	
	header .navbar .dropdown#search-bar .help {
		opacity: 1;
		transition: 0.5s;
	}
	
	header .navbar .dropdown#search-bar .dropdown-menu {
		width: 100%;
		top: 67px;
	}
	
	header .navbar .menu-btn {
		position: absolute;
		right: var(--padding-x-global-mobile);
		top: 1.25rem;
	}

	header .navbar .help {
		margin-bottom: 1.05rem;
	}
	
	.main {
		padding-top: 173px;
	}
	
	ul.alfabeto {
		grid-template-columns: repeat(7, 1fr);
	}
	
	header.retract .navbar .navbar-brand {
		margin: 0 auto;
	}
	
	header.retract .navbar .dropdown#search-bar .help {
		opacity: 0;
	}
	
	header.retract .navbar .dropdown#search-bar {
		height: 0;
		pointer-events: none;
	}
	
	header .navbar .dropdown#search-bar .dropdown-menu {
		transition: 0.7s;
	}
	
	header.retract .navbar .dropdown#search-bar .dropdown-menu {
		top: 6px;
	}
	
	footer .logotipos {
		flex-direction: row;
		justify-content: space-around;
		margin-bottom: 2.5rem;
	}
	
	footer .logotipos .logo-lucilo {
		height: 139px;
		width: auto;
	}
	
	footer .logotipos .selo-padi {
		height: 119px;
		width: auto;
	}
	
	footer .copy span {
		margin: 0.5rem 0; 
	}
	
	.title-section {
		padding-left: 110px;
	}

	.title-section:before {
		width: 110px;
        height: 25px;
        background-size: contain;
        top: 4px;
	}
	
	#contact .wrapper {
		padding-bottom: 4rem;
	}
	
	#contact .via,
	#contact .contato {
		font-size: 1.375rem;
	}
	
	#contact h2 {
		font-size: 1.75rem;
	}

	#successSubmitModal .modal-body .text p {
		font-size: 1rem;
	}
	
	#successSubmitModal .modal-body .title-section {
		font-size: 1.5rem;
	}

	.card.post {
		margin-bottom: 2.5rem;
	}

	.card.post .card-body {
		padding: 1rem 0;
	}

	.card.post .publication {
		margin-bottom: .75rem;
	}

	.card.post .card-title {
		font-size: 1.375rem;
	}
	
	#subscribe .title-section {
		padding-left: 0;
        padding-top: 2.5rem;
        margin-bottom: 2.5rem;
	}
	
	#subscribe form#contact-newsletter {
		grid-template-columns: 1fr;
		gap: 2rem 0;
	}
	
	#subscribe .avatar {
		right: 0;
		height: 26rem;
		width: auto;
	}
	
	#subscribe form#contact-newsletter .form-control#telefone {
		max-width: 200px;
	}
	
	#subscribe form#contact-newsletter .form-control#email {
		max-width: 300px;
	}

	#subscribe form#contact-newsletter .btn {
		max-width: 195px;
        min-width: 195px;
	}

	ul.terms li.term-item .btn-term {
		font-size: 1rem;
		padding: .5rem 1rem;
		min-width: 100px;
	}
	
}

.grecaptcha-badge {
    visibility: collapse !important;  
}