/* =======================================
   🧱 1. RESET E ESTILO BASE
======================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}


/* =======================================
   🧭 2. HEADER E NAVEGAÇÃO
======================================= */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  box-shadow: 0 1px 0 #e5e9ed;
  height: 90px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #111;
  font-weight: 500;
  z-index: 2;
}

.header-left i {
  color: #00b4b6;
  font-size: 24px;
}

.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}

.header-logo img {
  height: 60px;
  vertical-align: middle;
}

.header-logo .tagline {
  display: block;
  font-size: 10px;
  color: #667;
  letter-spacing: 1px;
  margin-top: 2px;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #00b4b6;
  cursor: pointer;
}

.header-right i.fas.fa-search {
  font-size: 16px;
  color: #00b4b6;
  cursor: pointer;
}

/* Versão responsiva */
@media (max-width: 768px) {
  .header {
    align-items: center;
    padding: 10px 16px;
    height: auto;
  }

  .header-left {
    width: 100%;
    margin-top: 8px;
  }


  .header-right {
display: none;
  }


  .header-logo {
    position: static;
    transform: none;
    margin-top: 8px;
    text-align: center;
  }

  .header-logo img {
    height: 52px;
    max-width: none;
  }

  .header-logo .tagline {
    font-size: 9px;
  }

  .language-selector {
    font-size: 12px;
  }
}

/* =======================================
   🦸 3. HERO SECTION (NOVO – vídeo 16:9)
======================================= */

.hero {
  /* layout */
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  justify-content: space-between;

  /* mantém o respiro que você já usa */
  padding: 60px 3%;
  margin-top: 6%;
}

.hero-content {
  max-width: 820px; /* dá mais fôlego pro título e parágrafo */
}

/* escopar tipografia só dentro do hero pra não afetar o resto */
.hero h1 {
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.2;
  margin: 0 0 10px;
}
.hero h1 strong { color: #222; }
.hero .highlight { color: #00b4b6; font-weight: 700; }

.hero p {
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.6;
  color: #555;
  margin: 8px 0 22px;
  max-width: 720px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0; /* já temos espaçamento suficiente no parágrafo */
}

/* ===== VÍDEO 16:9 ===== */
.hero-image {
  position: relative;
  width: 100%;
  /* sem altura fixa! o 16:9 abaixo cuida do tamanho */
}

.fg-yt {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  background: #000;
  /* prefer: aspect-ratio nativo */
  aspect-ratio: 16 / 9;
}

/* fallback pra navegadores sem aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
  .fg-yt::before { content:""; display:block; padding-top:56.25%; }
  .fg-yt > iframe { position:absolute; inset:0; }
}

.fg-yt > iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

/* ===== Responsivo ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 3%;
  }
}

/* (opcional) remover completamente os enfeites antigos se o HTML ainda tiver eles */
.image-decor,
.corner,
.dots { display: none !important; }


/* =======================================
   🟦 4. SUB-HERO / BARRA INFORMATIVA
======================================= */

.sub-hero {
  background-color: #4ca5a6;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center; /* centraliza horizontalmente */
  height: auto;
}

.sub-hero p {
  color: white;
  font-size: 16px;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
}


/* =======================================
   📘 5. SOBRE NÓS (ABOUT)
======================================= */

.section-about {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  padding: 80px 40px; /* ou algo como 80px 5% */
  background-color: #f5f7f8;
}

.image-wrapper {
  position: relative;
  width: 400px;
  height: 450px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.image-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #00b4b6;
  border-radius: 8px;
}

.corner.top-left {
  top: -20px;
  left: -20px;
}

.corner.bottom-left {
  bottom: -20px;
  left: -20px;
}

.corner.top-right {
  top: -20px;
  right: -20px;
  height: 80px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.dots.bottom-dots {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 20px;
  background: radial-gradient(rgba(0, 180, 182, 0.35) 20%, transparent 21%) repeat-x;
  background-size: 20px 20px;
}

.content {
  max-width: 600px;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #111;
}

h2 strong {
  font-weight: 700;
  color: #111;
}

p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* RESPONSIVO */
@media (max-width: 576px) {
  .section-about {
    flex-direction: column;
    align-items: center;
    padding: 60px 6%;
    text-align: center;
  }

  .image-wrapper {
    width: 100%;
    height: auto;
  }

  .content {
    max-width: 100%;
  }

  .corner,
  .dots.bottom-dots {
    display: none;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 14px;
  }
}

/* =======================================
   🧠 6. EXPERTISE / SERVIÇOS / CARDS
======================================= */

.section-expertise {
  text-align: center;
  padding: 80px 5% 100px;
  background: #fff;
}

.section-header .badge {
  display: inline-block;
  border: 1px solid #00b4b6;
  color: #00b4b6;
  font-weight: 600;
  font-size: 13px;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 30px;
  margin: 10px 0;
  color: #111;
}

.section-header .subtitle {
  color: #777;
  font-size: 15px;
  margin-bottom: 50px;
  text-align: center;

}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.card {
  background: #fff;
  border: 1px solid #dce1e4;
  border-radius: 12px;
  padding: 30px 20px;
  width: 260px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  text-align: center;
}

.card .icon {
  font-size: 32px;
  color: #00b4b6;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #111;
}

.card a {
  color: #00b4b6;
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.card p {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* Quote block */
.quote-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #dce1e4;
}

.quote-container blockquote {
  font-weight: bold;
  color: #111;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}

.decor-top-left,
.decor-bottom-right {
  position: absolute;
  width: 60px;
  height: 40px;
  background: #00b4b6;
  border-radius: 8px;
}

.decor-top-left {
  top: -20px;
  left: -20px;
}

.decor-bottom-right {
  bottom: -20px;
  right: -20px;
}

.decor-dots {
  position: absolute;
  top: -28px;
  left: 50px;
  width: 180px;
  height: 20px;
  background: radial-gradient(rgba(0, 180, 182, 0.35) 20%, transparent 21%) repeat-x;
  background-size: 20px 20px;
}

/* RESPONSIVO */
@media (max-width: 990px) {
  .section-expertise {
    padding: 60px 5% 80px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .card {
    width: 100%;
    max-width: 300px;
  }

  .cards {
    gap: 20px;
  }

  .quote-container {
    padding: 30px 20px;
  }

  .quote-container blockquote {
    font-size: 14px;
  }

  .decor-top-left,
  .decor-bottom-right,
  .decor-dots {
    display: none;
  }
}

/* =======================================
   ⚙️ 7. OPERAÇÃO / COMO TRABALHAMOS
======================================= */

.section-operate {
  padding: 80px 0;
  background: #f9fafa;
  text-align: center;
}

.section-operate .badge {
  display: inline-block;
  border: 1px solid #00b4b6;
  color: #00b4b6;
  font-weight: 600;
  font-size: 13px;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.section-operate h2 {
  font-size: 30px;
  margin: 10px 0;
  color: #111;
}

.section-operate .subtitle {
  color: #777;
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 🎠 Carrossel Infinito */
.infinicarousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  padding: 20px 0;
}

.infinicarousel-wrapper {
  display: flex;
  animation: scroll 40s linear infinite;
}

.infinicarousel-child {
  flex: 0 0 auto;
  width: 200px;
  margin: 0 10px;
  text-align: center;
}

.infinicarousel-image-container {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infinicarousel-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.infinicarousel-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .section-operate {
    padding: 60px 0;
  }

  .section-operate h2 {
    font-size: 24px;
  }

  .section-operate .subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .infinicarousel-child {
    width: 150px;
    margin: 0 8px;
  }

  .infinicarousel-image-container {
    height: 100px;
  }

  .infinicarousel-caption {
    font-size: 12px;
  }
}

.infinicarousel-left-arrow,
.infinicarousel-right-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00b4b6;
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  z-index: 2;
}

.infinicarousel-left-arrow:hover,
.infinicarousel-right-arrow:hover {
  background-color: #009aa0;
}

.infinicarousel-left-arrow {
  left: 10px;
}

.infinicarousel-right-arrow {
  right: 10px;
}


/* =======================================
   🧭 8. ABORDAGEM / PROCESSO
======================================= */

.section-approach {
  text-align: center;
  padding: 80px 4% 100px;
  background: #fff;
}

.section-header .badge {
  display: inline-block;
  border: 1px solid #00b4b6;
  color: #00b4b6;
  font-weight: 600;
  font-size: 13px;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
  align-items: center;
}

.section-header h2 {
  font-size: 30px;
  margin: 10px 0;
  color: #111;
}

.section-header .subtitle {
  color: #777;
  font-size: 15px;
  margin-bottom: 50px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.card {
  background: #fff;
  border: 1px solid #dce1e4;
  border-radius: 12px;
  padding: 20px 15px; /* Reduzido de 30px 20px */
  width: 240px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  text-align: center;
  max-height: 250px; /* ou um valor apropriado */
  overflow: hidden;
}

.card .icon {
  font-size: 32px;
  color: #00b4b6;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111;
  text-transform: uppercase;
}

.card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.quote-wrapper {
  position: relative;
  max-width: 720px;
  margin: 60px auto;
  padding: 0 20px;
}

.quote-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 0 1px #dce1e4;
  padding: 30px 40px;
  position: relative;
  z-index: 2;
}

.quote-container blockquote {
  font-size: 14.5px;
  font-weight: 600;
  color: #111;
  text-align: center;
  margin: 0;
  line-height: 1.6;
  text-transform: uppercase;
}

/* Retângulo inferior esquerdo */
.rect-bottom-left {
  position: absolute;
  width: 180px;
  height: 40px;
  background: #00b4b6;
  border-radius: 6px;
  bottom: -20px; /* Move 10px mais para baixo */
  left: 10px;
  z-index: 1;
}


/* Quadrado superior direito */
.square-top-right {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #00b4b6;
  border-radius: 6px;
  top: -15px;     /* Move 10px mais para cima */
  right: -1px;   /* Move 10px mais para a direita */
  z-index: 1;
}


/* Bolinhas (grid top-left) */
.dot-grid {
  position: absolute;
  top: -15px;
  left: -10px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(rgba(0, 180, 182, 0.3) 40%, transparent 41%);
  background-size: 10px 10px; /* pontos maiores */
  z-index: 1;
}

/* RESPONSIVO */
@media (max-width: 990px) {
  .section-approach {
    padding: 60px 5% 80px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .card h3 {
    font-size: 14px;
  }

  .card p {
    font-size: 12.5px;
  }

  .quote-container {
    padding: 30px 20px;
  }

  .quote-container blockquote {
    font-size: 14px;
    line-height: 1.4;
  }

  .decor-top-left,
  .decor-bottom-right {
    width: 60px;
    height: 30px;
  }

  .decor-dots {
    width: 140px;
    height: 15px;
  }
}

/* =======================================
   💎 9. VALORES / CRENÇAS / MISSÃO
======================================= */

.section-believe {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding: 80px 5%;
  background: #f9fafa;
  align-items: flex-start;
}

.content-believe {
  flex: 1 1 500px;
}

.image-believe {
  position: relative;
  width: 400px;
  height: auto;
}

.image-believe img {
  width: 100%;
  border-radius: 10px;
  z-index: 2;
  position: relative;
}

.badge {
  display: inline-block;
  border: 1px solid #00b4b6;
  color: #00b4b6;
  font-weight: 600;
  font-size: 13px;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

h2 {
  font-size: 30px;
  margin: 10px 0 20px;
  color: #111;
}

.subtitle {
  color: #777;
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 600px;
}

.belief-block {
  margin-bottom: 30px;
}

.title-blue {
  color: #00b4b6;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 8px;
}

.belief-block p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* NOVA FORMATAÇÃO DOS VALORES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  margin-top: 30px;
  max-width: 800px;
}

.value {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #cce8e9;
  border-radius: 8px;
  color: #00b4b6;
  font-size: 18px;
  background-color: white;
}

.value-text {
  font-size: 14px;
  color: #8899a6;
  font-weight: 600;
  text-transform: uppercase;
}

/* Decorations */
.decor-top-left,
.decor-bottom-right {
  position: absolute;
  width: 60px;
  height: 40px;
  background: #00b4b6;
  border-radius: 8px;
  z-index: 1;
}

.decor-top-left {
  top: -20px;
  left: -20px;
}

.decor-bottom-right {
  bottom: -20px;
  right: -20px;
}

.decor-dots {
  position: absolute;
  bottom: -30px;
  left: 40px;
  width: 180px;
  height: 20px;
  background: radial-gradient(rgba(0, 180, 182, 0.35) 20%, transparent 21%) repeat-x;
  background-size: 20px 20px;
  z-index: 1;
}

/* RESPONSIVO */
@media (max-width: 990px) {
  .section-believe {
    flex-direction: column;
    align-items: center;
    padding: 60px 5%;
    gap: 40px;
  }

  .content-believe {
    flex: 1 1 100%;
    text-align: center;
  }

  .image-believe {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  h2 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
  }

  .belief-block p {
    font-size: 17px;
  }

  .values-grid {
  grid-template-columns: 1fr;
  justify-items: start;
}

  .value {
    text-align: left;
  }

  .decor-dots {
    display: none;
  }
}

/* =======================================
   👥 10. EQUIPE
======================================= */

.section-team {
  text-align: center;
  padding: 80px 5%;
  background: #fff;
}

.section-header .badge {
  display: inline-block;
  border: 1px solid #00b4b6;
  color: #00b4b6;
  font-weight: 600;
  font-size: 13px;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 30px;
  margin: 10px 0;
  color: #111;
}

.section-header .subtitle {
  color: #777;
  font-size: 15px;
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
}

.team-card {
  background: #fff;
  border: 1px solid #dce1e4;
  border-radius: 12px;
  padding: 20px;
  width: 200px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.team-card h3 {
  font-size: 15px;
  font-weight: bold;
  color: #00b4b6;
  margin: 0;
}

.team-card p {
  font-size: 13px;
  color: #666;
  margin: 4px 0 12px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  color: #00b4b6;
}

/* RESPONSIVO */
@media (max-width: 780px) {
  .team-card h3 {
  font-size: 25px;
}

.team-card p {
  font-size: 22px;
}

}

/* =======================================
   🔗 11. CONEXÃO / CHAMADA PARA AÇÃO
======================================= */

.section-connection {
  background: #f9fafa;
  padding: 80px 0;
  text-align: center;
}

.quote-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 1px #dce1e4;
  font-size: 18px;
  font-weight: bold;
  color: #111;
  z-index: 2;
}

.quote-box blockquote {
  margin: 0;
}

.decor-dots {
  position: absolute;
  top: -25px;
  left: -30px;
  width: 120px;
  height: 20px;
  background: radial-gradient(rgba(0, 180, 182, 0.35) 20%, transparent 21%) repeat-x;
  background-size: 10px 10px;
  z-index: 1;
}

.decor-bottom {
  position: absolute;
  bottom: -20px;
  left: 40px;
  width: 180px;
  height: 40px;
  background: #00b4b6;
  border-radius: 8px;
  z-index: 1;
}

.decor-top-right {
  position: absolute;
  top: -20px;
  right: 40px;
  width: 60px;
  height: 40px;
  background: #00b4b6;
  border-radius: 8px;
  z-index: 1;
}

/* =======================================
   📬 12. ORIENTAÇÃO / MENTORIA / TESTEMUNHOS
======================================= */

.section-guidance {
  padding: 80px 5%;
  background: #f9fafa;
  text-align: center;
}

.section-header .badge {
  display: inline-block;
  border: 1px solid #00b4b6;
  color: #00b4b6;
  font-weight: 600;
  font-size: 13px;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 30px;
  margin: 10px 0;
  color: #111;
}

.section-header .subtitle {
  color: #777;
  font-size: 15px;
  margin-bottom: 50px;
}

.guidance-box {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid #dce1e4;
  border-radius: 10px;
  padding: 40px;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.profile {
  text-align: center;
  max-width: 200px;
}

.profile img {
  border-radius: 10px;
  width: 160px;
  height: 160px;
  object-fit: cover;
  margin-bottom: 16px;
}

.profile h3 {
  color: #00b4b6;
  font-size: 16px;
  margin: 0;
}

.profile p {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: #00b4b6;
}

.message {
  max-width: 600px;
  text-align: left;
  position: relative;
}

.quote-mark {
  font-size: 36px;
  color: #00b4b6;
  margin: 0;
}

.quote-mark.top {
  position: absolute;
  top: -10px;
  left: -10px;
}

.quote-mark.bottom {
  position: absolute;
  bottom: 190px;
  right: 200px;
}

.quote-text {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin-bottom: 40px;
  padding-top: 20px;
}

.attention-title {
  color: #00b4b6;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.alerts {
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: #444;
}

.alerts li {
  margin-bottom: 10px;
}

.alerts li span {
  margin-right: 8px;
}

.alerts a {
  color: #00b4b6;
  font-weight: 500;
  text-decoration: underline;
}

/* Quote callout block */
.callout-quote {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 1px #dce1e4;
  font-size: 18px;
  font-weight: bold;
  color: #111;
}

.callout-quote blockquote {
  margin: 0;
}

.decor-dots {
  position: absolute;
  top: -25px;
  left: -30px;
  width: 120px;
  height: 20px;
  background: radial-gradient(rgba(0, 180, 182, 0.35) 20%, transparent 21%) repeat-x;
  background-size: 10px 10px;
  z-index: 1;
}

.decor-bottom {
  position: absolute;
  bottom: -20px;
  left: 40px;
  width: 180px;
  height: 40px;
  background: #00b4b6;
  border-radius: 8px;
  z-index: 1;
}

.decor-top-right {
  position: absolute;
  top: -20px;
  right: 40px;
  width: 60px;
  height: 40px;
  background: #00b4b6;
  border-radius: 8px;
  z-index: 1;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .section-guidance {
    padding: 60px 5%;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .guidance-box {
    padding: 30px 20px;
    gap: 30px;
  }

  .profile img {
    width: 120px;
    height: 120px;
  }

  .quote-text {
    font-size: 15px;
  }

  .callout-quote {
    font-size: 16px;
    padding: 25px 15px;
  }

  .decor-dots,
  .decor-bottom,
  .decor-top-right {
    display: none;
  }
}

/* =======================================
   🧩 13. UTILITÁRIOS GERAIS (BOTÕES, BADGES, ETC.)
======================================= */

.btn,
.btn.primary,
.btn.secondary {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn.primary {
  background: #00b4b6;
  color: white;
}

.btn.secondary {
  border: 2px solid #00b4b6;
  color: #00b4b6;
  background: transparent;
}

.btn:hover {
  background: #00b4b6;
  color: white;
}

.btn i {
  margin-left: 6px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #00b4b6;
  border-radius: 20px;
  font-size: 12px;
  color: #00b4b6;
  font-weight: 600;
  margin-bottom: 20px;
}

.highlight {
  color: #00b4b6;
  font-weight: bold;
}

/* =======================================
   📎 14. FOOTER
======================================= */

.footer {
  background: #0099a0;
  color: white;
  padding: 60px 10% 30px;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  color: white;
}

.footer-brand h2 span {
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1px;
  color: white;
}

.footer-brand p {
  font-size: 14px;
  margin: 6px 0;
  color: white;
}

.footer-brand i {
  margin-right: 8px;
  color: white;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 14px;
  font-weight: bold;
  color: white;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
}

.newsletter-form input {
  padding: 8px;
  border-radius: 5px 0 0 5px;
  border: none;
  width: 140px;
  font-size: 13px;
}

.newsletter-form button {
  padding: 8px 14px;
  background: white;
  color: #0099a0;
  border: none;
  border-radius: 0 5px 5px 0;
  font-weight: bold;
  cursor: pointer;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  font-size: 16px;
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-bottom: 20px;
}

.footer-bottom .seals {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: #e6f4f5;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #e6f4f5;
}

.footer-legal .links a {
  color: #e6f4f5;
  text-decoration: none;
  margin-left: 10px;
}

.footer-legal .links a:hover {
  text-decoration: underline;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .footer {
    padding: 40px 6% 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 5px;
  }

  .newsletter-form button {
    margin-top: 8px;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom .seals {
    flex-wrap: wrap;
    gap: 12px;
  }
}


/* =======================================
   📱 15. RESPONSIVIDADE GERAL
======================================= */

@media (max-width: 1024px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 18px;
  }

  .btn {
    font-size: 13px;
    padding: 10px 16px;
  }

  .badge {
    font-size: 11px;
    padding: 4px 12px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header .subtitle {
    font-size: 18px;
    text-align: center;
  }

  .cards,
  .team-grid,
  .values-grid {
    gap: 20px;
  }

  .card,
  .team-card,
  .value {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero,
  .section-about,
  .section-guidance,
  .section-believe {
    padding: 60px 5%;
  }

  .image-wrapper,
  .image-believe {
    width: 100%;
    height: auto;
  }

  .quote-container,
  .callout-quote,
  .quote-box {
    padding: 25px 15px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-content,
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .newsletter-form button {
    margin-top: 8px;
  }
}

/* =======================================
   📱 16. MENU LATERAL - SLIDER
======================================= */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  background-color: #0099a0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  margin-top: 6%;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 16px;
  color: #FFF;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #e6e0e0;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .sidenav {
    padding-top: 15px;
    margin-top: 18%;
  }
  .sidenav a {font-size: 18px;}
}

/* =======================================
   Modal - área de especialidades
======================================= */

/* 🌟 MODAL FORGOOD REFINADO */
.modal-fg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-fg-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background-color: #FFF;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: fadeInModal 0.4s ease;
  color: var(--color-soft-text);
}

.modal-fg-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-black);
  text-align: center;
}

.modal-fg-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-soft-text);
  text-align: justify;
}

.modal-fg-close {
  color: var(--color-muted);
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-fg-close:hover {
  color: var(--color-primary);
}

@keyframes fadeInModal {
  from {
    opacity: 0;
    transform: translate(-50%, -55%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
