::-webkit-scrollbar {
	 width: 8px;
	 height: 10px;
}

::-webkit-scrollbar-thumb {
     background: linear-gradient(13deg, #03b2e0 14%,#00c7fb 64%);
}

::-webkit-scrollbar-thumb:hover{
     background: linear-gradient(13deg, #03b2e0 14%,#00c7fb 64%);
}

::-webkit-scrollbar-track{
    background: #FFF;
    box-shadow: inset 7px 10px 12px #FFF;
}
	
body {
	padding: 0;
	margin: 0;
}

/* COOKIES */
.cookie-consent {
	display: none;
  	position: fixed;
	width: 100%;
	min-height: 20px;
	box-sizing: border-box;
  	bottom: 0;
	background: #1b2a63;
	padding: 5px;
  	z-index: 9999;
	font-size: 12px;
	text-align: center;
	margin: 0 auto;
	color: #FFF;
}

.cookie-consent h1 {
	color: #FFF !important;
	padding: 5px;
	font-size: 20px;
	font-weight: 600;
	line-height: 20px;
	display: block;
	text-align: center;
 }

.cookieConsent {
	z-index: 9;
	width: 100%;
	min-height: 20px;
	box-sizing: border-box;
	padding: 10px;
	background: #1b2a63;
	color: #FFF;
	font-size: 12px;
	text-align: center;
	margin: 0 auto;
}

/* EXTRAS */
@keyframes shake {
	0% { transform: translateX(0); }
  	25% { transform: translateX(-5px); }
  	50% { transform: translateX(5px); }
  	75% { transform: translateX(-5px); }
  	100% { transform: translateX(0); }
}

@keyframes pulse {
	0%   { transform: scale(1); }
	50%  { transform: scale(1.4); }
	100% { transform: scale(1); }
}

@keyframes shakeRocket {
	0%, 100% { transform: translateX(0); }
  	25% { transform: translateX(-2px); }
  	50% { transform: translateX(2px); }
  	75% { transform: translateX(-1px); }
}


@keyframes vibrar {
	0%   { transform: rotate(0deg); }
    20%  { transform: rotate(-10deg); }
    40%  { transform: rotate(10deg); }
    60%  { transform: rotate(-6deg); }
    80%  { transform: rotate(6deg); }
    100% { transform: rotate(0deg); }
}

@keyframes fadeUp {
	from { opacity: 0; transform: translate(-50%, 10px); }
  	to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes popCheck {
  	0% {
    	transform: scale(0);
    	opacity: 0;
  	}
  	60% {
    	transform: scale(1.2);
    	opacity: 1;
  	}
  	100% {
    	transform: scale(1);
  	}
}

.vibrando {
	animation: vibrar 1s ease;
}

.shake {
	animation: shakeRocket 0.5s infinite;
}

.animated-check {
	animation: popCheck 0.5s ease-out;
}

.img-wrapper {
	position: relative;
 	display: inline-block;
}

.img-wrapper img {
 	display: block;
  	width: 100%;
  	height: auto;
}

.pelicula {
	position: absolute;
  	top: 0; left: 0; right: 0; bottom: 0;
  	transition: opacity 0.3s ease;
  	opacity: 0.2;
  	pointer-events: none;
}

.img-wrapper:hover .pelicula {
    background: linear-gradient(135deg, rgba(2, 77, 140, 0.4), rgba(92, 37, 117, 0.4));
	opacity: 0.8;
}

/* BOTÕES */
.btn-primary {
	background-color: #793597 !important;
	border: #793597 !important;
	color: #FFF !important;
	border-bottom: 2px solid #6a2c85 !important;	
}
	
.btn-primary:hover {
	background-color: #6a2c85 !important;
	border: #6a2c85 !important;
	border-bottom: 2px solid #5c2575 !important;
}

.btn-secondary {
	background-color: #9d9fa4 !important;
	border: #9d9fa4 !important;
	color: #FFF !important;
	border-bottom: 2px solid #8c8e93 !important;	
}
	
.btn-secondary:hover {
	background-color: #8c8e93 !important;
	border: #8c8e93 !important;
	border-bottom: 2px solid #76787c !important;
}

.btn-secondary {
	background-color: #9d9fa4 !important;
	border: #9d9fa4 !important;
	color: #FFF !important;
	border-bottom: 2px solid #8c8e93 !important;	
}
	
.btn-secondary:hover {
	background-color: #8c8e93 !important;
	border: #8c8e93 !important;
	border-bottom: 2px solid #76787c !important;
}

.btn-info {
	background-color: #58b59e !important;
	border: #58b59e !important;
	color: #FFF !important;
	border-bottom: 2px solid #50a18d !important;	
}
	
.btn-info:hover {
	background-color: #50a18d !important;
	border: #50a18d !important;
	border-bottom: 2px solid #458978 !important;
}

.btn-danger {
	background-color: #8942a8 !important;
	border: #8942a8 !important;
	color: #FFF !important;
	border-bottom: 2px solid #793597 !important;	
}
	
.btn-danger:hover {
	background-color: #793597 !important;
	border: #793597 !important;
	border-bottom: 2px solid #642d7c !important;
}

.btn-close	{
	color: #0056b3 !important;
	font-size: 15px !important;
	background-color: #e9ecef !important;
	border-bottom: 3px solid #0056b3 !important;	
}

.btn-success {
	background-color: #00a87d !important;
	border: #00a87d !important;
	color: #FFF !important;
	border-bottom: 2px solid #029670 !important;	
}
	
.btn-success:hover {
	background-color: #029670 !important;
	border: #029670 !important;
	border-bottom: 2px solid #01805f !important;
}

.btn-close:hover {
	background-color: #e9ecef !important;
	border-bottom: 3px solid #02458e !important;
}

/* FONTES */
.roboto-light {
  	font-family: "Roboto", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 300;
  	font-style: normal;
  	font-variation-settings: "wdth" 100;
}

.roboto-semibold {
  	font-family: "Roboto", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 500;
  	font-style: normal;
  	font-variation-settings: "wdth" 100;
}

.roboto-bold {
  	font-family: "Roboto", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 700;
  	font-style: normal;
	font-variation-settings: "wdth" 100;
}

.source-sans-3-light {
  	font-family: "Source Sans 3", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 300;
  	font-style: normal;
}

.source-sans-3-normal {
  	font-family: "Source Sans 3", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 400;
  	font-style: normal;
}

.source-sans-3-bold {
  	font-family: "Source Sans 3", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 600;
  	font-style: normal;
}

/* CORES */
.bg-cinza {
	background-color: #edebeb;
}

.bg-azul-escuro {
	background-color: #000720;
}

.cor-padrao {
	color: #0056b3;
}

.cor-segunda {
	color: #777777;
}

.cor-segunda-2 {
	color: #605f5f;
}

.cor-segunda-3 {
	color: #acacac;
}

.cor-terceira {
	color: #159b82;
}

.cor-quarta {
	color: #10846e;
}

.cor-quinta {
	color: #0056b3;
}

.cor-sexta {
	color: #e74c3c;
}

.cor-setima {
	color: #159b82;
}

.cor-oitava {
	color: #d35400;
}

.cor-nona {
	color: #6c5ce7;
}

.cor-decima {
	color: #f1c40f;
}

.cor-decima-p {
	color: #2ecc71;
}

.cor-ars {
	color: #008e9b;
}

.cor-sbo {
	color: #b84e38;
}

/* BADGES */
.badge-ars {
	background-color: #008e9b;
	color: #FFF;
	font-weight: 400;
	font-size: 0.8rem;
	border-radius: 0;
}

.badge-sbo {
	background-color: #b84e38;
	color: #FFF;
	font-weight: 400;
	font-size: 0.80rem;
	border-radius: 0;
}

.badge-valido {
	background-color: #00a87d;
	color: #FFF;
	font-weight: 400;
	font-size: 0.80rem;
	border-radius: 0;
}

.badge-execucao {
	background-color: #0056b3;
	color: #FFF;
	font-weight: 400;
	font-size: 0.80rem;
	border-radius: 0;
}

.badge-indisponivel {
	background-color: #ff4b3a;
	color: #FFF;
	font-weight: 400;
	font-size: 0.80rem;
	border-radius: 0;
}

.badge-expira {
  	position: absolute;
	text-align: center;
  	bottom: -26px;
  	left: 50%;
	width: 180px;
  	transform: translateX(-50%);
  	background-color: #58b59e;
  	color: #FFF !important;
  	font-size: 0.75rem;
  	padding: 10px 8px 6px 8px ;
  	border-radius: 6px;
  	z-index: -1;
}

.badge-aberto {
  	position: absolute;
	text-align: center;
  	bottom: -26px;
  	left: 50%;
	width: 180px;
  	transform: translateX(-50%);
  	background-color: #5b5b5b;
  	color: #FFF !important;
  	font-size: 0.75rem;
  	padding: 10px 8px 6px 8px ;
  	border-radius: 6px;
  	z-index: -1;
}

.badge-legenda {
	background-color: #FFF;
	font-weight: 400;
	border: 1px solid #CCC;
}

/* BASE */
.container h1 {
	font-size: 2.6rem;
}

.container h2 {
	font-size: 1.2rem;
}

.container p {
	font-size: 1rem;
}

/* BANNER */
.banner-container {
	position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    z-index: 1;
}
	  
.banner-img {
    width: 100%;
    object-fit: cover;
}
	  
.banner-txt {
	position: absolute;
	width: 50%;
    top: 63%;
    left: 82%;
    transform: translate(-82%, -82%);
    color: white;
    text-align: left;
    z-index: 2;
}

.banner-txt h1 {
	font-size: 2.8rem;
	color: #00d6fd;
}
	  
.banner-txt span {
	color: #f9f0a1;
}	  
	  
.banner-txt p {
	font-size: 1.2rem;
	margin-top: 1rem;
}

/* LÂMPADA */	  
.lampada-container {
    position: absolute;
    top: 0;
    right: 0%;
    width: 510px;
    height: auto;
    z-index: 1000;
}

.lampada-container img {
	position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease-in-out;
}

.lampada-acesa {
    opacity: 0;
    pointer-events: none;
}

/* MENU */	  
.navbar-custom {
    background-color: rgba(0, 40, 86, 0.7);
    padding: 0.7rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.navbar-brand {
	font-size: 2rem;
	color: #f2e18d;
	text-decoration: none;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0 auto;
	padding: 0;
}

.nav-menu li {
	margin-left: 1.5rem;
}

.nav-menu a {
	color: #FFF;
	text-decoration: none;
	position: relative;
	font-size: 13px;
}

.nav-menu a::after {
	content: '';
	display: block;
	height: 4px;
	width: 0;
	background: #01c9fb;
	transition: 0.3s;
	position: absolute;
	bottom: -5px;
	left: 0;
}

.nav-menu a:hover::after {
	width: 100%;
}

.mtouch {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1002;
}

.mtouch span {
	height: 3px;
	width: 25px;
	background: #f2e18d;
	margin-bottom: 5px;
	border-radius: 5px;
	transition: 0.3s;
}

#navMenu .contador-notificacao {
	position: relative;
	top: -8px;
	right: 3px;
	font-size: 0.8rem;
	padding: 4px 8px;
	border-radius: 20px;
}
	
#navMenu .badge-warning {
	background-color: #f9ed81;
	color: #00204a;
}	

/* OFERECEMOS */
.btn-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.btn-tags span {
	background: linear-gradient(135deg, #f9f9f9, #f0eeee);
	border-radius: 30px;
	padding: 6px 10px 6px 24px;
	font-size: 0.85rem;
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	transition: background 0.3s ease;
	border: 1px solid #f0eeee;
}

.btn-tags span i {
	position: absolute;
	left: 6px;
	top: -2px;
	font-size: 1.3rem;
	color: #0056b3;
	transition: transform 0.3s ease;
}
	 
.btn-tags span:hover i {
	animation: pulse 0.6s;
	color: #f9f0a1;
}

/* COMO FUNCIONA */
#como .passo {
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s ease;
	text-align: center;
}

#como .passo.visible {
	opacity: 1;
	transform: translateY(0);
}

#como .linha-central {
	position: relative;
	top: 230px;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #edebeb;
	z-index: 0;
}

#como .imagem-top,
#como .imagem-bottom {
	position: relative;
	z-index: 1;
}

#como .descricao {
	padding: 10px;
	z-index: 1;
	position: relative;
}

#como p {
	font-size: 1.1rem;
}

/* SOLUÇÕES */
#solucao .card-custom {
	max-width: 257px;
	margin: 0 10px;
	flex: 0 0 auto;
}

#solucao .card-body i {
	 color: #0066cc;
}

#solucao .card-body .small {
	font-size: 0.85rem !important;
}

#solucao .carousel-wrapper {
	overflow: hidden;
	position: relative;
}

#solucao .carousel-inner-custom {
	display: flex;
	transition: transform 0.5s ease;
}

/* DESAFIO E CUSTOM FORM */
#desafio {
	background-image: url('../../assets/img/ilustracao-circulos.png');
  	background-repeat: no-repeat;
  	background-position: right bottom;
  	background-size: clamp(200px, 38.28vw, 735px) auto;
}	
	
/* ----------------------------------i
   Bloco 1: Estrutura geral do formulário
---------------------------------- */
.form-box {
}

.form-box-start {
	border-radius: 30px;
	padding: 30px;
	width: 100%;
	position: relative;
}

.input-group {
	background-color: #FFF !important;
}
  
/* ----------------------------------
   Bloco 2: Campos de texto (.form-control e .input-group-text)
---------------------------------- */
.form-control {
	background-color: #f7f3f3 !important;
	border: 1px solid #c4c4c4 !important;
	color: #793597 !important;
	box-shadow: none !important;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
	box-shadow: 0 0 0 0.1rem rgba(40, 54, 109, 0.25);
	outline: none;
}

.form-control::placeholder {
	color: #b0b0b0 !important;
	opacity: 1;
}

.input-group-text {
	background-color: #f7f3f3 !important;
	border: 1px solid #c4c4c4 !important;
	color: #d0cece !important;
	transition: color 0.3s ease;
}

.input-group-text i {
	color: #d0cece !important;
	transition: color 0.3s ease;
}

.input-group:focus-within .form-control {
	border-color: #793597 !important;
}

.input-group:focus-within .input-group-text {
	border-color: #793597 !important;
}

.input-group:focus-within .input-group-text i {
	color: #793597 !important;
}

/* ----------------------------------
   Bloco 3: Validação - Estilo de erro
---------------------------------- */
.input-group.is-invalid .form-control {
	border-color: #e27056 !important;
}

.input-group.is-invalid .input-group-text {
	border-color: #e27056 !important;
}

.input-group.is-invalid .input-group-text i {
	color: #e27056 !important;
}

.input-group.is-invalid:focus-within .form-control {
	border-color: #e27056 !important;
}

.input-group.is-invalid:focus-within .input-group-text {
	border-color: #e27056 !important;
}

.form-check.is-invalid {
	border-color: #e27056 !important;
	background-color: #f8d7da !important;
}

.radio-group.is-invalid .radio-card {
	border: 1px solid #dc3545;
	background-color: #fff5f5;
}

/* ----------------------------------
   Bloco 4: Validação - Estilo de sucesso
---------------------------------- */
.is-valid .form-control {
	border-color: #58b59e !important;
	background-color: #FFF !important;
	color: #58b59e;
}

.form-check.is-valid {
	border-color: #58b59e !important;
	background-color: #d4edda !important;
	color: #58b59e !important;
}

.radio-group.is-valid .radio-card {
	border: 1px solid #58b59e;
	background-color: #FFF;
}

/* ----------------------------------
   Bloco 5: Radio customizado em cartões
---------------------------------- */
.radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.radio-card {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 6px 16px;
	border: 1px solid #c4c4c4;
	border-radius: 4px;
	cursor: pointer;
	color: #b0b0b0;
	font-size: 0.9rem;
	background-color: #FFF;
	transition: all 0.2s ease;
}

.radio-card input[type="radio"] {
	display: none;
}

.radio-card .custom-radio {
	width: 16px;
	height: 16px;
	border: 1px solid #c4c4c4;
	border-radius: 50%;
	position: relative;
}

.radio-card input[type="radio"]:checked + .custom-radio::after {
	content: "";
	width: 8px;
	height: 8px;
	background-color: white;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.radio-card input[type="radio"]:checked + .custom-radio {
	background-color: #0056b3;
	border-color: #024c9d;
}

.radio-card input[type="radio"]:checked ~ span {
	color: #FFF;
}

.radio-card input[type="radio"]:checked ~ .radio-card {
	background-color: #FFF;
}

.radio-card input[type="radio"]:checked ~ .custom-radio {
	background-color: #0056b3;
}

input[type="radio"]:checked + .custom-radio + span {
	color: #024c9d;
}

input[type="radio"]:checked + .custom-radio {
	background-color: #FFF;
	border-color: #024c9d;
}

label:has(input[type="radio"]:checked) {
	background-color: #FFF;
	color: #024c9d;
}

/* ----------------------------------
   Bloco 6: Estilo do .form-check-input (radio padrão)
---------------------------------- */
.form-check-input {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 17px;
	height: 17px;
	border: 2px solid #793597;
	border-radius: 50%;
	background-color: #FFF;
	cursor: pointer;
	outline: none;
	transition: all 0.2s ease-in-out;
}

.form-check-input:hover {
	border-color: #0056b3;
}

.form-check-input:checked {
	background-color: #0056b3;
	border-color: #FFF;
}

/* ----------------------------------
   Bloco 7: Alertas (danger / success)
---------------------------------- */
.alert-danger {
	border-color: #f98b72 !important;
	background-color: #f8d7da !important;
	color: #d05b40 !important;
}

.alert-success {
	border-color: #58b59e !important;
	background-color: #d0f4eb !important;
	color: #50a18d !important;
}

#overlaySuccess {
  	position: fixed;
  	bottom: -120%;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	background-color: rgba(0, 86, 179, 0.95);
  	color: #FFF;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	text-align: center;
  	z-index: 1050;
  	transition: bottom 1s ease;
}

#overlaySuccess.active {
  	bottom: 0;
}

#overlaySuccess .icon-top {
	position: absolute;
  	top: -100px;
  	font-size: 4rem;
}

.radio-group.is-invalid .radio-card {
    border-color: #e27056 !important;
    background-color: #FFF !important;
    color: #e27056 !important;
}

.radio-group.is-valid .radio-card {
    border-color: #58b59e !important;
    background-color: #FFF !important;
}

.progress-button,
.progress-button-infra {
	position: relative;
	overflow: hidden;
	background-color: #793597;
	color: #FFF;
	border: none;
	transition: background-color 0.3s;
}

.progress-button::before,
.progress-button-infra::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #0056b3;
	width: var(--progress, 0%);
	z-index: 0;
	transition: width 0.3s ease;
}

.progress-button span,
.progress-button-infra span {
	position: relative;
	z-index: 1;
}
	
.form-ilustracao {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 35%;
}
.custom-checkbox {
	margin-top: 15px;
}

/* OUTROS BENEFÍCIOS */
.beneficios-list {
	margin: 40px auto;
	padding: 30px;
}

.beneficios-item {
	display: grid;
	grid-template-columns: 40px auto;
	align-items: start;
	column-gap: 10px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.beneficios-icon {
	font-size: 1.6rem;
	color: #c7c6c6;
	width: 40px;
	text-align: left;
	margin-right: 15px;
	transition: transform 0.3s ease;
}

.beneficios-item:hover .beneficios-icon {
	color: #0056b3;
	transform: scale(1.2);
}

.beneficios-txt {
	font-size: 1.1rem;
} 

/* PERGUNTAS FREQUENTES */
#faq .card {
	border: none;
	margin-bottom: 10px;
	background-color: #FFF;
}

#faq .card-header {
	background-color: #f6f3f3;
	padding: 8px 8px 8px 12px;
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	border-radius: 0;
}

#faq .card-header:hover {
	background-color: #edebeb;
	color: #0056b3;
}

#faq .faq-icon {
	background-color: #0056b3;
	color: #FFF;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	margin-right: 10px;
	flex-shrink: 0;
}

 #faq .card-body {
	background-color: #ffffff;
	padding: 15px;
	border-top: 1px solid #f6f3f3f6f3f3;
}
	
#faq .card-header.active {
	background-color: #edebeb;
	color: #0056b3;
}

#faq .card-header .seta {
	transition: transform 0.3s ease;
}

#faq .card-header.active .seta {
	transform: rotate(180deg);
}

/* ESTRUTURA */
#estruturas .card-infra {
	max-width: 352px;
	margin: 0 10px;
	flex: 0 0 auto;
}

.sobreposicao {
	bottom: 10px;
	right: 10px;
}

#estruturas .card-body i {
	 color: #0066cc;
}

#estruturas .card-body .small {
	font-size: 0.85rem !important;
}

#estruturas .carousel-wrapper {
	overflow: hidden;
	position: relative;
}

#estruturas .carousel-inner-custom {
	display: flex;
	transition: transform 0.5s ease;
}

#estruturas .nav-setas {
	text-align: center;
	margin: 10px auto;
}

#estruturas .nav-setas i {
	font-size: 28px;
	cursor: pointer;
	margin: 0 10px;
	color: #0056b3;
	transition: transform 0.2s;
}

#estruturas .nav-setas i:hover {
	transform: scale(1.2);
	color: #02458d;
}

/* NOSSOS PARCEIROS */
#parceiros .img-logo {
	filter: grayscale(100%);
	transition: filter 0.4s ease;
	max-width:  206px;
	object-fit: contain;
}

#parceiros .card:hover .img-logo {
	filter: grayscale(0%);
}

/* CONTEÚDO INTERNO */
#interno h1 {
	font-size: 2.2rem;	
}

#interno h2 {
	font-size: 1.2rem;	
}

#interno h3 {
	font-size: 1.1rem;	
}

.album-fotos-container {
	overflow-x: auto;
  	-webkit-overflow-scrolling: touch;
}

.album-fotos-container::-webkit-scrollbar {
	height: 6px;
  	width: 0px;
	background: #FFF !important;
	box-shadow: none !important;
}

.album-fotos-container::-webkit-scrollbar-track {
	background: transparent;
}

.album-fotos-container::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.2) !important;
	border-radius: 0px;
}

.album-fotos-container::-webkit-scrollbar-thumb:hover {
	background-color: rgba(0, 0, 0, 0.4);
}

.album-fotos {
	display: flex;
  	flex-wrap: nowrap;
  	gap: 1rem;
}

.foto-card {
  	flex: 1 1 auto;
  	max-width: 250px;
  	text-align: center;
}

.foto-card img {
	width: 100%;
  	height: auto;
  	border-radius: 8px;
  	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-flip {
	perspective: 1000px;
}

.card-flip p {
	font-size: 0.95rem !important;
}

.card-flip-inner {
  	position: relative;
  	width: 100%;
  	height: 200px;
  	transform-style: preserve-3d;
  	transition: transform 0.6s;
}

.card-flip:hover .card-flip-inner {
  	transform: rotateY(180deg);
}

.card-flip-front, .card-flip-back {
  	position: absolute;
  	width: 100%;
  	height: 100%;
  	backface-visibility: hidden;
  	border-radius: .5rem;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	padding: 1rem;
}

.card-flip-front {
  	background-color: #f8f9fa;
  	border: 1px solid #ddd;
}

.card-flip-back {
  	background-color: #007bff;
  	color: #FFF;
  	transform: rotateY(180deg);
}
.card-flip {
  	perspective: 1000px;
}

.card-flip-inner {
  	position: relative;
  	width: 100%;
  	height: 200px;
  	transform-style: preserve-3d;
  	transition: transform 0.6s;
}

.card-flip:hover .card-flip-inner {
  	transform: rotateY(180deg);
}

.card-flip-front, .card-flip-back {
  	position: absolute;
  	width: 100%;
  	height: 100%;
  	backface-visibility: hidden;
  	border-radius: .5rem;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	padding: 1rem;
}

.card-flip-front {
  	background-color: #f8f9fa;
  	border: 1px solid #ddd;
}

.card-flip-back {
  	background-color: #0056b3;
  	color: #FFF;
  	transform: rotateY(180deg);
}

.card-conectado {
  	position: relative;
  	padding-left: 2rem;
  	border-left: 3px solid #ccc;
}

.card-conectado::before {
  	content: "";
  	position: absolute;
  	top: -16px;
  	left: 0;
  	height: 16px;
  	width: 3px;
  	background-color: transparent;
}

.card-conectado::after {
  	content: "";
  	position: absolute;
  	bottom: -16px;
  	left: 0;
  	height: 16px;
  	width: 3px;
  	background-color: transparent;
}

.card-conectado.last::after {
  	display: none;
}

@media only screen
and (max-width : 575px) {
	/* BASE */
	.container h1 {
		font-size: 1.8rem;
	}
	
	.container h2 {
		font-size: 0.9rem;
	}

	.container p {
		font-size: 0.9rem;
	}
	
	/* BANNER */
	.banner-container {
		position: relative;
		width: 100%;
		z-index: 1;
	}
	 
	.banner-txt {
		width: 90%;
		top: 45%;
		left: 30%;
		transform: translate(-30%, -30%);
	}
	 
	.banner-txt h1 {
		font-size: 1.6rem;
	}

	.banner-txt p {
		font-size: 0.8rem;
	}
	
	.banner-img {
		width: 100%;
		object-fit: cover;
	}
	
	/* MENU */	
	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		background-color: #002856;
		height: 100vh;
		width: 100vw;
		flex-direction: column;
		align-items: start;
		padding: 4rem 1rem;
		transition: right 0.4s ease-in-out;
		z-index: 1000;
	}

	.nav-menu.active {
		right: 0;
	}

	.nav-menu li {
		margin: 0.8rem 0;
	}
	
	.nav-menu a {
		font-size: 12px;
	}
	
	.mtouch {
		display: flex;
	}

	.mtouch.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.mtouch.active span:nth-child(2) {
		opacity: 0;
	}

	.mtouch.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}
	
	/* COMO FUNCIONA */
	#como .linha-central {
		display: none;
	}

	#como .imagem-top,
	#como .imagem-bottom {
		width: 38%;
		margin: 0 auto !important;
	}

	#como .passo {
		margin-bottom: 0;
	}
	
	#como p {
		font-size: 0.9rem;
	}
	
	/* DESAFIO E CUSTOM FORM */	
	.form-ilustracao {
		display: none;
	}
	
	/* OFERECEMOS */
	.btn-tags span {
		font-size: 0.8rem;
	}
	
	/* SOLÇÕES */
	#solucao .card-custom {
		max-width: 257px;
		margin: 0 auto 1rem auto;
	}
	
	/* OUTROS BENEFÍCIOS */
	.beneficios-icon {
		font-size: 1.4rem;
	}

	.beneficios-txt {
		font-size: 0.9rem;
	} 
		
	/* ESTRUTURAS */
	#estruturas .card-infra {
		max-width: 85%;
		margin: 0 10px;
		flex: 0 0 auto;
	}
			
	/* NOSSOS PARCEIROS */
	#parceiros .img-logo {
		width:  150px;
	}
	
	/* PERGUNTAS FREQUENTES */
	#faq .card-header {
		font-size: 0.9rem;
	}
	
	/* CONTEÚDO INTERNO */
	#interno h1 {
		font-size: 1.6rem;	
	}

	#interno h2 {
		font-size: 1.2rem;	
	}
	
	#interno h3 {
		font-size: 1rem;	
	}
	
	#interno .list-group-flush {
		font-size: 0.9rem;	
	}
	
	.foto-card {
		flex: 0 0 auto;
		min-width: 120px;
		max-width: 200px;
	}
 
}

@media (min-width: 768px) {
	.border-left-md {
    	border-left: 1px solid #e5e5e5;
  	}
}