:root {
  --cor-primaria: #00bcd4;
  --cor-secundaria: #28596a;
  --cor-tercearia: #59949b;
}

body {
  margin: 0;
  padding: 0;
}

/* FONTE GLOBAL DO SITE */
body {
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3 {
  font-weight: 700;
}

p {
  font-weight: 400;
  font-size: 17px;
}

/* HEADER BASE */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: transparent;
  transition: all 0.3s ease;
}

/* HEADER QUANDO ROLA */
.header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* LOGO */
.logo img,
.navbar-brand img {
  height: 60px;
  transition: all 0.3s ease;
}

/* MENU */
.nav-link {
  position: relative;
  color: #ffffff;
  transition: color 0.3s ease;
  font-size: 18px;
}

/* COR DO TEXTO NO HOVER (ANTES DO SCROLL) */
.header .nav-link:hover {
  color: #ffffff;
}

/* LINHA ANIMADA */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--cor-primaria);
  transition: width 0.3s ease;
}

/* HOVER */
.nav-link:hover::after {
  width: 100%;
}

/* LINK ATIVO */
.nav-link.active::after {
  width: 100%;
}

/* QUANDO HEADER SCROLLA */
.header.scrolled .nav-link {
  color: #000;
}

/* HERO / BANNER COM IMAGEM */
.hero {
  position: relative;
  height: 100vh;

  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY COM GRADIENTE */
.hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.3) 100%
  );
}

/* CONTEÚDO DO HERO */
.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 700px;
}

/* TÍTULO */
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* TEXTO */
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* BOTÃO */
.hero .btn {
  padding: 10px 25px;
  font-weight: 500;
}

/* ========================= */
/* 🔽 MOBILE NAVBAR AJUSTES */
/* ========================= */

/* BOTÃO MENU ( */
.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}

/* ÍCONE DO MENU */
.navbar-toggler i {
  transition: color 0.3s ease;
}

/* MENU MOBILE */
@media (max-width: 991px) {

  /* CAIXA DO MENU */
  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    margin-top: 10px;
    border-radius: 8px;
  }

  /* LINKS NO MOBILE */
  .nav-link {
    color: #000 !important;
    padding: 10px 0;
    font-size: 16px;
  }

  /* REMOVE LINHA ANIMADA NO MOBILE */
  .nav-link::after {
    display: none;
  }

}

/* ESPAÇAMENTO ENTRE ITENS DO MENU (DESKTOP) */
@media (min-width: 992px) {

  .navbar-nav {
    gap: 30px; /* controla o espaçamento */
  }

}

/* HERO INTERNO (PÁGINAS INTERNAS) */
.page-hero {
  padding: 120px 0 60px;
  background-image: url('/assets/images/banner-sobre.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #ffffff;
}

.img-quem-somos {
height: 500px;

}

/* IMAGENS DO CARROSSEL */


.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  opacity: 1;
  margin: 0 5px;
}

/* BOLINHA ATIVA */
.carousel-indicators .active {
  background-color: var(--cor-primaria); /* seu azul ciano */
}

@media (max-width: 768px) {
  .img-quem-somos {
    height: 250px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .page-hero {
    height: 250px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

}


.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

/* TEXTO */
.lead {
  font-size: 21px;
  color: #555;
}

/* EQUIPE */

/* IMAGEM */
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* EFEITO SUTIL NO HOVER */
.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-card h5 {
  margin-top: 10px;
  font-weight: 600;
}

.team-card p {
  margin-bottom: 5px;
  color: #777;
}

.team-card small {
  color: #555;
}

/* CARD */
.info-card {
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #ffffff;
}

/* HOVER SUAVE */
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid var(--cor-primaria);
}

/* ÍCONE */
.icon {
  font-size: 40px;
  color: var(--cor-primaria);
}

.title-1 {
  color: var(--cor-primaria);
}

/* SEÇÃO */
.team-section {
  background: #f8f9fa;
}

/* CARD BASE */
.team-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
  position: relative;
}

/* HOVER */
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: var(--cor-primaria);
}

/* DESTAQUE PRINCIPAL */
.team-card.destaque {
  border: 2px solid var(--cor-primaria);
  transform: scale(1.02);
}

/* BADGE */
.badge-responsavel {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cor-primaria);
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
}

/* IMAGEM */
.team-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
}

/* NOME */
.team-card h4,
.team-card h5 {
  margin-top: 10px;
  font-weight: 600;
}

/* CARGO */
.cargo {
  color: #888;
  margin-bottom: 15px;
  font-size: 14px;
}

/* INFO */
.team-info p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

/* ÍCONES */
.team-info i {
  color: var(--cor-primaria);
  margin-right: 6px;
}

/* HERO PADRÃO */
.page-hero-atuacao {
  padding: 120px 0 80px;
  background-image: url('../images/banner-servicos.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

/* CARDS DE SERVIÇO */
.service-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border-color: var(--cor-primaria);
}

/* ÍCONES */
.icon {
  font-size: 36px;
  color: var(--cor-primaria);
}

/* DIFERENCIAIS */
.diferencial-item {
  padding: 20px;
}

.diferencial-item p {
  margin-top: 10px;
  font-size: 15px;
}

/* WRAPPER */
.mapa-overlay-wrapper {
  position: relative;
}

/* TEXTO */
.mapa-overlay-wrapper p {
  background: #ffffff;
  padding: 20px;
  position: relative;
  z-index: 2;
}

/* CONTAINER DO MAPA */
.mapa-overlay {
  position: relative;
  margin-top: -10px; /* faz a imagem subir e entrar no texto */
  z-index: 1;
  height: 300px;
  overflow: hidden;
}

/* IMAGEM */
.mapa-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FADE (degradê branco por cima da imagem) */
.mapa-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;

  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    rgba(255,255,255,0) 100%
  );

  z-index: 2;
}

/* From Uiverse.io by alexmaracinaru */ 
.cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #b1dae7;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--cor-secundaria);
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--cor-secundaria);
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: #b1dae7;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}

/* HERO MAIS ALTO */
.contato-hero {
  min-height: 30vh;
}

/* INTRO */
.contato-intro {
  background: #ffffff;
}

/* WHATSAPP CENTRAL */
.whatsapp-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.whatsapp-box:hover {
  transform: translateY(-3px);
}

/* FORM WRAPPER */
.form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* CAMPOS */
.contato-form input,
.contato-form textarea {
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  padding: 12px;
}

/* FOCUS */
.contato-form input:focus,
.contato-form textarea:focus {
  border-color: var(--cor-primaria);
  box-shadow: none;
}

/* BOTÃO PRIMÁRIO DO SITE */
.btn-primary-custom {
  background: var(--cor-secundaria);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--cor-primaria);
  color: #fff;
}

/* FOOTER BASE */
.footer {
  background: var(--cor-secundaria);
  color: #ccc;
  padding: 60px 0 30px;
}

/* TÍTULOS */
.footer h5,
.footer h6 {
  color: #fff;
  font-weight: 600;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--cor-primaria);
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #28596a;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--cor-primaria);
  transform: translateY(-3px);
}

/* LINHA FINAL */
.footer-bottom {
  border-top: 1px solid #2a6e85;
  padding-top: 20px;
  font-size: 14px;
  color: #ccc;
}

/* BOTÃO CTA PERSONALIZADO */
.cta-btn {
  --primary-color: var(--cor-secundaria);
  --secondary-color: #fff;
  --hover-color: #113c4b;
  --arrow-width: 10px;
  --arrow-stroke: 2px;

  display: inline-flex;
  align-items: center;
  gap: 0.6em;

  padding: 14px 26px;
  border-radius: 30px;

  background: var(--primary-color);
  color: var(--secondary-color);

  text-decoration: none;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* WRAPPER */
.cta-btn .arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LINHA */
.cta-btn .arrow {
  width: var(--arrow-width);
  height: var(--arrow-stroke);
  background: var(--primary-color);
  position: relative;
  transition: 0.2s;
}

/* SETA */
.cta-btn .arrow::before {
  content: "";
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  top: -3px;
  right: 3px;
  padding: 3px;
  transform: rotate(-45deg);
  transition: 0.2s;
}

/* HOVER */
.cta-btn:hover {
  background: var(--hover-color);
  color: #fff;
}

.cta-btn:hover .arrow {
  background: var(--secondary-color);
}

.cta-btn:hover .arrow::before {
  right: 0;
}


/* SEÇÃO */
.sobre-section {
  background: #ffffff;
}
.sobre-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* TAG PEQUENA */
.sobre-tag {
  display: inline-block;
  font-size: 14px;
  color: var(--cor-primaria);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* TÍTULO */
.sobre-title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* TEXTO */
.sobre-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  max-width: 500px;
}

/* IMAGEM WRAPPER */
.sobre-img-wrapper {
  position: relative;
}

/* IMAGEM LIMPA (sem borda, mais sofisticado) */
.sobre-img-wrapper img {
  width: 80%;
  height: auto;
  display: block;
}

/* DETALHE SUTIL ATRÁS DA IMAGEM */
.sobre-img-wrapper::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  top: -20px;
  left: -20px;
  background: var(--cor-primaria);
  opacity: 0.08;
  z-index: -1;
}

/* FUNDO */
.servicos-refinada {
  background: linear-gradient(135deg, var(--cor-secundaria) 0%, var(--cor-tercearia) 100%);
  color: #ffffff;

  min-height: 80vh;
  display: flex;
  align-items: center;

}

/* GRID PRINCIPAL */
.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }
}

/* TEXTO */
.servicos-texto h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.servicos-texto p {
  opacity: 0.8;
  line-height: 1.6;
  max-width: 500px;
}

/* TAG */
.servicos-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 10px;
  display: inline-block;
  opacity: 0.7;
}

/* CARDS */
.servicos-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.servico-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;

  padding: 20px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);

  transition: all 0.3s ease;
}

/* HOVER */
.servico-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

/* ÍCONE */
.icon-box {
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  color: #005831;
  font-size: 20px;
}

/* TEXTO CARD */
.servico-card h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.servico-card p {
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* GARANTE ALINHAMENTO COM SETA */
.btn-servicos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* SETA */
.arrow-wrapper {
  display: flex;
  align-items: center;
}

.arrow {
  width: 10px;
  height: 2px;
  background: #111;
  position: relative;
  transition: 0.3s;
}

.arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;

  width: 6px;
  height: 6px;

  border-right: 2px solid #111;
  border-bottom: 2px solid #111;

  transform: rotate(-45deg);
}

/* MICROINTERAÇÃO */
.btn-servicos:hover .arrow {
  transform: translateX(4px);
}

.btn-servicos {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 26px;
  background: #ffffff;
  color: #111;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;

  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* SETA */
.arrow-wrapper {
  display: flex;
  align-items: center;
}

/* HOVER */
.btn-servicos:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.btn-servicos:hover .arrow {
  transform: translateX(4px);
}

/* FUNDO */
.contato-strip {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f5f5 100%
  );
  color: #111;
}

/* LAYOUT */
.contato-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* TEXTO */
.contato-texto h2 {
  font-weight: 600;
  margin-bottom: 10px;
}

.contato-texto p {
  opacity: 0.85;
  margin-bottom: 15px;
}

/* INFO */
.contato-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 500;
}

.contato-info i {
  margin-right: 6px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .contato-flex {
    flex-direction: column;
    text-align: center;
  }

  .contato-cta {
    margin-top: 10px;
  }
}

.btn-contato {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 26px;
  background: #28596a;
  color: #ffffff;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;

  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.btn-contato:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  background-color: #113c4b;
}