*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "DM Sans";
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

html {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}
/*====  VARIABLES ============================ */
:root {
  --header-height: 4.5rem;

  /* colors */
  --hue: 32.52;
  /* HSL color mode */
  --base-color: hsl(30,22%,11%);
  --base-color-second: hsl(32.52, 89.92%, 53.33%);
  --base-color-alt: hsl(var(--hue) 57% 53%);
  --title-color: #ffffff;
  --title-color2:hsl(216, 28%, 17%);
  --text-color: hsl(0 0% 46%);
  --text-color-light: hsl(0 0% 98%);
  --body-color: hsl(216, 28%, 17%);

  /* fonts */
  --title-font-size: 1.875rem;
  --subtitle-font-size: 1rem;

  --title-font: 'Poppins', sans-serif;
  --body-font: 'DM Sans', sans-serif;
}
/*====  LAYOUT ============================ */
.container {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.section {
  padding: calc(5rem + var(--header-height)) 0;
}
.divider-1 {
  height: 1px;
  background: linear-gradient(
    270deg,
    hsla(var(--hue), 36%, 57%, 1),
    hsla(var(--hue), 65%, 88%, 0.34)
  );
}

.divider-2 {
  height: 1px;
  background: linear-gradient(
    270deg,
    hsla(var(--hue), 65%, 88%, 0.34),
    hsla(var(--hue), 36%, 57%, 1)
  );
}

/**Boot CSS**/

input[type=text],
input[type=button],
input[type=submit],
input[type=password],
textarea{
	/*-webkit-appearance: none;*/
	border-radius: 0;
}

html,body{
	height: 100%;
}

input{
	border:0;
}

img{
	width: 100%;
	max-width: 400px;
}

.text-center{
	text-align: center;
}

.center{
	max-width: 1280px;
	padding:0 2%;
	margin:0 auto;
}

.w33{
	width: 33.3%;
	padding: 0 10px;
}

.w50{
	padding:0 10px;
	width: 50%;
}

.left{
	float: left;
}

.right{
	float: right;
}

.clear{
	clear: both;
}



/**Estilização do site**/
/*====  LOGO ============================ */
.logo {
  font: 700 1.31rem var(--title-font);
  color: var(--title-color);
}

.logo span {
  color: var(--base-color-second);
}

.logo-alt span {
  color: var(--base-color-second);
}

.logo-center{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-container img{
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    transition: 750ms;
	z-index: 99;
}

.banner-container img:hover{
    transform: scale(1.05);
}
header{
	padding:15px 2%;
	background: var(--base-color);
}

.mobile{
	display: none;
}

nav.desktop ul{
	position: relative;
	top:6px;
	list-style-type: none;
}

nav.desktop li{
	font-weight: 300;
	font-size: 15px;
	padding:0 30px;
	text-transform: uppercase;
	display: inline-block;
}

nav.desktop a{
	color: white;
	text-decoration: none;
	transition: 0.5s;
}

nav.desktop a:hover{
	color: var(--base-color-second);
}

section.banner-container{
	width: 100%;
	height: 600px;
	position: relative;
}

.banner-single{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height:100%;
	opacity: 0;
	background-size: cover;
	background-position: center;
}

.overlay{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: rgba(0,0,0,0.3); 
}

section.banner-container form{
	width: 93%;
	max-width: 600px;
	z-index: 3;
	position: absolute;
	left: 50%;
	top:50%;
	transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
}

section.banner-container form h2{
	color: white;
	font-weight: 300;
	font-size: 30px;
	text-align: center;
}

section.banner-container form input[type=email]{
	width: 100%;
	height: 66px;
	margin-top:10px;
	background: white;
	color: #333;
	font-size: 22px;
	padding-left: 10px;
}

section.banner-container form input[type=submit]{
	width: 100%;
	height: 66px;
	margin-top:10px;
	background: #00C59E;
	color: white;
	cursor: pointer;
	font-size: 22px;
	border: 0;
}

section.descricao-autor{
	padding:40px 0;
}

section.descricao-autor h2{
	font-size: 28px;
	font-weight: 300;
	color: #444;
}

section.descricao-autor img{
	width: 60px;
	height:60px;
	display: inline-block;
	vertical-align: middle;
	border-radius: 50%;
}

section.descricao-autor p{
	font-size: 16px;
	color: #444;
	font-weight: 300;
	margin-top:10px;
}

section.especialidades{
	padding: 40px 0;
	background: #E2E2E2;
}

section.especialidades h2.title{
	font-size: 30px;
	text-align: center;
	font-weight: 400;
	color: #999;
}

.box-especialidade{
	margin:40px 0;
	padding: 0 30px;
	text-align: center;
}

.box-especialidade h3{
	color: #404580;
	font-size: 40px;
}

.box-especialidade h4{
	font-weight: 300;
	font-size: 25px;
	color: #BABABA;
}

.box-especialidade p{
	color: #444;
	font-size: 15px;
	margin-top: 10px;
}

section.extras{
	padding: 30px 0;
	background: #404580;
}

.servicos-container,.depoimentos-container{
	padding: 0 50px;
}

section.extras .title{
	color: white;
	font-weight: 300;
	font-size: 25px;
	margin-bottom: 15px;
}

.depoimento-single{
	padding:15px 0;
	border-bottom: 1px solid #5056A0;
}

p.depoimento-descricao{
	font-size: 15px;
	color: white;
	font-weight: 300;
}

p.nome-autor{
	font-size: 15px;
	color: white;
	margin-top:5px;
	font-weight:bold;
}

.servicos ul{
	margin:20px 0;
	
}

.servicos li{
	margin-bottom: 15px;
	font-size: 15px;
	color: white;
	font-weight: 300;
}

/*====  FOOTER ============================ */
footer {
  background: var(--base-color);
}

footer.section {
  padding: 4rem 0;
}

footer .logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

footer .brand p {
  color: var(--text-color-light);
  margin-bottom: 0.75rem;
}

footer .brand img {
 max-width: 150px;
 width: 100%;
 transition: 750ms;
}

footer .brand img:hover{
    transform: scale(1.05);
}

footer i {
  font-size: 1.5rem;
  color: var(--text-color-light);
}

footer .social {
  grid-auto-flow: column;
  width: fit-content;
}

footer .social a {
  margin-top: 1rem;
  transition: 0.3s;
  display: inline-block;
}

footer .social a:hover {
  transform: translateY(-8px);
}

.social .horario ul li {
  color: var(--text-color);
}

.social .horario h4,
.social .horario h3 {
  color: var(--text-color-light);
}
.links ul li i {
  font-size: 1.5rem;
  margin-right: 0.625rem;
}
.links ul li {
  display: flex;
  align-items: center;
}

.links ul li i {
  color: var(--text-color-light);
}

.links ul li a{
  color: var(--text-color);
  transition: .5s;
}

.links ul li a:hover{
  color: var(--base-color-second);
}


/*
Para arrumar scroll-x do IE e EDGE.
*/

body{
	overflow-x: hidden;
}

section.erro-404 h2{
	text-align: center;
	color: #444;
	font-weight: 400;
	font-size: 28px;
	border-top: 2px solid #444;
}

section.erro-404 p{
	margin-top:8px;
	text-align: center;
	font-size: 16px;
	color: #444;
	font-weight: 300;
}

section.erro-404 a{
	color: #444;
}

.wraper-404{
	transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	width: 100%;
	left: 50%;
	padding: 0 2%;
	max-width: 1280px;
	text-align: center;
	position: absolute;
	top: 50%;
}

#map{
	width: 100%;
	height: 400px;
}

.contato-container{
	padding:40px 0;
	text-align: center;
}

.contato-container input[type=text]{
	margin:8px 0;
	width: 100%;
	height: 40px;
	border:1px solid #ccc;
	padding-left: 8px;
	font-size: 16px;
	max-width: 800px;
	color: #444;
}

.contato-container textarea{
	padding: 8px;
	margin:8px 0;
	width: 100%;
	height: 120px;
	border:1px solid #ccc;
	padding-left: 8px;
	font-size: 16px;
	max-width: 800px;
	resize: vertical;
	color: #444;
}

.contato-container input[type=submit]{
	background: #00C59E;
	width: 140px;
	height: 40px;
	color: white;
	cursor: pointer;
}

.bullets{
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}

.bullets span{
	margin:0 10px;
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	cursor: pointer;
	background-color: #444;
}

.bullets span.active-slider{
	background: white;
}

/*Portal de notícias*/
.header-noticias{
	width: 100%;
	background: #333864;
	padding: 40px 0;
}

.header-noticias h2:nth-of-type(1){
	font-size: 41px;
}

.header-noticias h2{
	color: white;
	text-align: center;
	text-transform: uppercase;
	font-weight: normal;
}

.header-noticias h2 > b{
	color: #F40B5C;
}

section.container-portal{
	padding: 50px 0;
}

.sidebar{
	float: left;
	width: 30%;
}

.box-content-sidebar{
	width: 100%;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	margin-bottom: 50px;
	background: #DDDDDD;
	padding: 15px;
	color: #333864;
}

.box-content-sidebar h3{
	font-size: 18px;
	font-weight: normal;
}



.box-content-sidebar input[type=text]{
	width: 100%;
	height: 40px;
	border: 1px solid rgb(220,220,220);
	border-radius: 8px;
	padding-left: 8px;
	margin:10px 0;
}

.box-content-sidebar select{
	width: 100%;
	height: 40px;
	border: 1px solid rgb(220,220,220);
	border-radius: 8px;
	padding-left: 8px;
	margin:10px 0;
}

.box-content-sidebar input[type=submit]{
	cursor: pointer;
	background: var(--base-color-second);
	color: white;
	width: 115px;
	height: 35px;
	font-weight: bold;
	margin:10px 0;
	border: 0;
	border-radius: 8px;
}

.conteudo-portal{
	float: left;
	width: 70%;
	padding-left: 50px;
}

.box-single-conteudo{
	margin:15px 0;
	padding:15px 0;
	border-bottom: 1px solid #ccc;
}

.box-single-conteudo h2{
	color: #646464;
	font-weight: normal;
	font-size: 22px;
}

.box-single-conteudo p{
	color: #646464;
	font-weight: normal;
	font-size: 15px;
	margin-top: 4px;
}

.card {
	display: grid;
	grid-template-columns: 1fr 2fr;
	margin-top: 1.5rem;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.card a{
	background: var(--base-color-second);
	display: inline-block;
	width: 100px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	padding: 0 3px;
	font-size: 15px;
	text-decoration: none;
	color: white;
	border-radius: 5px;
}
.card h3 {
    margin: 15px 0;
    font-size: 1.5em;
}

.card p {
    padding: 0 10px 20px;
    color: #666;
}

.card:hover img {
    transform: scale(1.05);
}
/*paginação*/
.paginator{
	text-align: center;
}

.paginator a{
	margin: 0 10px;
	display: inline-block;
	text-decoration: none;
	padding: 6px 4px;
	border: 1px solid rgb(220,220,220);
	color: rgb(100,100,100);
}

.paginator a.active-page{
	background: rgb(220,220,220);
}

/*Noticia single estilo*/

section.noticia-single{
	padding: 40px 0;
	color: #646464;
}

section.noticia-single header{
	background-color: transparent;
}
section.noticia-single a{
	background: var(--base-color-second);
	display: inline-block;
	width: 100px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	padding: 0 3px;
	font-size: 15px;
	text-decoration: none;
	color: white;
	border-radius: 5px;
}

section.noticia-single h1{
	font-size: 30px;
	border-bottom: 2px solid #646464;
}

section.noticia-single article{
	margin-top:15px;
}

section.noticia-single h3,
section.noticia-single h2{
	margin:10px 0;
}

section.noticia-single p{
	margin:10px 0;
}

section.noticia-single ul{
	margin:10px 0;
	list-style-position: inside;
}

section.noticia-single img{
	display: block;
	margin:0 auto;
	width: 100%;
	max-width: 500px;
	border-radius: 20px;
}
/*========= MEDIA QUERIES =========*/
/* extra large devices: 1200 > */
@media (min-width: 1200px) {
  /* reusable classes */
  .container {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 10rem 0;
  }

  .section header,
  #testimonials header {
    max-width: 32rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .button {
    height: 3.125rem;
  }

  /* navigation */
  nav .menu {
    opacity: 1;
    visibility: visible;
    top: 0;
  }

  nav .menu ul {
    display: flex;
    gap: 2rem;
  }

  nav .menu ul li a.title {
    font: 400 1rem var(--body-font);
    -webkit-font-smoothing: antialiased;
  }

  nav .menu ul li a.title.active {
    font-weight: bold;
    -webkit-font-smoothing: auto;
  }

  nav .icon-menu {
    display: none;
  }

  /* layout */
  main {
    margin-top: var(--header-height);
  }

  /* footer */
  footer.section {
    padding: 3.75rem 0;
  }

  footer .container {
    grid-auto-flow: column;
    align-items: center;
    justify-content: space-between;
  }

  footer .logo {
    font-size: 2.25rem;
  }
}
/* large devices: 1023 > */
/* large devices: 992 > */
@media (min-width: 992px) {
  :root {
    --title-font-size: 2.25rem;
    --subtitle-font-size: 1.125rem;
  }
}
@media(max-width:500px){
  footer .brand img {
    max-width: 100px;
   }
}


@media screen and (max-width: 768px){

	.conteudo-portal{
		width: 100%;
		padding-left: 0;
	}

	.sidebar{
		width: 100%;
		text-align: center;
	}

	img{
		float: none !important;
		display: block;
		margin:0 auto;
	}

	.w50{
		padding:20px;
		width: 100%;
	}

	.w33{
		width: 100%;
		padding: 20px;
	}
	
	.box-especialidade{
		padding:40px 20px;
		margin: 0;
	}

		nav.desktop{
		display: none;
	}

	nav.mobile{
		display: block;
	}

	.botao-menu-mobile{
		font-size: 24px;
		cursor: pointer;
		color: white;
	}

	nav.mobile ul{
		top:55px;
		z-index: 3;
		position: absolute;
		left: 0;
		width: 100%;
		display: none;
		text-align: center;
	}

	nav.mobile li{
		font-weight: 300;
		width: 100%;
		display: block;
		background: white;
		border-bottom:1px solid #ccc;
		font-size: 17px;
		padding:8px 0;
	}
	nav.mobile li a{
		display: block;
		color: #444;
		text-decoration: none;
	}
}
