

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* GERAL */
* {
	padding: 0;
	margin-bottom: 0;
	box-sizing: border-box;	
	font-family: "Inter", sans-serif;
	scroll-behavior: smooth;
}

html {
  font-size: var(--base-font-size);
  transition: font-size 0.3s ease;
}

:root {
  --verde-principal: #008C31;
  --verde-claro: #86C400;
  --amadeirado: #5C4234;
  --base-font-size: 1rem;
}

.grayscale {
  filter: grayscale(1);
}


.invert-colors {
  filter: invert(1);
}


.highlight-links a,
.highlight-links button,
.highlight-links [role="button"] {
  background-color: yellow;
  color: black !important;
  text-decoration: underline !important;
  font-weight: bold;
}

/* Container flutuante no topo direito */
.acessibilidade-container {
  position: fixed;
  top: 90px; /* ajuste conforme altura da header */
  right: 20px;
  z-index: 99999;
  font-family: sans-serif;
}

/* Botão principal */
.acessibilidade-btn {
  background-image: linear-gradient(45deg, #86C400, #008C31);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: background 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.acessibilidade-btn:hover {
  background-color: #005f85;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 110%; /* abaixo do botão */
  right: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 8px;
  overflow: hidden;
  flex-direction: column;
}

/* Botões dentro do dropdown */
.dropdown-content button {
  background: none;
  border: none;
  text-align: left;
  padding: 0.6rem 1rem;
  cursor: pointer;
  width: 100%;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.dropdown-content button:hover {
  background-color: #f0f0f0;
}

/* Mostrar dropdown ativo */
.dropdown-content.show {
  display: flex;
}

body {
	margin: 0;
	padding: 0;	
	font-size: 1em;
	font-weight: 400;
}

h1 {
	font-size: 4.5em;
	letter-spacing: -0.9px;
}

h2 {
	font-size: 3.375em;
	letter-spacing: -0.8px;
}

h3 {
	font-size: 2.45em
	letter-spacing: -0.5px;
}

h4 {
	font-size: 2.25em;
	letter-spacing: -0.2px;
}

h5 {
	font-size: 1.75em;
}

h6 {
	font-size: 1.25em;
	font-weight:bold;
}

p {
	font-size: 1.125em;
	letter-spacing: 0px;
}

input:focus, select:focus, textarea:focus, button:focus {
    box-shadow: 0 0 0 0;
    outline: 0;

}

.links-hover {
	transition: 0.3s;

}

.links-hover:hover {
	opacity: 0.7;
}

.vinheta-interna {
	/*background-image: linear-gradient(to bottom, #86C400; #fff);*/
	padding: 15px 0px;
	z-index: 9;
}

.vinheta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  text-align: center;
}

.vinheta-container h2 {
  font-size: 1.5rem;
  letter-spacing: -0.2px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
  text-transform: uppercase;
}

.linha {
  flex-grow: 1;
  height: 1px;
  background-color: #003569;
  min-width: 40px;
  max-width: 200px;
}

.vinheta-texto {
	margin-top: -15px;
	padding-bottom: 20px;

}

.btn-default-1 {
	border: 2px solid #003569;
	border-radius: 40px;
	background-color: #003569;
	padding: 4px 25px;
	text-align: center;
	color: #171111;
	font-size: 1em;
	font-weight: 700;
	margin-right: 0px;
	transition: 0.3s;
}


.btn-default-1:hover {
	border: 2px solid #fff;
	background-color: #fff;
	color: #171111;
	text-decoration: none;
}

.thumbnail {
	border-radius: 10px;
	width:100%;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
}

.versao-desktop {
	display: block;
}

.versao-mobile {
	display: none;
}



.header {
	transition: 0.4s;
	background-color: #fff;
	padding: 12px 0px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.18);
	z-index: 999;
}

.header-fixo {

}

.header-desktop {
	display: block;
}

.header-tablet {
	display: none;
}

.header-mobile {
	display: none;
}

.header-desktop-logo {	
	height: 50px;	
}

.header-btn-zap {
	border: 2px solid #00c94b;
	border-radius: 5px;
	background-color: #00c94b;
	padding: 4px 12px;
	text-align: center;
	color: #fff;
	font-size: 0.72em;
	font-weight: 700;
	margin-left: 25px;
	margin-right: 0px;
	transition: 0.3s;
	margin-top: 2px;
}


.header-btn-zap:hover {
	border: 2px solid #00c94b;
	background-color: #fff;
	color: #00c94b;
	text-decoration: none;
}

.header-btn-resultado {
	border: 2px solid #0080bc;
	border-radius: 5px;
	background-color: #0080bc;
	padding: 4px 12px;
	text-align: center;
	color: #fff;
	font-size: 0.72em;
	font-weight: 700;
	margin-left: 25px;
	margin-right: 0px;
	transition: 0.3s;
	margin-top: 2px;
}


.header-btn-resultado:hover {
	border: 2px solid #0080bc;
	background-color: #fff;
	color: #0080bc;
	text-decoration: none;
}

.header-icons-social i {
	color: #b40606;
	font-size: 1;.25em;
	transition: 0.3s;
	margin-left: 12px;
}

.header-icons-social i:hover {
	color: #033141;
}

/* HERO BANNER */
#hero-banner {
  position: relative;
  width: 100%;
  height: 80vh; /* Pode trocar para 90vh se quiser */
  overflow: hidden;
  z-index: 1 !important;
}

/* Slides */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center bottom;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

/* Overlay para melhorar leitura do texto */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* leve e clean */
  z-index: 1;
}

/* Texto */
.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-top: 10px;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 768px) {
  #hero-banner {
    height: 65vh;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-text {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: .95rem;
  }
}


/* SECTION ATALHOS SOBRE O BANNER */
.atalhos-section {
  position: relative;
  margin-top: -170px; /* SOBREPÕE O BANNER */
  z-index: 99 !important;
  padding-top: 120px; /* Ajuste para não cortar no topo */
  padding-bottom: 20px;
  background-image: linear-gradient(to bottom, transparent, #86C400);
}

/* CARDS */
.atalho-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}

.atalho-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ÍCONES */
.atalho-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  opacity: 0.5;
}

/* Textos */
.atalho-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #008C31; /* verde terroso suave */
}

.atalho-text {
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
  line-height: 1.5;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .atalhos-section {
    margin-top: -80px;
    padding-top: 110px;
  }
}


.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #008C31;
}

.section-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* CARDS GERAIS */
.card-service, .testimonial-card, .incluso-box {
  background: #fff;
  border-radius: 1em
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}

.card-service:hover,
.testimonial-card:hover,
.incluso-box:hover {
  transform: translateY(-6px);
}

/* Ícones */
.icon-service, 
.incluso-icon,
.quando-list img {
  width: 55px;
  margin-bottom: 10px;
}

.quando-list img {
  margin-right: 12px;
}

/* Listas */
.quando-list li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
}

.quando-list {
  padding-left: 0;
}

/* CTA */
.cta-section {
  background: #e8f3ec;
  border-radius: 0;
}

.cta-title {
  color: #2f4e36;
  font-size: 2rem;
  font-weight: 700;
}

.cta-text {
  font-size: 1.15rem;
  color: #444;
  margin-top: 10px;
}



/* SECTION ESPECIALIDADES */
#especialidades {
  background: var(--verde-claro); /* #86C400 */
}

#especialidades .section-title {
  color: var(--amadeirado);
  font-weight: 700;
  font-size: 32px;
}

#especialidades .section-subtitle {
  color: #fff;
  font-size: 18px;
}

/* CARD */
.card-especialidade {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: 0.3s ease;
}

.card-especialidade:hover {
  transform: translateY(-5px);
}

/* IMG DO CARD */
.card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  width: 100%;
}

/* BODY DO CARD */
.card-body {
  padding: 20px;
}

.card-title {
  color: var(--verde-principal);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
}

.card-text {
  color: #444;
  font-size: 15px;
  margin-bottom: 15px;
}

/* BOTÃO */
.btn-saiba {
  background: var(--verde-principal);
  color: #fff;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-saiba:hover {
  background: #006f26;
}

/* MOBILE */
@media (max-width: 768px) {

  #especialidades .section-title {
    font-size: 26px;
  }

  #especialidades .section-subtitle {
    font-size: 15px;
  }

  .card-img {
    height: 150px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-text {
    font-size: 14px;
  }
}







.slick-prev:before,
.slick-next:before {
  color: #90969b !important;
  font-size: 30px;
}



#incluso {
  background: #ffffff;
}

#incluso .section-title {
  color: var(--amadeirado);
  font-weight: bold;
  font-size: 32px;
}

/* CARD */
.incluso-card {
  background: #fff;
  border-radius: 14px;
  border: 2px solid var(--verde-principal);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ícone */
.incluso-card .incluso-icon {
  width: 60px;
  height: auto;
  opacity: 0.65;
}

/* Texto do card */
.incluso-card .incluso-text {
  color: #444;
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
}

/* Hover */
.incluso-card:hover {
  background: var(--verde-claro);
  border-color: var(--verde-claro);
  transform: translateY(-5px);
}

.incluso-card:hover .incluso-text {
  color: #fff;
}

.incluso-card:hover .incluso-icon {
  filter: brightness(0) invert(1);
}

/* MOBILE */
@media (max-width: 768px) {
  #incluso .section-title {
    font-size: 24px;
  }

  .incluso-card {
    padding: 25px !important;
  }

  .incluso-card .incluso-icon {
    width: 45px;
  }

  .incluso-card .incluso-text {
    font-size: 15px;
  }
}


/* ----------------------------------
   SECTION QUANDO PROCURAR (CARDS)
---------------------------------- */

/* Fundo em degradê verde */
#quando-procurar {
  background: linear-gradient(135deg, #008C31 0%, #86C400 100%);
  padding-top: 70px;
  padding-bottom: 70px;
}

#quando-procurar .section-title {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 40px;
}

/* CARD */
.qp-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: 0.3s;
  height: 100%;
}

.qp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

/* Ícone */
.qp-icon {
  font-size: 42px;
  color: var(--verde-principal);
  margin-bottom: 12px;
}

/* Texto */
.qp-text {
  font-size: 17px;
  font-weight: 500;
  color: #444;
  line-height: 1.4;
}

/* MOBILE */
@media (max-width: 768px) {

  #quando-procurar .section-title {
    font-size: 24px;
  }

  .qp-card {
    padding: 15px !important;
  }

  .qp-text {
    font-size: 15px;
  }

  .qp-icon {
    font-size: 34px;
  }
}



/* NOTICIAS */

.noticias {
	padding: 40px 0px;
	background-color: #e5e6f2;
}

.noticias h2 {
	color: #008C31;
}

.noticias h6 {
	color: #464c51;
	font-weight: 300;
}

.noticias p {
	font-size: 1em;
	color: #171111;
	letter-spacing: -0.3px;
}

.noticia-item {
	padding: 0px 0px 0px 0px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
	margin: 20px 0px;
	height: 350px;
	background-color: #fff;
}

.noticia-item-content {
	padding: 15px 12px 15px 12px;
	background-color: #fff;
}

.noticia-item-content h6 {
	font-size: 18px;
	font-weight: 600;
	color: #06404c;
	line-height: 22px;
	letter-spacing: -.5px;
	text-transform: none;
}

.noticia-item-content p {
	font-size: 13px;
	font-weight: 400;
	color: #666;
}

.noticia-item-content button {
	background-color: #fff;
	padding: 4px 12px;
	color: #555;
	text-align: center;
	transition: 0.3s;
	font-weight: 600;
	font-size: 11px;
	margin-top: 5px;
	border:1px solid #555;
	border-radius: 35px;
}

.noticia-item-content button:hover {
	text-decoration: none;
	background-color: #555;
	color: #fff;
}

.noticia-item-content-img {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 180px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background-color: #666;
}



/* Responsividade */
@media (max-width: 992px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .testimonials-grid { grid-template-columns: 1fr; } }


/* INSTAGRAM */

.instagram{
	padding: 40px 0px 0px 0px;
	background-color: #f9f9f9;
}

.instagram h3 {
	font-family: "Inter", sans-serif;
	color: #464c51;
	font-weight: 700;
	letter-spacing: -0.8px;
}

.instagram h6 {
	font-family: "Inter", sans-serif;
	color: #171111;
	font-weight: 300;
	letter-spacing: -0.1px;
}

.instagram p {
	font-size: 1.3em;
	color: #464c51;
	letter-spacing: -0.3px;
}

/* CONTATO */
.contato {
  background: #fff; /* leve contraste no fundo */
  padding: 40px 0px;
}

.contato h2 {
	color: #008C31;
	font-weight: 700;
}

.contato h5 {
  font-size: 1.2rem;
  color: #86C400;
  font-weight: bold;
}

.contato h6 {
  font-size: 1rem;
  font-weight: bold;
  color: #666;
  margin-top: -15px
}

.contato p {
 font-size: 0.8em;
 color: #666;
 font-weight: 300;
  margin-top: -12px

}

.contato-icon i {
	font-size: 1.8em;
	color: #86C400;
	margin-bottom: 10px;
}

.contato .btn {
  background: #008C31;
  border: 1px solid #008C31;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  border-radius: 8px;
}

.contato .btn:hover {
  background: #86C400;
  border: 1px solid #86C400;
  color: #fff;
}

/* FOOTER */

footer {
	background-color: #008C31;
	/*background-image: linear-gradient(to top, #000, #430000);*/
	color: #fff;
	font-size: 	0.85em;
	padding: 45px 0px 45px 0px;
	border-top: none;
	margin-top: 0px;
	width: 100%;
}

footer h6 {
	font-family: "Inter", sans-serif;
	font-size: 1.5em;
	color:#86C400;
}

footer i {
	margin-bottom: 10px;
	color:#86C400;
}


footer p {
	color: #fff;
	font-size: 0.87em;
	margin-bottom: 10px;
}

.footer-link-menu {
	border-bottom: 1px solid #86C400;
	width: 100%;
	padding: 5px 0px;
}

.footer-link-menu a {
	color: #fff;
	font-size: 0.85em;
	font-weight: 500;
	text-decoration: none;
	transition: 0.3s;
	text-decoration: none;
}

.footer-link-menu a i {
	color: #86C400;
}

.footer-link-menu:hover {
	text-decoration: none;
	opacity: 0.75;
}

footer ul {
	margin-left: -30px;
}

footer ul li {
	list-style: none;
}


footer ul li {
	color: #fff;
	font-size: 0.9375em;
	font-weight: 500;
	line-height: 22px;
}

footer ul li a {
	color: #fff;
	font-size: 0.9375em;
	font-weight: 500;
	line-height: 22px;
	text-decoration: none;
	border-bottom: 1px solid #fff;
	width: 100%;
}


footer ul li a:hover {
	text-decoration: none;	
	opacity: 0.5;
}

.footer-btn-zap {
	border: 1px solid #86C400;
	border-radius: 5px;
	background-color: #86C400;
	padding: 6px 10px;
	text-align: center;
	color: #fff;
	font-size: 0.9375em;
	font-weight: 700;
	transition: 0.3s;
}

.footer-btn-zap:hover {
	border: 1px solid #fff;
	background-color: #fff;
	color: #86C400;
	text-decoration: none;
}

footer .qr-code {
	width: 100px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
	margin: 10px 0px;
	

}

.logo-footer {
	width: 240px;
}

.footer-align-left {
	text-align: left;
}

.footer-align-right {
	text-align: right;
}

.footer-align-logo {
	text-align: right;
}


.footer-icon {
	background-color: #bd9a40;
	color: #2f2b24;
	font-size: 1.6em;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	margin-right: 15px;
	margin-bottom: 50px;
	text-align: center;
	padding-top: 1px;
	float: left;

}



@media screen and (max-width: 1080px) {

	.header-desktop {
		display: none;
	}

	.header-tablet {
		display: block;
		padding: 10px 0px;
		background-color: #fff;
		box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
	}

	.header-tablet-logo {
		width: 150px;
	}
	
	

}





@media screen and (max-width: 992px) {

	h1 {
		font-family: "Inter", sans-serif;
		font-size: 50px;
		letter-spacing: -1.1px;
		font-weight: 900;
	}

	h2 {
		font-family: "Inter", sans-serif;
		font-size: 42px;
		letter-spacing: -0.7px;
		font-weight: 900;
	}

	h3 {
		font-family: "Inter", sans-serif;
		font-size: 36px;
		letter-spacing: -0.5px;
	}

	h4 {
		font-family: "Inter", sans-serif;
		font-size: 32px;
		letter-spacing: -0.4px;
	}

	h5 {
		font-family: "Inter", sans-serif;
		font-size: 28px;
		letter-spacing: -0.3px;
	}

	h6 {
		font-family: "Inter", sans-serif;
		font-size: 20px;
		line-height: 24px
		font-weight:bold;
	}

	p {
		font-family: "Inter", sans-serif;
		font-size: 14px;
		letter-spacing: 0px;
	}

	.section-padding {
		padding: 45px 20px;
	}

	.section-internas {
		padding: 45px 20px;
	}

	.section-internas h3 {
		text-align: center;
		font-size: 28px;
	}

	.section-internas p {
		font-size: 14px;
	}



	/* HEADER */

	.header-desktop {
		display: none;
	}

	.header-mobile {
		display: block;
	}


	.sidenav {
		height: 100%;
		width: 0;
		position: fixed;
		z-index: 1;
		top: 0;
		right: 0;		
		background-image: linear-gradient(45deg, #00541d, #008f32);
		overflow-x: hidden;
		transition: 0.3s;
		padding-top: 70px;
		z-index: 999;
		box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.15);
	}

	.sidenav .menuMobile {
		padding-left: 32px;
	}


	.sidenav .menuMobile nav ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.sidenav .menuMobile nav ul li {
		padding: 0;
	}

	.sidenav .menuMobile a {
		padding: 5px 0px;
		text-decoration: none;
		font-size: 1rem;
		color: #fff;
		display: block;
		transition: 0.3s;
		font-weight: 700;
	}

	.sidenav .menuMobile a:hover {
		color: #fff;
		text-decoration: none;
	}

	.sidenav .redes-sociais a {
		text-decoration: none;
		font-size: 1.2rem;
		color: #fff;
		margin-right: 20px;
		transition: 0.3s;
		display: inline;
	}

	.sidenav .redes-sociais a:hover {
		color: #171111;
		text-decoration: none;
	}

	.sidenav .closebtn a {
		margin-top: 10px;
		position: absolute;
		top: 0;
		left: 0px;
		font-size: 1.8rem;
		margin-left: 30px;
		color: #fff;
		transition: 0.3s;
		text-decoration: none;
	}

	.sidenav .closebtn a:hover {		
		color: #fff;
		text-decoration: none;
		opacity: 0.75;
	}

	.open-menu-btn {
		border: none;
		background-color: transparent;
		color: #666;
		font-size: 28px;
		margin-right: 5px;
		margin-top: -12px;
	}

	.header-mobile-logo {
		width: 275px;
		padding-top: 5px;
	}

	.header-btn-zap {
		width: 90%;
		font-size: 14px;
		font-weight: 600;
		margin-left: 0px;
		margin-right: 10px;
	}


	.footer-align {
		text-align: center;
	}

	.footer-align-logo {
		text-align: center;
		margin-top: 50px;
	}

}


@media screen and (max-width: 768px) {

	.versao-desktop {
		display: none;
	}

	.versao-mobile {
		display: block;
	}


	.section-padding {
		padding: 40px 20px;
	}

	.section-padding h2 {
		font-size: 32px;
		letter-spacing: -1.5px;
	}

	.section-padding h6 {
		font-size: 18px;
	}


	.header-desktop {
		display: none;
	}

	/* FOOTER */

	footer {
		padding: 50px 20px;
	}

	footer p {
		font-size: 0.75em;
	}

	.footer-align-left {
		text-align: center;
	}

	.footer-align-right {
		text-align: center;
	}

	.footer-link-menu {
		padding: 8px 0px;
	}

}

@media screen and (max-width: 575px) {

	h1 {
		font-size: 42px;
		letter-spacing: -0.9px;
	}

	h2 {
		font-size: 36px;
		letter-spacing: -0.5px;
	}

	h3 {
		font-size: 28px;
		letter-spacing: -0.5px;
	}

	h4 {
		font-size: 24px;
		letter-spacing: -0.4px;
	}

	h5 {
		font-size: 20px;
		letter-spacing: -0.3px;
	}

	h6 {
		font-size: 18px;
	}

	p {
		font-size: 13px;
	}

	.acessibilidade-container {
	  position: fixed;
	  top: 60px; /* ajuste conforme altura da header */
	  right: 20px;
	}

	/* Botão principal */
	.acessibilidade-btn {
	  color: #fff;
	  border: solid 1px #fff;
	  border-radius: 6px;
	  padding: 0.2rem 0.6rem;
	  cursor: pointer;
	  font-size: 1.3rem;
	  display: flex;
	  align-items: center;
	  gap: 0.3rem;
	  transition: background 0.3s;
	}

	.acessibilidade-btn:hover {
	  background-color: #005f85;
	}

	/* Dropdown */
	.dropdown-content {
	  display: none;
	  position: absolute;
	  top: 110%; /* abaixo do botão */
	  right: 0;
	  background-color: #fff;
	  min-width: 200px;
	  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	  border-radius: 8px;
	  overflow: hidden;
	  flex-direction: column;
	}

	/* Botões dentro do dropdown */
	.dropdown-content button {
	  background: none;
	  border: 1.5px solid #fff;
	  text-align: left;
	  padding: 0.3rem 0.6rem;
	  cursor: pointer;
	  width: 100%;
	  font-size: 0.75rem;
	  display: flex;
	  align-items: center;
	  gap: 0.5rem;
	  transition: background 0.2s;
	}

	.dropdown-content button:hover {
	  background-color: #f0f0f0;
	}

	/* Mostrar dropdown ativo */
	.dropdown-content.show {
	  display: flex;
	}

	.vinheta-container {
	  gap: 2rem;
	  margin: 1rem 0;
	}

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

	.linha {
	  flex-grow: 1;
	  height: 1px;
	  background-color: #003569;
	  min-width: 30px;
	}

	.vinheta-texto p {
		font-size: 1em;

	}

	.vinheta-texto {
		margin-top: -10px;
		padding-bottom: 0px;
		padding-left: 10px;
		padding-right: 10px;

	}

	.section-padding {
		padding: 30px 0px;
	}

	.section-padding h3 {
		font-size: 28px;
	}

	.convenios-item-logo {
		border-radius: 15px;
		margin: 10px 10px;
		box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.10);
	}

	.section-padding p {
		font-size: 14px;
		font-weight: 400;
		color: #444;
		letter-spacing: -0.3px;
	}

	.header {
		padding: 10px 0px 10px 0px;
	}

	.header-mobile-logo {
		width: 150px;
	}
	
	/* BANNER */

	.banner-home {
		display: none;
	}

	.banner-home-mobile {
		display: block;
		background-color: #f1f1f1;
		background-image: url(https://drgustavofaria.com.br/wp-content/uploads/2025/09/banner-home-mobile.webp);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		width: 100%;
		height: 420px;
		position: relative;
		z-index: 1;
		padding: 165px 0px 0px 0px;
	}

	
	.banner-content-mobile {
		position: relative;
		width: 100%;
		height: 100%;
	}

	.banner-content-mobile h3 {
		font-family: "Inter", sans-serif;
		font-size: 1.8em;
		font-weight: 800;
		color: #fff;
		letter-spacing: -1px;
	}

	.banner-content-mobile h6 {
		font-family: "Inter", sans-serif;
		font-size: 0.9em;
		font-weight: 700;
		color:#0092d7;
		letter-spacing: -0.4px;
	}

	.banner-content-mobile p {
		font-family: "Inter", sans-serif;
		font-size: 0.65em;
		color: #fff;
		font-weight: 500;
		letter-spacing: -0.2px;
	}

	.banner-btn-mobile {
		padding: 4px 12px;
		border-radius: 40px;
		color: #DEC670;
		background-color: #171111;
		border: none;
		font-size: 0.700em;
		font-weight: bold;
		transition: 0.3s;
		text-decoration: none;
		text-align: center;
		text-transform: uppercase;
		box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
		margin-left: 5px;
	}

	.banner-btn-mobile:hover {
		text-decoration: none;
		color: #171111;
		background-color: #DEC670;
	}


	.acesso-rapido {
		padding: 30px 0px;
	}

	.acesso-rapido-item {
		padding: 12px 12px;
		background-color: #fff;
		box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.04);
		border-radius: 8px;
		margin-bottom: 30px;
	}

	.acesso-rapido-item h5 {
		font-size: 1em;
	}

	.acesso-rapido-item p {
		font-size: 0.60em;
		margin-top: -5px;
	}

	.acesso-rapido-item a button {
		font-size: 0.6em;
		margin-top: -10px;
	}

	

	.acesso-rapido-item-icon {
	  width: 70px;              /* tamanho do círculo (ajuste conforme necessário) */
	  height: 70px;
	  border: 1px solid #24a3bf; /* borda azul */
	  border-radius: 50%;        /* deixa redondo */
	  background: #fff;          /* fundo branco */
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  margin: 0 auto;            /* centraliza horizontalmente se for em grid */
	}

	.acesso-rapido-item-icon i {
	  color: #24a3bf;   /* cor do ícone */
	  font-size: 1.5em;   /* tamanho do ícone (ajuste se quiser maior/menor) */
	}

	/* DEPOIMENTOS */

	.depoimentos{
		padding: 30px 0px 30px 0px;
	}

	.depoimentos h3 {
		letter-spacing: -1.2px;
	}

	.depoimentos h6 {
		font-family: "Inter", sans-serif;
		color: #171111;
		font-weight: 300;
		letter-spacing: -0.5px;
	}

	/* Card */
	.testimonial-card {
	  display: flex;
	  flex-direction: column;
	  justify-content: space-between; /* empurra autor pro rodapé */
	  height: 100%; /* garante altura igual dentro do grid */
	  background: #fff;
	  border: 1px solid #e0e0e0;
	  border-radius: 12px;
	  padding: 1.5rem;
	  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
	  transition: all 0.3s ease;
	  margin-bottom: 25px;
	  margin-left: 10px;
	  margin-right: 10px;
	}

	/* INSTAGRAM */

	.instagram{
		padding: 20px 0px 0px 0px;
		margin-top: -30px;
	}

	.instagram h3 {
		font-size: 1.0em;
		letter-spacing: -1.1px;
	}	

	/* CONTATO */

	.contato {
		padding: 30px 0px 20px 0px;
	}
	
	/* FOOTER */

	footer {
		/*background-color: #92b014;*/
		/*background-color: #033141;*/
		font-size: 14px;
		padding: 25px 0px 30px 0px;
		text-align: center;
	}

	footer h6 {
		font-size: 1em;
		color: #fff;
		margin-top: 10px;
	}

	footer i {
		margin-bottom: 10px;
	}


	footer p {
		color: #fff;
		font-size: 0.75em
		margin-bottom: 5px;
	}

	
	.footer-btn-zap {
		padding: 10px 20px;
		font-size: 18px;
		margin-bottom: 15px;
	}

	footer .qr-code {
		width: 100px;
		box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
		margin: 10px 0px;
	}

	.logo-footer {
		width: 250px;
	}	
	

}

@media screen and (max-width: 420px) {


	

	

}

