/* ----------------------------------------------------
Theme Name: VIA-RS Styles
Author: VIA-RS Web Solutions
Author URI: https://via-rs.net.br
Developer: Equipe VIA-RS Web Solutions
---------------------------------------------------- */

@charset "UTF-8";

/*--------------------------------------------------------------
	Custom Style for Bootstrap 5.3 
	Focus: Nav, Header, Main, Footer + Utilities
--------------------------------------------------------------*/
:root {
	--primary-font: 'Open Sans', Arial, sans-serif;
	--second-font: 'Roboto', Arial, sans-serif;	
	--third-font: 'Barlow Condensed', Arial, sans-serif;	
	--body-color: #000;
	--background-color: #4B77BE;	
	--transition-speed: 0.3s;
	--nav-bg: #33497a;	
	--footer-bg: #33497a; /* #50689e */
	--primary-blue: #4B77BE;
	--error-red: #CF000F;
	--btn-secondary: #50689e; 
}

/*--------------------------------------------------------------
	SMOOTH SCROLL
--------------------------------------------------------------*/
scroll-behavior: smooth;

/*--------------------------------------------------------------
	BASE STRUCTURE 
--------------------------------------------------------------*/
html, body {
	width: 100%;
	height: 100%; 
}

/*--------------------------------------------------------------
	RESET & BASE
--------------------------------------------------------------*/
body {
	font-family: var(--primary-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--body-color);
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	padding-top: 30px; 
}

h1, h2, h3, h4, h5, h6 {
	display: block;
	width: 100%;
	margin-bottom: 0.5em; 
	font-weight: 400; 
}

h1 { font-family: var(--third-font); }

h1 { font-size: 2.25rem; }  /* ~36px */
h2 { font-size: 1.75rem; }  /* ~28px */
h3 { font-size: 1.35rem; line-height: 1.6; }  /* ~21.6px */
h4 { font-size: 1.15rem; }  /* ~18.4px */
h5 { font-size: 1rem; }     /* ~16px */
h6 { font-size: .875rem; }  /* ~14px */

p {
	display: block;
	width: 100%;
	font-family: var(--primary-font);
	font-size: 1em;
	font-weight: 400;
	color: var(--body-color);
	line-height: 1.6;
	margin-bottom: 15px; 
}

br, hr {
	display: block;
	float: none;
	padding: 0;
}

hr {
	background: #000;
	width: 100%;
	height: 1px;
	border: 0;
	margin: 10px 0;
}

/*--------------------------------------------------------------
	LINKS & IMAGES
--------------------------------------------------------------*/
a {
	color: royalblue;
	text-decoration: none;
	outline: none;
	transition: all 0.3s ease-out;
}

a:focus, .btn:focus {
	color: royalblue;
	text-decoration: none;
	outline: none;
}

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

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

.img-center { display: block; margin: 0 auto; }
.img-top { display: block; margin: 40px auto 0; }
.img-bottom { display: block; margin: 0 auto 40px; }
.img-vertical { display: block; margin: 0 auto; vertical-align: middle; }
.img-border-radius { border-radius: 15px; }

a:hover img {
	transition: all 0.5s linear;
	filter: grayscale(100%);
}

/*--------------------------------------------------------------
	COLOR & BACKGROUND UTILITIES
--------------------------------------------------------------*/
.color-black, .black { color: #000000; }
.color-white, .white { color: #FFFFFF; }
.color-blue { color: var(--primary-blue); }
.color-default { color: #335B85; }
.color-gray { color: #909090; }
.color-green { color: #396A0D; }
.color-red { color: var(--error-red); }

.bg-black { background-color: #000000; }
.bg-white { background-color: #FFFFFF; }
.bg-blue { background-color: var(--primary-blue); }
.bg-custom { background-color: #2a2c39; }
.bg-gray { background-color: #EEEEEE; }
.bg-red { background-color: var(--error-red); }

/*--------------------------------------------------------------
	SOCIAL NETWORKS
--------------------------------------------------------------*/
.bg-facebook { background-color: #3B5998; }
.bg-instagram {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%),
                linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}
.bg-whatsapp { background-color: #25D366; }

/*--------------------------------------------------------------
	ALERTS & LOADING
--------------------------------------------------------------*/
#loading { display: none; }
.loading { float: left; height: 60px; }
#resposta { width: 100%; height: auto; margin: 15px auto 0; }

.erro {
	text-align: center;
	margin-bottom: 20px;
	padding: 15px;
	clear: both;
}

.oops, .sucesso {
	color: #fff;
	text-align: center;
	margin-bottom: 20px;
	padding: 15px;
	clear: both;
}

.erro { background: #fff; color: #990000; border: 1px solid #990000; font-size: 1em; font-weight: 600; }
.oops { background: #990000; color: #fff; font-weight: 600; }
.sucesso { background: #314F1E; color: #fff; font-weight: 600; }

.pagina-404 img, .pagina-erro img {
	display: block;
	width: 70%;
	margin: 0 auto;
	background-color: white;
}

/*
Hidden Form Field
*/
.field-hidden {
	position: absolute;
	left: -9999px; /* Joga o campo para fora da tela */
	top: -9999px;
}

/*--------------------------------------------------------------
	PRELOADER (SPINNER)
--------------------------------------------------------------*/
.spinner-wrapper {
	position: fixed;
	z-index: 999999;
	top: 0; left: 0; right: 0; bottom: 0;
	background-color: #33497a;
	display: flex;
	justify-content: center;
	align-items: center;
}

.spinner {
	width: 9rem;
	height: 3rem;
	text-align: center;
}

.spinner > div {
	display: inline-block;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 100%;
	background-color: #fff;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 { animation-delay: -0.32s; }
.spinner .bounce2 { animation-delay: -0.16s; }

@keyframes sk-bouncedelay {
	0%, 80%, 100% { transform: scale(0); }
	40% { transform: scale(1.0); }
}

/*--------------------------------------------------------------
	ANIMATION TIME
--------------------------------------------------------------*/
.delay-02s {
  animation-delay: 0.2s;
}

.delay-03s {
  animation-delay: 0.3s;
}

.delay-04s {
  animation-delay: 0.4s;
}

.delay-05s {
  animation-delay: 0.5s;
}

.delay-06s {
  animation-delay: 0.6s;
}

/*--------------------------------------------------------------
	NAVIGATION & SCROLLBAR
--------------------------------------------------------------*/
.container-fluid { max-width: 1440px; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #888; border-radius: 4px; }

nav {
	background-color: var(--nav-bg); /* #004080 */
	width: 100%;
	height: 70px;
	font-family: var(--second-font);
	font-size: 1em;
	font-weight: 400;
	text-transform: uppercase;	
	line-height: 1.6;
}

nav .navbar-nav {
	background-color: var(--nav-bg); 	
	margin: 0;
	padding: 0;
}

nav .navbar.bg-dark {
	background-color: var(--nav-bg); 
}

nav .navbar-brand {
	background-color: var(--nav-bg);	
	font-family: var(--second-font);
	font-size: 1em;	
	font-weight: 400;
	color: white;
	line-height: 1;
	letter-spacing: -0.2px;
	padding: 0 0 0 10px;
}

nav .collapse .navbar-collapse {
	background-color: var(--nav-bg);		
}

nav ul li {
	background-color: var(--nav-bg);		
	max-width: 100%;	
}

nav ul li a {
	max-width: 100%;	
	color: #ffffff;
	margin-left: 15px;	
}

nav ul li a:hover {
	background-color: var(--nav-bg);		
	max-width: 96%;	
	color: #d9e4fc;	
}

.nav-link {
	background-color: var(--nav-bg);	
	font-weight: 600;
	position: relative;
}

nav .navbar-brand .logo img {
	display: inline;
	float: none;
	width: 50px;
	height: 50px;
	margin: 0 10px 0 0;
	padding: 0;
}

nav .dropdown {
	background-color: var(--nav-bg);		
}

/* Altera o fundo e a borda do menu suspenso */
.dropdown-menu {
	background-color: var(--nav-bg);
	border: 0px solid #495057;
	border-radius: 0; /* Cantos mais arredondados */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Altera a cor e o espaçamento dos itens do menu */
.dropdown-item {
	width: 240px;
	color: #ffffff;
	padding: 5px 0 5px 10px; /* 10px 20px */
}

/* Altera a cor do item ao passar o mouse */
.dropdown-item:hover, .dropdown-item:focus {
	background-color: var(--nav-bg);
	color: #ffffff;
}

/* Altera a cor do item ao passar o mouse */
.dropdown-item:hover, .dropdown-item:hover {
	background-color: var(--nav-bg);
	color: #d9e4fc;
}

/*--------------------------------------------------------------
	BUTTONS
--------------------------------------------------------------*/	
.btn {
  float: right;
  width: 100%;
  font-size: 1em;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
	border-radius: 7px;
  border: 0;
  margin: 15px 0 20px 0;
  padding: 12px 2%;
}

.btn-default {
  background-color: #2f4066;
  box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
  color: #fff;
}

.btn-default-border {
  background-color: none;
  border: 2px solid #182a52;
  color: rgba(0, 0, 128, 1);
}

.btn-default-border:hover {
  background-color: #3c4f7a;
  border: 2px solid #3c4f7a;
  color: #ffffff;
}

.btn-secondary {
	background-color: var(--btn-secondary);
}

.btn-border {
  border: 0px solid rgba(55,80,120, .85);
}

/* Sweep To Right */
.btn-effect {
	vertical-align: middle;
	box-shadow: 0 0 1px rgba(0, 0, 0, .75);
	position: relative;
	display: inline-block;	

	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
		-ms-transform: translateZ(0);
		 -o-transform: translateZ(0);
			transform: translateZ(0);

	-webkit-backface-visibility: hidden;
	   -moz-backface-visibility: hidden;
			backface-visibility: hidden;

	-webkit-transition-property: color;
	   -moz-transition-property: color;
		-ms-transition-property: color;
			transition-property: color;

	-webkit-transition-duration: 0.5s;
	   -moz-transition-duration: 0.5s;
		-ms-transition-duration: 0.5s;
			transition-duration: 0.5s;

	-moz-osx-font-smoothing: grayscale;
}

.btn-effect:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
  background-color: #3c4f7a;
	border-radius: 10px;  

	-webkit-transform: scaleX(0);
	   -moz-transform: scaleX(0);
		-ms-transform: scaleX(0);
			transform: scaleX(0);

	-webkit-transform-origin: 0 50%;
	   -moz-transform-origin: 0 50%;
		-ms-transform-origin: 0 50%;
			transform-origin: 0 50%;

	-webkit-transition-property: transform;
	   -moz-transition-property: transform;
		-ms-transition-property: transform;
			transition-property: transform;

	-webkit-transition-duration: 0.5s;
	   -moz-transition-duration: 0.5s;
		-ms-transition-duration: 0.5s;
			transition-duration: 0.5s;

	-webkit-transition-timing-function: ease-out;
	   -moz-transition-timing-function: ease-out;
		-ms-transition-timing-function: ease-out;
			transition-timing-function: ease-out;
}

.btn-effect:hover, .btn-effect:focus, .btn-effect:active {
	color: #fff;
}

.btn-effect:hover:before, .btn-effect:focus:before, .btn-effect:active:before {
	-webkit-transform: scaleX(1);
		-moz-transform: scaleX(1);
			-ms-transform: scaleX(1);
				transform: scaleX(1);
}

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

/* Home Carousel Section
--------------------------------------------------------------*/
.banner {
  width: 100%;
  min-height: 90vh;
  overflow: hidden;
  position: relative;
  background-attachment: fixed; 
  background-image: url("../images/banner.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-position: top;
	margin-top: 0;	
	margin-bottom: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
	z-index: 0;   
}

.banner .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
	font-family: var(--primary-font);
  text-align: center;
  color: white;
  position: relative;
  min-height: 60vh;
  padding-top: 0px;
}

.banner h1 {
  margin-top: 0;
  margin-bottom: 0;
	font-family: var(--third-font);
  font-size: 46px;  
  font-weight: 600;
  color: white; 
  line-height: 1.1; 
  padding: 0;
}

.banner p span {
	font-family: var(--third-font);	
	font-size: 1.75rem;
	color: white;
  text-decoration: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.banner p {
  max-width: 90%;
	font-family: var(--primary-font);  
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.6;
  color: white;  
  animation-delay: 0.4s;
  margin: 20px auto 30px auto;
}

.banner .carousel-control-prev,
.banner .carousel-control-next {
  width: 10%;
}

.banner .carousel-control-next-icon,
.banner .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.banner .btn-get-started {
	font-family: var(--primary-font);	
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .05px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 30px;
  transition: 0.5s;
  line-height: 1;
  margin: 40px 0 0 0;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid royalblue;
}

.banner .btn-get-started:hover {
  background: royalblue;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
	
  .banner p {
    max-width: 60%;
  }

  .banner .carousel-control-prev,
  .banner .carousel-control-next {
    width: 5%;
  }
  
}

@media (max-width: 1440px) {
				
  .banner .carousel-container {
    min-height: 90vh; /*90vh*/
  } 
  
	.banner h1 { margin-top: 180px; } 
	
	.banner p span {	
		font-size: 1.75rem;
  	margin-top: 0;
  	margin-bottom: 0;
	}	
   
  .banner h2 {
  	font-size: 36px;
    margin-top: 80px;
  } 
  
	.banner .btn-get-started {  
  	margin: 40px 0 40px 0; 
  } 
  
}

@media (max-width: 1024px) {
	
  .banner .carousel-container {
    min-height: 90vh; /*90vh*/
  }  
   		
  .banner h2 {
    margin-top: 60px;   
  }	
	
  .banner p {
    max-width: 60%;
  }
  
}

@media (max-width: 992px) {
		
  .banner .carousel-container {
    min-height: 90vh; /*90vh*/
  }  
  
	.banner h1 { margin-top: 180px; margin-bottom: 0; } 
	
	.banner h1 span {	
		font-size: 1.75rem;
  	margin-top: -100px;
  	margin-bottom: 0;
	}	 
  
  .banner h2 {
    font-size: 32px;
  } 
      
}

@media (max-width: 768px) { /* 300% */
	
  .banner .carousel-container {
    min-height: 80vh; /*90vh*/
  }
  
	.banner h1 { margin-top: 150px; }    

  .banner h2 {
    font-size: 28px;
    margin-top: 45px;   
  }
  
  .banner p {
  	font-size: 1rem;
  }

	.banner .btn-get-started {  
  	margin: 40px 0 40px 0; 
  } 
  
}

@media (max-width: 640px) {
	
  .banner .carousel-container {
    min-height: 90vh; /*90vh*/
  }

  .banner h1 {
    font-size: 32px;
    padding: 0 30px 0 30px;
  }
  
  .banner h2 {
    font-size: 28px;
  }  
  
	.banner h1 span {
		font-size: 1.75rem;
  	text-decoration: none;
	}  
  
  .banner p {
  	font-size: .96rem;
  }

	.banner .btn-get-started {  
  	margin: 40px 0 40px 0; 
  } 
  
}

@media (max-width: 572px) { /* 400% */
	
  .banner .carousel-container {
    min-height: 80vh; /*90vh*/
  }
  
	.banner h1 { margin-top: 120px; }    

  .banner h1 {
    font-size: 32px;
    padding: 0 30px 0 30px;
  }
  
  .banner h2 {
    font-size: 28px;
  }  
  
	.banner h1 span {
		font-size: 1.75rem;
  	text-decoration: none;
	}  
  
  .banner p {
  	font-size: .96rem;
  }

	.banner .btn-get-started {  
  	margin: 40px 0 40px 0; 
  } 
  
}

.home-waves {
  display: block;
  width: 100%;
  height: 70px;
  margin-top: 20px;
  position: relative;
	z-index: 10;  
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #fff;
  opacity: 0.6;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #fff;
  opacity: 0.4;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #fff;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
	MAIN
--------------------------------------------------------------*/
section { margin: 0; padding: 0; }
main { flex: 1; padding: 0;  }

.container { padding-right: 35px; padding-left: 35px; }
.container-fluid { padding-right: 35px; padding-left: 35px; }

.sec-padding { margin: 80px 0 0 0; padding: 0; }

.logo-home {
  display: block;
  justify-content: center; /* Centraliza na horizontal */
  align-items: center;     /* Centraliza na vertical (opcional) */
  margin: 0 auto;
  margin-top: -60px;
  margin-bottom: 40px;
  padding: 0;
  width: 50%; /* Defina o tamanho da imagem */
  height: auto;
  position: relative;
  z-index: 2;
}

.home .card-title {
	display: block;
	float: none;
	background-color: var(--footer-bg);
	font-family: var(--third-font);	
	font-size: 1.3em;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 10px;	
	padding: 12px;
}

.home .card-text {
	height: 140px;
	padding: 15px 15px 0 15px;
}

.home .btn-margin-bottom {
	display: block;
	float: none;	
	margin-bottom: 40px;
}

.box-escritorio {
	width: 100%;
	height: auto;	
	border-top: 10px solid #d5dbe8; /* #d5dbe8 */	
	border-bottom: 10px solid #d5dbe8; /* #d5dbe8 */		
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;	
	margin-top: 60px;
	padding: 30px;		
}

.style-border img {
	border-radius: 15px;
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
	margin-bottom: 40px;
}

.box-escritorio span {
	display: block;
	float: none;	
	width: 100%;
	height: auto;	
	font-family: var(--third-font);
	font-size: 1.65rem; 	 
	font-weight: 500;	
	color: navy;
	line-height: 1.6;
  text-align: center;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	padding: 0 0 20px 0;
}

.page-title h1 {
	display: block;
	float: none;
	width: 100%;
	height: auto;
	font-family: var(--third-font);
	font-size: 1.75rem; 	 
	font-weight: 500;
	color: #293e6e;
	text-align: left;
	text-indent: 10px;
	text-transform: none;
	letter-spacing: -0.1px;
	border-top: 1px solid #86751d; /* #d5dbe8 */
	border-bottom: 10px solid #d5dbe8; /* #d5dbe8 */		
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;	
	margin-top: 0;		
	margin-bottom: 40px;
	padding: 14px 0 12px 0;
	position: relative;
  z-index: -9999;	
} 

.page-title .circulo {
	display: block;
	float: none;	
  width: 80px;       /* Largura do elemento */
  height: 80px;      /* Altura do elemento (igual à largura) */
  background-color: #ffffff; /* Cor de fundo do círculo */
  border-radius: 50%; /* Propriedade que cria o círculo */ 
  /* Estilização da Borda */
  border: 5px solid #50689e; /* Espessura, estilo e cor da borda */
  text-align: center;
	align-items: center;
	justify-content: center;
	filter: drop-shadow(3px 4px 4px rgba(0, 0, 0, 0.3));	
  margin: 0 auto;
 	margin-top: 40px; 
  margin-bottom: -10px;  
  padding: 7px;
  z-index: 0;
}

.page-title .circulo .fa-balance-scale {
	display: block;
	float: none;
	font-size: 44px;
	color: #50689e;
	text-align: center;
	margin: 7px 0 0 2px;
	padding: 0;
  z-index: 0;
}

.page-title h1 .fa-caret-right {
	display: inline;
	float: left;
	font-size: 30px;
	background-color: none;
	color: #ff0000;	
	margin-top: 3.5px;
	padding: 0;
}

.page-destaque {
	padding: 0 0 40px 0;
}

p.citacao {
  position: relative;
  font-size: 18px; /* Tamanho do seu texto */
  line-height: 1.6;	
	color: #000;
	font-weight: 600;
  font-style: italic;
  quotes: "“" "”"; /* Define os pares de aspas */
  margin-top: 20px;
  padding: 50px;
}

p.citacao::before {
  content: "“";
  position: absolute;
  left: 0;
  top: 10px; /* Ajusta a altura da aspa inicial */
  font-size: 80px;
  color: #0066cc;
  font-family: Georgia, serif;
  line-height: 1;
}

p.citacao::after {
  content: "”";
  position: absolute;
  right: 0;
  bottom: -30px; /* Ajusta a altura da aspa final */
  font-size: 80px;
  color: #0066cc;
  font-family: Georgia, serif;
  line-height: 1;
}

.static-page {
	display: block;
	float: none;
	width: 100%;
	height: auto;
	font-family: var(--primary-font);
	font-size: 1em;
	font-weight: 400;
	color: var(--body-color);
	line-height: 1.6;	
	margin:	20px 0 60px 0;
	padding: 0;
}

.static-page .oops {
	font-family: var(--third-font);		
	font-size: 1.4em;
	font-weight: 600;
	line-height: 1;
}

.static-page .not-found {
	display: block;
	float: none;
	max-width: 300px;
	height: auto;
	margin: 0 auto;
	margin-top: 10px;	
	margin-bottom: -20px;
	padding: 0;
}

.home .page-title h1 {
	margin-top: 80px;
}

.manutencao-title2 h1,
.not-found-title2 h1 {
	display: block;
	float: none;
	width: 100%;
	height: auto;
	font-family: var(--third-font);	
	font-weight: 600;
	color: navy;
	text-align: center;
	text-transform: uppercase;
	border-top: 10px solid #ddd;
	border-bottom: 10px solid #ddd;		
	border-radius: 10px;	
	margin-top: 60px;	
	margin-bottom: 60px;
	padding: 15px 0;
}

.not-found,
.pagina-erro,
.pagina-manutencao {
	background-color: white; 
	margin: 0;	
	padding: 30px;	
}

.oops {
	font-size: 1.4em;
	font-weight: 600;
	line-height: 1;
}

.not-found {
	display: block;
	float: none;
	max-width: 300px;
	height: auto;
	margin: 0 auto;
	margin-top: 10px;	
	margin-bottom: -20px;
	padding: 0;
}

.pagina-erro h1 {
	display: block;
	float: none;
	width: 100%;
	height: auto;
	font-family: var(--third-font);	
	font-weight: 600;
	color: #293e6e;
	text-align: center;
	text-indent: 0;
	text-transform: none;
	border-top: 10px solid #33497a; 
	border-bottom: 10px solid #33497a; 
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;			
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	margin: 0 0 40px 0;	
	padding: 12px 0 10px 0;
  z-index: 0;	
} 

.not-found img,
.pagina-erro img {
	display: block; 
	float: none;
	max-width: 600px; 
	height: auto; 
	margin: 0 auto;
	margin-bottom: 60px;
	padding: 0;		 
}

.fa-arrow-left {
	display: block;
	float: left;
	font-size: 32px;
	margin: -20px 0 0 0;
	padding: 0;		
	z-index: 0;
}

/*--------------------------------------------------------------
	BLOG 
--------------------------------------------------------------*/
.blog nav {
	background-color: white;
}

.blog .box-card {
	display: block;
	float: none;
	width: 100%;	
	height: auto;	
	margin-top: 0;
	margin-bottom: 60px;
	padding: 0;
}

.blog .card {
	width: 100%;
	border: 1px solid rgba(0, 0, 0, .4);
}

.blog .card .btn {
	display: block;
	float: none;	
	max-width: 92%;
	margin: 0 auto;
	margin-bottom: 0;
}

.blog .card-body {
	width: 100%;	
	min-height: 320px;	
	padding-bottom: 5px;
}

.blog .card-body p {
	margin: 0;
	padding: 0;
}

.blog .card-body .card-text p {
	display: block;
	float: none;		
	width: 100%;
	height: 360px;
	font-family: var(--primary-font);
	font-size: 1em;
	font-weight: 300;
	color: var(--body-color);
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

.blog .card-body .post-data {
	font-size: 0.85em;
}

.blog .card-body .badge {
	background-color: #d5d5d5;
	width: 100%;
	height: auto;
	font-family: var(--third-font);
	font-size: 1.1em;
	font-weight: 600;
	color: #000;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 0;
	margin-top: 10px;
	padding: 12px;
}

.blog .card-body .card-title {
	display: block;
	float: none;
	width: 100%;
	height: auto;
	font-family: var(--second-font);
	font-size: 1.1em;
	line-height: 1.6;
	font-weight: 600;
	text-align: center;		
	border: 0;
	margin: 0 auto;
	margin-bottom: 15px;
	padding: 15px 15px 0px 15px;
}

.blog .card-body .card-text-customizada {
	font-family: var(--primary-font);
	font-size: .96em;
	font-weight: 300;
	color: #000;
	line-height: 1.2;
	margin: 0px 0 15px 0;
	padding: 0;
}

.blog .card-img-top { 
	height: 200px; 
	object-fit: cover; 
}

.blog .post .badge {
	display: block;
	float: none;	
	background-color: royalblue;
	width: 100%;
	height: auto;
	font-family: var(--third-font);
	font-size: 1.3em;
	font-weight: 600;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0px;
	border-radius: 7px;	
	margin: -20px 0 0 0;
	padding: 15px;
}

.blog .post .data {
	font-family: var(--primary-font);
	font-size: .90em;
	font-weight: 400;
	color: #222;
}

.blog .post h1 {
	display: block;
	float: none;
	width: 100%;
	height: auto;
	font-family: var(--third-font);
	font-size: 2.2em;
	font-weight: 600;
	text-transform: none;
	text-align: center;
	letter-spacing: -0.2px;	
	margin-bottom: 30px;
	padding: 10px;
}

.blog .post-img { 
	max-height: 500px; 
	width: 100%; 
	object-fit: cover; 
	border-radius: 0;
	margin-bottom: 60px; 
}

.blog .post-content {
	font-family: var(--primary-font);
	font-size: 1em;
	font-weight: 400;
	color: var(--body-color);
	line-height: 1.6;
}

.blog .post .btn {
	border: 0;
}

.blog h1 i {
	display:inline;
	float: left;
	font-size: 42px;	
	margin: 2px 0 0 0;
	padding: 0;
}

.blog .oops {
	font-size: 1.4em;
	font-weight: 600;
	line-height: 1;
}

.blog .not-found {
	display: block;
	float: none;
	max-width: 300px;
	height: auto;
	margin: 0 auto;
	margin-top: 10px;	
	margin-bottom: -20px;
	padding: 0;
}

.blog .fa-arrow-left {
	display: block;
	float: left;
	font-size: 32px;
	margin: -30px 0 0 0;
	padding: 0;		
	z-index: 0;
}

/*--------------------------------------------------------------
	EMPRESA 
--------------------------------------------------------------*/
.avatar {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: white;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;	
	margin-bottom: -30px;
}

.avatar img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 7px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.empresa .subtitle {
	display: block;
	float: none;
	width: 100%;
	height: auto;
	font-family: var(--third-font);	 
	font-weight: 500;
	color: #293e6e;
	font-size: 1.8em;
	text-transform: none;
	border-bottom: 10px solid #d5dbe8;		
	border-radius: 10px;	
	margin-top: 40px;	
	margin-bottom: 30px;
	padding: 0 0 5px 0;
}

.empresa .destaque {
	display: block;
	float: none;	
	width: 85%;
	height: auto;	
	margin: 0 auto;
	margin-bottom: 60px;
	padding: 0 20px 0 20px;	
}

.empresa .destaque p {
	display: block;
	float: none;	
	width: 100%;
	height: auto;	
	font-family: var(--primary-font);		
	font-size: 1.1em;
	font-weight: 400;
	line-height: 1.6;
	text-align: center;
	margin: 0 auto;	
	margin-bottom: 15px;
}

.empresa .equipe p {
	width: 100%;
	height: auto;	
	font-family: var(--primary-font);		
	font-size: 1.1em;
	font-weight: 400;
	color: #000;
	line-height: 1.6;
	text-align: none;		
}

.empresa .equipe p.name {
	width: 100%;
	height: auto;
	background-color: #002366;
	font-family: var(--third-font);		
	font-size: 1.1em;
	font-weight: 400;
	color: white;
	line-height: 1;
	text-align: center;	
	margin-bottom: 35px;
	padding: 8px 5px;	
}

.empresa i {
	font-size: 24px;
	margin: 0 15px 0 15px;
}

/*--------------------------------------------------------------
	NEWS 
--------------------------------------------------------------*/
.box-noticia {
	width: 100%;
	height: auto;
	margin: 0 0 7px 0;
	padding: 0;
}

.box-noticia p {
	width: 100%;
	height: auto;
	margin: 0 0 3px 0;
	padding: 0;
}

.box-noticia p a {
	font-size: 1.1em;
}

.box-noticia .data-noticia {
	font-size: .85em;
	color: rgba(128, 128, 128, 1);
}

.box-noticia .linha-impar {
	background-color: #ffffff; /* Branco */
	padding: 7px 7px 7px 10px;
}

.box-noticia .linha-par {
	background-color: rgba(128, 128, 128, 0.1); /* Cinza claro */
	padding: 7px 7px 7px 10px;
}

.readme {
	display: block;
	float: none;
	background-color: #d5dbe8;	
	width: 100%;
	height: auto;
	border: 0px solid navy;
	margin: 15px 0 60px 0;
	padding: 7px;
}

.readme p {
	display: block;
	float: none;
	width: 98%;
	height: auto;
	font-size: 1.1em;
	text-align: right;
	margin: 0 10px 0 0;
	padding: 0;
}

.noticia {
	display: block;
	float: none;
	font-family: var(--primary-font);
	font-size: 1em;
	font-weight: 400;
	color: var(--body-color);
	line-height: 1.6;		
	margin-top: 20px;
	margin-bottom: -20px;	
}

.noticia .fa-caret-right i {
	display: inline;
	float: left;
	font-size: 48px;
	background-color: none;
	color: #ff0000;	
	margin: -40px -200px 0 0;
	padding: 0;
}

.box-widgets {
	margin-bottom: 40px;
}

/*--------------------------------------------------------------
	CONTACT SECTION
--------------------------------------------------------------*/
.contato .page-title {
	margin-bottom: 30px;
}	

.contato input {
	width: 100%;
	height: 60px;
	font-family: var(--primary-font);	
	border-radius: 10px;
	border: 2px solid #596c96;
	margin-bottom: 15px;
	padding: 10px 15px;
}

.contato textarea {
	width: 100%;
	height: 250px;
	font-family: var(--primary-font);	
	border-radius: 10px;	
	border: 2px solid #596c96;
	margin-bottom: 15px;
	padding: 10px 15px;
}

.contato input:valid, .contato textarea:valid { border-color: green; }
/*.contato input:invalid, .contato textarea:invalid { border-color: red; }*/

.contato-details {
  margin-bottom: 40px;
}

.contato-details h4 {
  border-bottom: 1px solid #222;
  font-size: 1.25em;
  font-weight: 600;
  color: #000;
  margin-bottom: 25px;
  padding: 20px 0 10px 0;
  text-transform: uppercase;
}

.contato-details p,
.contato-details p a {
	font-family: var(--primary-font);	
	font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 10px;
  padding: 0;
}

.contato-details h4 i,
.contato-details p i {
	display: inline;
	font-weight: 700;
	color: rgba(65, 105, 225, 1);
	margin-right: 10px;
}

.contato-details span {
  display: block;
  margin-left: 24px;
}

.contato .fa i {
	color: rgba(65, 105, 225, 1);
}

.contato #loading .fa-spinner ,
.contato #loading .fa-spin,
.contato #loading .icon-spinner { 
	color: #ff0000; 
}

.contato .box-aviso {
	display: block;
	float: none;
	background-color: #eee;
	width: 100%;
	height: auto;
	font-family: var(--primary-font);	
	font-size: 1em;
	font-weight: 600;
	color: #000;
	text-align: center;
	border: 3px solid #FF0000;
	margin: 30px 0 20px 0;
	padding: 30px;
}


/*--------------------------------------------------------------
	FOOTER
--------------------------------------------------------------*/
footer {
	display: block;
	float: none;
	background-color: var(--footer-bg);
	font-family: var(--primary-font);	
	font-weight: 300;
	color: rgba(255, 255, 255, 1);
	box-shadow: 0px -10px 5px -5px rgba(0, 0, 0, 0.2);		
	padding: 30px 0 20px;
	margin-top: 20px;
}

.top-footer {	
  position: relative;
	background-color: var(--footer-bg);
  padding: 20px;
}

footer p {
	font-weight: 400;
	color: rgba(255, 255, 255, 1);
}

footer p strong {
	font-weight: 600;
	color: rgba(255, 255, 255, 1);
}

footer a { color: rgba(255, 255, 255, 1); }
footer a:hover { color: orange; }

footer .logo img {
	display: block;
	float: none;
	max-width: 200px;
	height: auto;
	margin: 0 auto;
	margin-top: 10px;
	margin-bottom: -35px;
	padding: 0;
}

footer .logo img a:hover {
	transition: all 0.5s linear;
	filter: white(100%);
}

footer p .copyright {
	font-size: .85em;
	font-weight: 300;	
	color: #fff;
}

.back-top { float:right; position:fixed; bottom:10px; right:10px; padding:0; }
.back-top a { display:block; width:57px; height:57px; background:#777 url(../images/icons/up-arrow.png) no-repeat center center; cursor:pointer; -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px; -webkit-transition:1s; -moz-transition:1s; transition:1s; z-index:99999; }
.back-top a:hover { background-color:#990000; }

.whatsapp { float:right; position:fixed; bottom:20px; right:20px; padding:0; z-index:99999; }
.whatsapp a { display:block; width:60px; height:60px; cursor:pointer; -webkit-transition:1s; -moz-transition:1s; transition:1s; z-index:99999; }
.whatsapp a:hover { display:block; width:60px; height:60px; cursor:pointer; opacity: .9; -moz-opacity: .9; Filter: Alpha(Opacity=90); -webkit-transition:1s; -moz-transition:1s; transition:1s; }


/*--------------------------------------------------------------
	MEDIA QUERIES
--------------------------------------------------------------*/

/* Desktop */
@media (min-width: 1200px) {
	
	.container { max-width: 1140px; padding: 0 15px 0 15px;}
	.container-fluid { max-width: 1440px; padding: 0 30px 0 30px; }	
	header h1 { font-size: 3.5rem; }	
	
}


@media (max-width: 1200px) {
		
	.home-title h1 {
		margin-top: 20px;	
		margin-bottom: 20px;
	}
	
	.sec-padding { margin: 100px 0 0 0; padding: 0; }	
	
	.home .vantagens {
		margin-top: 40px;	
	}	
	
	.box-escritorio {
		margin-top: 0;	
	}		
	
}	

/* Mobile & Tablet */
@media (max-width: 991.98px) {
	
	.navbar-collapse {
		margin-top: 2rem;
		padding: 1rem;
		background: #fff;
		box-shadow: 0 4px 10px rgba(0,0,0,0.3);
		border-radius: 8px;
	}
					
	.img-center { display: block; margin: 0 auto; }
	.img-top { display: block; margin: 40px auto 0; }
	.img-bottom { display: block; margin: 0 auto 60px; }
	.img-vertical { display: block; margin: 0 auto; vertical-align: middle; }
	.img-border-radius { border-radius: 15px; }	
	
	.home-title-first h1 {
		margin-top: 0px;	;
	}	
	
	.home .vantagens-title h1 {
		margin-top: 50px;	
	}		
	
	.home .vantagens {
		margin-top: 10px;	
	}	
	
	.home .card-text {
		height: auto;
		padding: 15px;
	}	
			
}

@media (max-width: 768px) {
	
	header.hero-section { padding: 40px 0; }
	.navbar-brand { max-width: 70%; }
	
	.container { padding: 0 15px 0 15px; }
	.container-fluid { padding: 0 20px 0 20px; }		
	
	.banner img {
		max-width: 85%;
		padding: 30px 0 30px 0;
	}	
	
	.empresa .subtitle {
		margin-top: 40px;	
		margin-bottom: 20px;
	}
	
	.noticia .postimagem img { width: 75%; }	
	.noticia .box-texto {	width: 100%;	margin: 3.5em 0 0 0; padding: 0; }
		
}

@media (max-width: 575.98px) {
				
	h1 { font-size: 1.75rem; }  /* ~28px */
	header h1 { font-size: 1.65rem; }	
	
	.img-center { display: block; margin: 0 auto; }
	.img-top { display: block; margin: 20px auto 0; }
	.img-bottom { display: block; margin: 0 auto 20px; }
	.img-vertical { display: block; margin: 0 auto; vertical-align: middle; }	
		
	.sec-padding { margin: 40px 0 0 0; padding: 0; }	
	
	.pagina-erro,
	.page-title {	
		padding: 0;
	}
	
	.pagina-erro img {
		margin-top: -80px;		 
	}			
	
	.logo-home img {
		width: 300px;
		margin: 0 auto;
		margin-top: 0;
		margin-bottom: -50px;		
		padding: 0;
	}	
			
	.pagina-erro,
	.page-title {	
		margin-top: 40px;	
		margin-bottom: 20px;
		padding-top: 0;
	}
	
	.pagina-erro img {
		margin-top: -80px;
		margin-bottom: 0;		 
	}	
	
	.page-title h1 {
		margin-bottom: 30px;
	}		
	
	.page-title h1 .fa-caret-right {
		font-size: 30px;
	}	
	
	.page-title .circulo {
  	width: 60px;       /* Largura do elemento */
  	height: 60px;      /* Altura do elemento (igual à largura) */
  	/* Estilização da Borda */
  	border: 4px solid #50689e; /* Espessura, estilo e cor da borda */
		filter: drop-shadow(3px 4px 4px rgba(0, 0, 0, 0.3));
		margin-top: 0;			
  	margin-bottom: -5px;  
	}

	.page-title .circulo .fa-balance-scale {
		font-size: 30px;
		margin: 4px 0 0 1px;
	}	
	
	.static-page {
		margin:	0 0 40px 0;
	}	
	
	.blog .page-title {
		margin-bottom: 0;
	}	
	
	.blog h1 i {
		font-size: 38px;	
		margin: -2px 0 0 0;
	}		
	
	.blog .post .badge {
		display: block;
		float: none;
		margin-top: -10px;
	}	
	
	.contato .page-title {
		margin-bottom: 10px;
	}		
		
	.box .box-card {
		margin-bottom: 40px;
	}
		
	.empresa .subtitle {
		margin-top: 15px;	
		margin-bottom: 20px;
	}		
	
}
