/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*=============== FONTES PERSONALIZADAS ===============*/
@import url('https://db.onlinewebfonts.com/c/ea250342ec4016561ba9e791c2f39c11?family=Posterama+2001+W04+Regular');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);

  /*========== Font and typography ==========*/
  --body-font: "Montserrat", sans-serif;
  --title-font: 'Posterama 2001 W04 Regular', sans-serif;
  --caption-font: 'Room Bold', sans-serif;
  --biggest-font-size: 2rem;
  --big-font-size: 1.5rem;
  --h3-font-size: 1rem;
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-minimal: 100;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --normal-font-size: 1rem;
    --biggest-font-size: 4rem;
    --big-font-size: 3rem;
    --h3-font-size: 1.25rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--white-color);
  position: relative;
  background: white;
  overflow-x: hidden;
}

.finisher-header {
  width: 100%;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  z-index: var(--z-fixed);
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo-img {
  width: 150px;
  height: auto;
  display: block;
}

.nav__close, 
.nav__toggle {
  display: flex;
  color: #0E6A86;
  font-size: 1.3rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    left: -100%;
    top: 0;
    background-color: var(--white-color);
    width: 100%;
    height: 100%;
    padding: 6rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s;
  }

  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform .4s ease-out, visibility .4s;
  }

  .nav__item:nth-child(1) {
    transition-delay: .1s;
  }
  .nav__item:nth-child(2) {
    transition-delay: .2s;
  }
  .nav__item:nth-child(3) {
    transition-delay: .3s;
  }
  .nav__item:nth-child(4) {
    transition-delay: .4s;
  }
  .nav__item:nth-child(5) {
    transition-delay: .5s;
  }
}

.nav__list, 
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  position: relative;
  color: #0E6A86;
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav__link span {
  position: relative;
  transition: margin .4s;
}

.nav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #13A39E;
  transition: width .4s ease-out;
}

/* Animation link on hover */
.nav__link:hover span {
  margin-left: 2.5rem;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
}

.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: .4;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__social-link:hover {
  transform: translateY(-.25rem);
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle, 
  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--title-font);
  }

  .nav__link i {
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }
}

/* Estilos gerais para a seção home */
.home-section {
  position: relative;
  overflow: hidden;
}

/* Configuração do Swiper */
.swiper {
  width: 100%;
  height: 100vh; /* Altura total da tela */
}

.slide-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Sobreposição escura */
}

.slide-text {
  z-index: 1;
  color: white;
  padding: 2rem;
}

.slide-text h3 {
  font-size: 1.2rem;
  color: #13A39E; /* Verde claro, como na imagem */
  margin-bottom: 0.5rem;
}

.slide-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.slide-button {
  --b: 3px;
  --s: .45em;
  --color: #13A39E; /* Verde claro, como na imagem */
  padding: calc(.5em + var(--s)) calc(.9em + var(--s));
  color: var(--color);
  --_p: var(--s);
  background:
    conic-gradient(from 90deg at var(--b) var(--b),#0000 90deg,var(--color) 0)
    var(--_p) var(--_p)/calc(100% - var(--b) - 2*var(--_p)) calc(100% - var(--b) - 2*var(--_p));
  transition: .3s linear, color 0s, background-color 0s;
  outline: var(--b) solid #0000;
  outline-offset: .6em;
  font-size: 16px;
  border: 0;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.slide-button:hover,
.slide-button:focus-visible {
  --_p: 0px;
  outline-color: var(--color);
  outline-offset: .05em;
}

.slide-button:active {
  background: var(--color);
  color: white;
}

/* Estilos para a paginação (círculos indicadores) */
.swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
  margin: 0 5px;
  transition: background-color 0.3s, opacity 0.3s;
}

.swiper-pagination-bullet-active {
  background-color: #28a745; /* Verde claro, como na imagem */
  opacity: 1;
}

/*=============== BACKGROUND PERSONALIZADO PARA O ESCRITÓRIO ===============*/
.escritorio-section {
    position: relative;
    padding: 6rem 2rem;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    border-radius: 15px;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    z-index: 1;
}

.escritorio-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.escritorio-title {
  font-family: var(--title-font);
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
  color: #0E6A86;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.escritorio-intro {
  font-family: var(--caption-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  line-height: 1.5;
  color: #444444;
  max-width: 700px;
  margin-bottom: 2rem;
  text-align: left;
}

.escritorio-text-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  max-width: 700px;
  justify-content: space-between;
}

.escritorio-text {
  flex: 1;
  font-family: var(--caption-font);
  font-size: var(--normal-font-size);
  line-height: 1.5;
  color: #444444;
  max-width: 340px;
  min-width: 300px;
  align-self: flex-start;
}

.escritorio-footer {
  font-family: var(--caption-font);
  font-size: var(--normal-font-size);
  font-style: italic;
  font-weight: var(--font-medium);
  color: #0E6A86;
  margin-top: 2rem;
  text-align: left;
  max-width: 700px;
}

@media screen and (max-width: 1150px) {
  .escritorio-section {
    max-width: 900px;
    padding-left: 1.5rem;
  }
}

@media screen and (max-width: 1150px) {
  .escritorio-section {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .escritorio-text-container {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    max-width: 100%;
  }

  .escritorio-text {
    max-width: 100%;
  }
}

/*=============== MISSÃO, VISÃO E VALORES - ALINHAMENTO CORRIGIDO ===============*/
.escritorio-values {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 700px;
  margin-top: 3rem;
}

.escritorio-box {
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  color: #444444;
  background: none;
  position: relative;
  padding-left: 2rem;
  max-width: 700px;
  border-left: 3px solid #0E6A86;
}

.escritorio-box:not(:last-child) {
  margin-bottom: 2rem;
}

.escritorio-box h3 {
  font-family: var(--title-font);
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 0.5rem;
  color: #13A39E;
  text-transform: uppercase;
  text-align: left;
}

.escritorio-box p,
.escritorio-box ul {
  font-family: var(--caption-font);
  font-size: var(--normal-font-size);
  line-height: 1.5;
  color: #444444;
  text-align: left;
  margin-left: 0;
  max-width: 700px;
}

.escritorio-box ul {
  padding-left: 0;
  margin-top: 1rem;
}

.escritorio-box ul li {
  font-family: var(--caption-font);
  font-size: var(--normal-font-size);
  line-height: 1.5;
  color:#444444;
  text-align: left;
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .escritorio-values {
    max-width: 100%;
  }

  .escritorio-box {
    max-width: 100%;
  }
}

/*=============== EFEITO DE ROLAGEM AVANÇADO ===============*/
.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.95) rotateX(10deg);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
}

/*=============== Servico ===============*/
.services-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  text-align: left;
}

.section-title {
  font-family: var(--title-font);
  font-size: 2rem;
  color: #0E6A86;
  margin-bottom: 40px;
  text-align: left; /* Altera o alinhamento para a esquerda */
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 1.5rem;
  margin: 0;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.service-icon {
  font-size: 2.5rem;
  color: #13A39E;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.service-card h3 {
  font-family: var(--caption-font);
  font-size: 1.5rem;
  color: #0E6A86;
  margin-bottom: 10px;
}

.service-card p {
  font-family: var(--caption-font);
  font-size: 1rem;
  color: #666;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service-card.centralizado {
    grid-column: span 2;
    justify-self: center;
    max-width: 400px;
  }
}

@media screen and (max-width: 768px) {
  .service-card {
    padding: 15px;
  }

  .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/*=============== CLIENTES ===============*/
.clients-section {
  background-color: white;
  padding: 60px 0;
  text-align: center; /* Centraliza o conteúdo */
  }
  
  .section-title {
  font-family: var(--title-font);
  font-size: 2rem;
  color: #0E6A86;
  margin-bottom: 40px;
  text-align: center; /* Centraliza o título */
  }
  
  .clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Ajusta o número de colunas dinamicamente */
  gap: 20px;
  padding: 0 1.5rem;
  }
  
  .client-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center; /* Centraliza o texto dentro do card */
  }
  
  .client-card:hover {
  transform: translateY(-5px); /* Efeito de hover */
  }
  
  .client-logo {
  width: 50%; /* Ajusta o tamanho da logo */
  height: auto;
  object-fit: contain;
  border-radius: 10px; /* Borda arredondada para a imagem */
  margin-bottom: 10px;
  display: block; /* Garante que a imagem seja um bloco */
  margin-left: auto; /* Centraliza a imagem */
  margin-right: auto; /* Centraliza a imagem */
  }
  
  .client-name {
  font-family: var(--caption-font);
  font-size: 1.2rem;
  color: #13A39E;
  margin: 0;
  font-weight: bold;
  text-align: center; /* Alinha o nome do cliente ao centro */
  }
  
  .client-link {
  text-decoration: none;
  color: inherit;
  display: block; /* Para garantir que o link ocupe todo o espaço do card */
  }
  
  .reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .reveal.active {
  opacity: 1;
  transform: translateY(0);
  }
/*=============== CONTACT SECTION ===============*/
.contact-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.section-title {
  font-family: var(--title-font);
  font-size: 2rem;
  color: #0E6A86;
  margin-bottom: 40px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-family: var(--caption-font);
  font-size: 1.5rem;
  color: #13A39E;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.contact-form textarea {
  height: 210px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background-color: #0C5B70;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #13A39E;
}

.contact-info {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-container {
  margin-bottom: 20px;
}

.info-container h3 {
  font-family: var(--caption-font);
  font-size: 1.5rem;
  color: #13A39E;
  margin-bottom: 10px;
}

.info-container p {
  font-family: var(--caption-font);
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
}

.info-container p a {
  color: #0E6A86;
  text-decoration: none;
  font-family: var(--caption-font);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.info-container p a:hover {
  color: #13A39E;
}

.info-container p i {
  margin-right: 8px;
  font-size: 1.2rem;
  vertical-align: middle;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/*=============== BOTÃO FLUTUANTE WHATSAPP ===============*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #21BA45;
}