/*--------------------------------------------------------------
# Configurações Gerais
--------------------------------------------------------------*/
:root {
--primary-color: #0d9488; /* Teal-600 */
--secondary-color: #57534e; /* Stone-600 */
--light-bg: #f5f5f4; /* Stone-100 */
--light-green-bg: #f0fdfa; /* Teal-50 */
--dark-bg: #292524; /* Stone-800 */
}

/*Corrige o problema de se criar uma coluna branca a direita da tela em dispositivos móveis */
html, body{
overflow-x: hidden;  
}



/*--------------------------------------------------------------
# Configurações Gerais
--------------------------------------------------------------*/
:root {
  --primary-color: #0d9488; /* Teal-600 */
  --secondary-color: #57534e; /* Stone-600 */
  --light-bg: #f5f5f4; /* Stone-100 */
  --light-green-bg: #f0fdfa; /* Teal-50 */
  --dark-bg: #292524; /* Stone-800 */
}

html {
	font-family: "Poppins", sans-serif;
	transition: font-size 0.2s;
}

body {
  color: var(--secondary-color);
  transition: background-color 0.3s, color 0.3s;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: #0f766e; /* Teal-700 */
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: #1c1917; /* Stone-900 */
}

.section-padding {
  padding: 80px 0;
}

.bg-light-green {
	background-color: var(--light-green-bg);
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-title.text-start h2::after {
	left: 0;
	transform: translateX(0);
}

.section-title p {
  margin-bottom: 0;
  color: var(--secondary-color);
}

.btn-cta {
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  padding: 10px 30px;
  transition: 0.3s;
  font-weight: 500;
  border: 2px solid var(--primary-color);
}

.btn-cta:hover {
  background: #0f766e;
  border-color: #0f766e;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}

#header .navbar-brand {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar .nav-link {
  color: var(--secondary-color);
  position: relative;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 15px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Seção Hero
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background: url('../images/background_hero.webp') top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  inset: 0;
}

#hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero p {
	color: rgba(255,255,255,0.9);
}

.btn-cta-hero {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--primary-color);
  background: #fff;
}

.btn-cta-hero:hover {
  background: var(--light-bg);
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Seção Sinais de Alerta
--------------------------------------------------------------*/
.sinais-card {
	background: #fff;
	padding: 25px;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0,0,0,0.05);
	height: 100%;
	border: 1px solid #eee;
	transition: all 0.3s ease-in-out;
}
.sinais-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}
.sinais-card i {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 15px;
}
.sinais-card h4 {
	font-size: 1.1rem;
	font-weight: 700;
}
.sinais-card p {
	font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Seção Sobre
--------------------------------------------------------------*/
#sobre .img-fluid {
	max-width: 350px;
	margin: 0 auto;
	display: block;
}

#sobre .certificate-link {
	font-weight: 500;
	text-decoration: underline;
}

/*--------------------------------------------------------------
# Seção Serviços
--------------------------------------------------------------*/
.service-card {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.service-card .icon-box {
  width: 72px;
  height: 72px;
  margin: 0 auto 25px auto;
  background: #ccfbf1; /* Teal-100 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .icon-box i {
  color: var(--primary-color);
  font-size: 28px;
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

/*--------------------------------------------------------------
# Seção Depoimentos
--------------------------------------------------------------*/
#depoimentos .depoimento-card {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0,0,0,0.05);
	border: 1px solid #eee;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#depoimentos .stars {
	color: #ffc107; /* Cor amarela para as estrelas */
}
#depoimentos .depoimento-card p.quote {
	font-style: italic;
	font-size: 1rem;
	flex-grow: 1; /* Faz a citação ocupar o espaço disponível */
}
#depoimentos .depoimento-card p.author {
	font-weight: 700;
	color: var(--secondary-color);
	margin-top: 20px;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Seção Contato
--------------------------------------------------------------*/
.contact-info .info-box {
	margin-bottom: 20px;
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	transition: all 0.3s;
	color: var(--secondary-color);
	display: flex;
	align-items: center;
}
.contact-info .info-box:hover {
	background: #f5f5f4; /* Stone-100 */
}

.contact-info .info-box i {
	font-size: 24px;
	color: var(--primary-color);
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-right: 20px;
	flex-shrink: 0;
}

.contact-info .info-box h4 {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}

.contact-info .info-box p {
	margin: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--dark-bg);
}

#footer h4 {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
}

#footer p {
	color: #a8a29e; /* Stone-400 */
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--primary-color);
  color: #fff;
}

#footer .copyright {
  margin-top: 15px;
  color: #a8a29e;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #78716c; /* Stone-500 */
}

#footer .credits a {
  color: #a8a29e;
  transition: 0.3s;
}
#footer .credits a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Acessibilidade
--------------------------------------------------------------*/
#accessibility-container {
	position: fixed;
	bottom: 9.8%;
	right: 20px;
	z-index: 1030;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

#accessibility-toggle-btn {
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-size: 24px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

#accessibility-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 10px;
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.3s ease;
}

#accessibility-options.show {
	transform: scaleY(1);
}

#accessibility-options .btn {
	background-color: white;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	width: 45px;
	height: 45px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* Botão Whatsapp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-float i {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    .whatsapp-float i {
        margin-top: 13px;
    }
}

/* Modo Alto Contraste */
body.high-contrast {
	background-color: #000 !important;
	color: #fff !important;
}

body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3,
body.high-contrast h4,
body.high-contrast h5,
body.high-contrast h6,
body.high-contrast p {
	color: #fff !important;
}

body.high-contrast .bg-light-green,
body.high-contrast .service-card,
body.high-contrast .sinais-card,
body.high-contrast .contact-info .info-box,
body.high-contrast #header,
body.high-contrast .depoimento-card {
	background-color: #111 !important;
	border: 1px solid #fff;
}

body.high-contrast a {
	color: #FFFF00 !important;
}

body.high-contrast .btn-cta,
body.high-contrast .btn-cta-hero {
	background: #FFFF00 !important;
	color: #000 !important;
	border-color: #FFFF00 !important;
}

body.high-contrast .navbar-toggler {
	border: 2px solid #FFFF00 !important;
}
body.high-contrast .navbar-toggler-icon {
	filter: invert(1) brightness(2);
}

/*--------------------------------------------------------------
# Responsividade
--------------------------------------------------------------*/
@media (max-width: 768px) {
	#hero h1 {
		font-size: 32px;
		line-height: 40px;
	}
}

@media (max-width: 992px) {
	.section-title.text-start {
		text-align: center !important;
	}
	.section-title.text-start h2::after {
		left: 50%;
		transform: translateX(-50%);
	}
}