.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 10px 0;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease,
              box-shadow 0.25s ease, padding 0.2s ease;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Montserrat", sans-serif;
  max-height: 90px;
}

.topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center; /* centraliza a navegação no desktop */
  align-items: center;
}

/* LOGO na extrema esquerda da tela (desktop) */
.topbar-logo {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.topbar.is-scrolled .topbar-logo {
  top: 6px;
}

.topbar-logo img {
  height: 100px;
  width: auto;
  display: block;
}

/* MENU CENTRALIZADO (desktop) */
.topnav {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.topnav a {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  color: #000;
  padding: 0 0;
  line-height: 100px;        /* mesma altura da logo */
  opacity: 0.9;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #570304;
  opacity: 0;
  transition: width 0.2s ease, opacity 0.2s ease;
}

.topnav a.is-active::after {
  width: 18px;
  opacity: 1;
}

.topnav a.is-active {
  color: #570304;
}

.topnav a:hover {
  opacity: 1;
  color: #b27a79;
}

/* BOTÃO HAMBÚRGUER – escondido no desktop */
.topbar-toggle {
  display: none;
  position: absolute;
  right: 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.topbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ESTADOS DO BOTÃO QUANDO O MENU ESTÁ ABERTO */
.topbar.menu-open .topbar-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.topbar.menu-open .topbar-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.menu-open .topbar-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* -------- RESPONSIVO (MOBILE) -------- */
@media (max-width: 768px) {
  .topbar {
    max-height: none;
  }

  .topbar-inner {
    justify-content: center;
    padding: 6px 16px;
  }

  /* Logo centralizada no mobile */
  .topbar-logo {
    position: static;
    transform: translateX(0);
    margin: 0 auto;
  }

  .topbar-logo img {
    height: 60px; /* ajuste de tamanho opcional para mobile */
  }

  /* Mostrar botão hambúrguer no mobile */
  .topbar-toggle {
    display: block;
  }

  /* Menu vira dropdown oculto por padrão */
  .topnav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(4px);
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 8px 0 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }

  /* Quando o header tiver .menu-open, mostra o menu */
  .topbar.menu-open .topnav {
    display: flex;
  }

  .topnav a {
    line-height: 1.4;
    padding: 8px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  .topnav a::after {
    bottom: 4px;
  }
}


body{
        font-family: 'Montserrat', sans-serif;
        color:#570304;
        background:#ffffff;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    h1,h2,h3,h4,h5,h6{
        font-family:'Montserrat', sans-serif;
        font-weight:600;
    }

    p{
        font-weight:400;
        line-height:1.7;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }
    section {
      padding: 90px 8%;
      position: relative;
    }

    .texture-bg {
      background:
        radial-gradient(rgba(224,190,68,0.18), transparent 0%),
        radial-gradient(rgba(168,41,41,0.08), transparent 0%),
        #f9f0ea;
    }

    h1, h2 {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-weight: 500;
      line-height: 1.05;
    }

    p {
      line-height: 1.8;
      font-size: 1.05rem;
    }

    .btn-group {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 50px;
    }

    .btn {
      padding: 18px 42px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: 0.3s ease;
      display: inline-block;
      font-size: 0.95rem;
    }

    .btn-dark {
      background: #7a0d06;
      color: #e4b125;
    }

    .btn-gold {
      background: #e4b125;
      color: #5c1d16;
    }

    .btn:hover {
      transform: translateY(-3px);
      opacity: 0.92;
    }

        /* HERO */

    /* PARALLAX DE FUNDO */
    .hero-central {
      position: relative;
      min-height: 100vh;
      padding: 100px 16px 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #411c18;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      overflow: hidden;

      background-image: url("img/parallax.jpg");
      background-size: cover;
      background-position: center;
      background-attachment: fixed; /* efeito parallax simples */
    }

    .hero-central::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(249, 240, 234, 0.92); /* “lava” o fundo com tom #f9f0ea */
      pointer-events: none;
    }

    .hero-central-inner {
      position: relative;
      z-index: 1;
      max-width: 820px;
      margin: 0 auto;
    }

    /* IMAGEM CENTRAL */
    .hero-imagem-centro {
      max-width: 520px;
      margin: 0 auto -60px;
      border-radius: 22px;
      overflow: hidden;
    }

    .hero-imagem-centro img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    /* TEXTO (CARROSSEL) */
    .hero-pill {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 999px;
      background-color: #faeed8;
      color: #8b5a1e;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .hero-titulo {
      font-size: 2rem;
      line-height: 1.15;
      color: #411c18;
      margin-bottom: 12px;
    }

    .hero-subtexto {
      font-size: 0.98rem;
      line-height: 1.8;
      color: #6b534e;
      max-width: 620px;
      margin: 0 auto 26px;
    }

    /* BOTÕES */
    .hero-botoes {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .hero-btn-primario,
    .hero-btn-secundario {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      border-radius: 999px;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease,
                  box-shadow 0.2s ease, transform 0.1s ease;
    }

    .hero-btn-primario {
      background: #570304;
      color: #ffffff;
      border: none;
      box-shadow: 0 12px 30px rgba(87, 3, 4, 0.4);
    }

    .hero-btn-primario:hover {
      background: #711013;
      transform: translateY(-1px);
      box-shadow: 0 14px 34px rgba(87, 3, 4, 0.5);
    }

    .hero-btn-secundario {
      background: transparent;
      color: #570304;
      border: 1px solid rgba(87, 3, 4, 0.25);
    }

    .hero-btn-secundario:hover {
      background: rgba(87, 3, 4, 0.06);
    }

    /* DOTS PARA MUDAR O TEXTO */
    .hero-controles-texto {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 10px;
    }

    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(87, 3, 4, 0.25);
      cursor: pointer;
      transition: width 0.2s ease, background 0.2s ease;
    }

    .hero-dot.is-active {
      width: 22px;
      background: #570304;
    }

    @media (max-width: 768px) {
      .hero-central {
        padding: 90px 16px 70px;
      }
      .hero-titulo {
        font-size: 2rem;
      }
      .hero-imagem-centro {
        margin-bottom: 24px;
      }
    }

    @media (max-width: 480px) {
      .hero-titulo {
        font-size: 1.7rem;
      }
      .hero-subtexto {
        font-size: 0.95rem;
      }
    }

    .faixa-branca {
      background-color: #ffffff;
      padding: 80px 16px;          /* ajuste altura interna como quiser */
    }

    .faixa-branca .container {
      max-width: 1200px;
      margin: 0 auto;
      /* por enquanto, só um placeholder visual */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #999;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      border-radius: 8px;         /* opcional, pode remover */
    }



   .empresa {
      padding: 80px 16px;
      background: #f9f0ea; /* ajuste conforme sua paleta */
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    .empresa .container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 40px;
      align-items: center;
      flex-wrap: wrap;
    }

    /* COLUNA ESQUERDA – IMAGEM */
    .bit-col-imagem {
      flex: 1 1 420px;
      position: relative;
    }

    .bit-imagem-wrapper {
      border-radius: 18px;                 /* bordas arredondadas */
      overflow: hidden;
      position: relative;

      /* sombra só na parte de baixo, mais suave nas laterais */
      box-shadow:
        0 18px 30px rgba(0, 0, 0, 0.18);   /* principal, para baixo */
    }
    .bit-imagem-wrapper img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    /* CARD BRANCO SOBRE A IMAGEM (CANTO INFERIOR DIREITO) */
    .bit-card-numeros {
      position: absolute;
      right: 20px;
      bottom: -26px;
      background: #ffffff;
      border-radius: 14px;
      padding: 18px 24px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
      display: flex;
      gap: 24px;
      font-size: 0.82rem;
    }

    .bit-card-bloco {
      min-width: 80px;
    }

    .bit-card-numero {
      font-weight: 700;
      font-size: 1.1rem;
      color: #570304;
      margin-bottom: 4px;
    }

    .bit-card-label {
      color: #777;
      line-height: 1.3;
    }

    /* COLUNA DIREITA – TEXTO */
    .bit-col-texto {
      flex: 1 1 380px;
      color: #570304;
    }

    .bit-subtitulo {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 999px;          /* formato de pílula */
      background-color: #b27a79;     /* fundo claro semelhante */
      color: #f9f0ea;                /* texto marrom suave */
      font-size: 0.78rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;        /* deixe em frase normal; use uppercase se quiser */
    }

    .bit-titulo {
      font-size: 2.1rem;
      line-height: 1.2;
      margin-bottom: 14px;
      color: #570304;
    }

    .bit-texto {
      font-size: 1.08rem;
      color: #5b4a48;
      line-height: 1.7;
      margin-bottom: 22px;
    }

    .bit-botao {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      border-radius: 999px;
      border: none;
      background: #570304;
      color: #ffffff;
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.1s ease,
                  box-shadow 0.2s ease;
      box-shadow: 0 8px 20px rgba(87, 3, 4, 0.35);
    }

    .bit-botao:hover {
      background: #711013;
      transform: translateY(-1px);
      box-shadow: 0 12px 30px rgba(87, 3, 4, 0.45);
    }

    .bit-botao:active {
      transform: translateY(0);
      box-shadow: 0 6px 18px rgba(87, 3, 4, 0.3);
    }

    @media (max-width: 900px) {
      .empresa .container {
        flex-direction: column;
      }
      .bit-col-imagem,
      .bit-col-texto {
        flex: 1 1 100%;
      }
      .bit-card-numeros {
        right: 14px;
        bottom: -22px;
        padding: 14px 18px;
        gap: 18px;
      }
    }

    @media (max-width: 600px) {
      .empresa {
        padding: 60px 16px 80px;
      }
      .bit-titulo {
        font-size: 1.7rem;
      }
      .bit-card-numeros {
        position: static;
        margin-top: 14px;
      }
    }

        :root {
      --primary: #7b1f2f;
      --primary-light: #b8485d;
      --text: #2c2c2c;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

     #servicos {
      --primary: #7b1f2f;
      --primary-light: #b8485d;
      --text: #2c2c2c;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      padding: 40px 16px 48px;
    }

    #servicos .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    #servicos header {
      text-align: center;
    }

    #servicos header h2 {
      color: var(--primary);
      margin-bottom: 8px;
      font-size: 2.1rem;
    }

    #servicos header p {
      max-width: 720px;
      margin: 0 auto;
      font-size: 1.08rem;
      color: #5b4a48 ;
      margin-top: 30px;
      margin-bottom: -40px;
    }

    #servicos .flow-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin: 24px auto 32px;
      flex-wrap: wrap;
      font-size: 0.8rem;
      color: #777;
    }

    #servicos .flow-bar span {
      white-space: nowrap;
    }

    #servicos .flow-bar .dot {
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: #bbb;
    }

    #servicos .areas-grid {
      display: grid;
      gap: 16px;
    }

    @media (min-width: 900px) {
      #servicos .areas-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }
    @media (min-width: 600px) and (max-width: 899px) {
      #servicos .areas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    #servicos .area-card {
      background: #fff;
      border-radius: 10px;
      padding: 18px 18px 16px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.04);
      border: 1px solid rgba(123, 31, 47, 0.08);
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
      overflow: hidden;
      transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
    }

    #servicos .area-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(123,31,47,0.05), transparent 55%);
      opacity: 0;
      transition: opacity 0.15s ease-out;
      pointer-events: none;
    }

    #servicos .area-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(0,0,0,0.08);
      border: solid 1px #570304;
    }

    #servicos .area-card:hover::before {
      opacity: 1;
    }

    #servicos .area-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 2px;
    }

    #servicos .area-title {
      font-weight: 700;
      font-size: 1.02rem;
      color: var(--primary);
      letter-spacing: 0.01em;
      text-transform: uppercase;
    }

    #servicos .area-tag {
      font-size: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #000;
      background: #f5e7ea;
      padding: 4px 8px;
      border-radius: 999px;
    }

    #servicos .area-desc {
      font-size: 0.9rem;
      color: #666;
    }

    #servicos .area-list {
      margin-top: 6px;
      list-style: none;
      font-size: 0.9rem;
      color: #333;
    }

    #servicos .area-list li {
      display: flex;
      gap: 6px;
      align-items: flex-start;
      margin-bottom: 4px;
    }

    #servicos .area-list li::before {
      content: "•";
      color: var(--primary-light);
      font-weight: 700;
      margin-top: 1px;
    }

    #servicos .area-level {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #999;
      margin-top: 4px;
    }

    #servicos .cta {
      margin-top: 32px;
      text-align: center;
    }

    #servicos .cta p {
      margin-bottom: 12px;
      font-size: 0.95rem;
      color: #555;
    }

    #servicos .cta button {
      border: none;
      background: var(--primary);
      color: #fff;
      padding: 10px 22px;
      border-radius: 999px;
      font-size: 0.9rem;
      cursor: pointer;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      transition: background 0.15s ease-out, transform 0.1s ease-out;
    }

    #servicos .cta button:hover {
      background: var(--primary-light);
      transform: translateY(-1px);
    }

    #servicos .cta button:active {
      transform: translateY(0);
    }

    #servicos .contact-hint {
      display: none;
      margin-top: 10px;
      font-size: 0.9rem;
      color: #333;
    }

    #servicos footer {
      margin-top: 40px;
      text-align: center;
      font-size: 0.8rem;
      color: #999;
    }

    /* COMENTÁRIOS */

 .reviews {
  text-align: center;
  padding: 60px 16px; /* opcional: respiro lateral em telas pequenas */
}

.reviews h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.divider {
  width: 420px;
  max-width: 100%;          /* não ultrapassa a tela */
  height: 2px;
  background: #d9ab1e;
  margin: 25px auto;
  position: relative;
}

.divider::before,
.divider::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 3px solid #d9ab1e;
  position: absolute;
  top: -6px;
  transform: rotate(45deg);
  background: #f7f4f1;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.reviews-subtitle {
  margin-bottom: 70px;
  font-size: 1.2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  align-items: start;
}

.review-card {
  border: 2px solid #d9ab1e;
  padding: 28px;
  text-align: left;
  transition: 0.3s ease;
  background: rgba(255,255,255,0.35);
}

.review-card:hover {
  transform: translateY(-5px);
}

.stars {
  color: #d9ab1e;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.review-card p {
  margin-bottom: 22px;
}

.review-author {
  color: #c79a1b;
  font-style: italic;
  font-weight: 600;
  text-decoration: underline;
}

/* -------- RESPONSIVO -------- */

/* Tablets: 2 colunas, textos um pouco menores */
@media (max-width: 1024px) {
  .reviews h2 {
    font-size: 2.4rem;
  }

  .reviews-subtitle {
    font-size: 1.05rem;
    margin-bottom: 50px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Celulares: 1 coluna, ajustes de margens e tamanhos */
@media (max-width: 640px) {
  .reviews {
    padding: 50px 16px;
  }

  .reviews h2 {
    font-size: 2rem;
  }

  .divider {
    width: 70%;         /* mais proporcional na tela pequena */
  }

  .reviews-subtitle {
    font-size: 0.95rem;
    margin-bottom: 36px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-card {
    padding: 20px;
  }

  .stars {
    font-size: 1.2rem;
  }
}







    #areas-de-atuacao {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    #areas-de-atuacao .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    #areas-de-atuacao .section-title {
      text-align: left;
      margin-bottom: 28px;
    }

    #areas-de-atuacao .section-title h2 {
      font-size: 4rem;
      color: #7b1f2f;
      margin-bottom: 4px;
      text-align: center;
    }

    #areas-de-atuacao .section-title p {
      font-size: 0.95rem;
      color: #777;
    }

    #areas-de-atuacao .cards-grid {
      display: grid;
      gap: 20px;
    }

    @media (min-width: 900px) {
      #areas-de-atuacao .cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (min-width: 600px) and (max-width: 899px) {
      #areas-de-atuacao .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    #areas-de-atuacao .card {
      background: #ffffff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(0,0,0,0.04);
    }

    #areas-de-atuacao .card-image {
      width: 100%;
      height: 190px;
      overflow: hidden;
    }

    #areas-de-atuacao .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    #areas-de-atuacao .card-body {
      padding: 18px 20px 22px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;     /* centraliza conteúdo horizontalmente */
      text-align: center;      /* centraliza texto */
    }

    #areas-de-atuacao .card-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #7b1f2f;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 4px;      /* espaço abaixo do ícone */
    }

    #areas-de-atuacao .card-icon svg {
      width: 24px;
      height: 24px;
      fill: #ffffff;
    }

    #areas-de-atuacao .card-title {
      font-size: 1.05rem;
      font-weight: 600;
      color: #333;
    }

    #areas-de-atuacao .card-text {
      font-size: 0.92rem;
      color: #555;
      line-height: 1.6;
    }


.contato-exalting {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Montserrat", sans-serif;
  background: #fff;
  padding: 80px 16px 90px;
}

.contato-exalting .container {
  max-width: 1120px;
  margin: 0 auto;
}

/* CABEÇALHO */
.contato-header {
  text-align: center;
  margin-bottom: 32px;
}

.contato-header h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

/* GRID PRINCIPAL */
.contato-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 24px;
  margin-top: 32px;
}

/* CARD BASE */
.contato-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 22px 24px 24px;
}

/* MAPA RESPONSIVO */
.contato-card iframe {
  width: 100% !important;
  max-width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* Texto do mapa */
.contato-card p {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #555;
}

/* COLUNA DIREITA – INFO / HORÁRIOS */
.contato-info-titulo {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #9d7a68;
  margin-bottom: 6px;
  font-weight: 700;
}

.contato-info-bloco {
  margin-bottom: 14px;
}

.contato-info-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d2830;
  margin-bottom: 2px;
}

.contato-info-texto {
  font-size: 0.9rem;
  color: #6b6f7b;
}

.contato-info-texto a {
  color: #6b6f7b;
  text-decoration: none;
}

.contato-info-texto a:hover {
  color: #111827;
}

.contato-info-linha {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #6b6f7b;
  margin-bottom: 4px;
}

.contato-info-linha strong {
  color: #2d2830;
  font-weight: 500;
}

/* QR Code responsivo */
.contato-card img {
  max-width: 160px;
  height: auto;
  display: block;
  margin-top: 10px;
}

/* ---------- RESPONSIVO: TABLET ---------- */
@media (max-width: 900px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .contato-card {
    padding: 22px 18px 24px;
  }
}

/* ---------- RESPONSIVO: CELULARES ---------- */
@media (max-width: 640px) {
  .contato-exalting {
    padding: 48px 14px 60px;
  }

  .contato-exalting .container {
    max-width: 100%;
  }

  .contato-header h1 {
    font-size: 1.7rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .contato-grid {
    gap: 18px;
    margin-top: 24px;
  }

  .contato-card {
    border-radius: 14px;
    padding: 18px 14px 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  }

  .contato-info-linha {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.87rem;
  }

  .contato-card iframe {
    height: 260px;
  }

  .contato-card img {
    max-width: 140px;
    margin-left: 0;  /* fica alinhado à esquerda dentro do card */
  }
}

/* ---------- RESPONSIVO: TELAS MUITO PEQUENAS ---------- */
@media (max-width: 400px) {
  .contato-header h1 {
    font-size: 1.5rem;
  }

  .contato-card {
    padding: 16px 12px 18px;
  }

  .contato-card iframe {
    height: 220px;
  }
}









  .history-container {
    max-width: 1200px;
    margin: 0 auto;
  background-color: #fff;
  }

.history-section h2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.05;
  color: #570304;
  margin-bottom: 8px; /* diminui espaço */
  text-align: center;

}

.history-subtitle {
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  color: #5c1d16;
  margin-bottom: 40px;
  line-height: 1.2;
  font-weight: 500;
}

  .history-text {
    max-width: 1100px;
  }

  .history-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: #5b4a48;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.5;
    font-weight: 300;
  }

  /* RESPONSIVO */

  @media (max-width: 1024px) {

    .history-section h2 {
      font-size: 3rem;
    }

  }

  @media (max-width: 768px) {

    .history-section {
      padding: 80px 7%;
    }

    .history-section h2 {
      font-size: 2.5rem;
      margin-bottom: 35px;
    }

    .history-text p {
      font-size: 1rem;
      line-height: 1.9;
    }

  }

  .institutional-section {
    padding: 110px 8%;
    position: relative;
  }

  .institutional-container {
    max-width: 1250px;
    margin: 0 auto;
  }

  .institutional-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
  }

  .institutional-text h2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.05;
    color: #5c1d16;
    margin-bottom: 8px;
  }

  .institutional-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #b58a1d;
    margin-bottom: 35px;
    line-height: 1.2;
  }

  .institutional-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #5b4a48;
    text-align: justify;
    margin-bottom: 22px;
  }

  .institutional-image {
    width: 100%;
    height: 560px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(122,13,6,0.5);
    font-size: 1rem;
  }

  /* RESPONSIVO */

  @media (max-width: 1024px) {

    .institutional-content {
      grid-template-columns: 1fr;
      gap: 50px;
    }

    .institutional-text h2 {
      font-size: 3rem;
    }

    .institutional-image {
      height: 420px;
    }

  }

  @media (max-width: 768px) {

    .institutional-section {
      padding: 80px 7%;
    }

    .institutional-text h2 {
      font-size: 2.5rem;
    }

    .institutional-subtitle {
      font-size: 1.3rem;
    }

    .institutional-text p {
      font-size: 1rem;
      line-height: 1.9;
    }

  }




      :root {
      --primary: #7b1f2f;
      --primary-light: #b8485d;
      --text: #2c2c2c;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

     #equipe-exalting {
      --primary: #7b1f2f;
      --primary-light: #b8485d;
      --text: #2c2c2c;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      padding: 40px 16px 48px;
    }

    #equipe-exalting .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    #equipe-exalting header {
      text-align: center;
      margin-bottom: 32px;
    }

    #equipe-exalting header h2 {
      color: var(--primary);
      margin-bottom: 8px;
      font-size: 4rem;
    }

    #equipe-exalting header p {
      max-width: 720px;
      margin: 0 auto;
      font-size: 0.98rem;
      color: #555;
    }

    #equipe-exalting .flow-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin: 24px auto 32px;
      flex-wrap: wrap;
      font-size: 0.8rem;
      color: #777;
    }

    #equipe-exalting .flow-bar span {
      white-space: nowrap;
    }

    #equipe-exalting .flow-bar .dot {
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: #bbb;
    }

    #equipe-exalting .areas-grid {
      display: grid;
      gap: 16px;
    }

    @media (min-width: 900px) {
      #equipe-exalting .areas-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }
    @media (min-width: 600px) and (max-width: 899px) {
      #equipe-exalting .areas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    #equipe-exalting .area-card {
      background: #fff;
      border-radius: 10px;
      padding: 18px 18px 16px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.04);
      border: 1px solid rgba(123, 31, 47, 0.08);
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
      overflow: hidden;
      transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
    }

    #equipe-exalting .area-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(123,31,47,0.05), transparent 55%);
      opacity: 0;
      transition: opacity 0.15s ease-out;
      pointer-events: none;
    }

    #equipe-exalting .area-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(0,0,0,0.08);
      border: solid 1px #570304;
    }

    #equipe-exalting .area-card:hover::before {
      opacity: 1;
    }

    #equipe-exalting .area-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 2px;
    }

    #equipe-exalting .area-title {
      font-weight: 700;
      font-size: 1.02rem;
      color: var(--primary);
      letter-spacing: 0.01em;
      text-transform: uppercase;
    }

    #equipe-exalting .area-tag {
      font-size: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #000;
      background: #f5e7ea;
      padding: 4px 8px;
      border-radius: 999px;
    }

    #equipe-exalting .area-desc {
      font-size: 0.9rem;
      color: #666;
    }

    #equipe-exalting .area-list {
      margin-top: 6px;
      list-style: none;
      font-size: 0.9rem;
      color: #333;
    }

    #equipe-exalting .area-list li {
      display: flex;
      gap: 6px;
      align-items: flex-start;
      margin-bottom: 4px;
    }

    #equipe-exalting .area-list li::before {
      content: "•";
      color: var(--primary-light);
      font-weight: 700;
      margin-top: 1px;
    }

    #equipe-exalting .area-level {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #999;
      margin-top: 4px;
    }

    #equipe-exalting .cta {
      margin-top: 32px;
      text-align: center;
    }

    #equipe-exalting .cta p {
      margin-bottom: 12px;
      font-size: 0.95rem;
      color: #555;
    }

    #equipe-exalting .cta button {
      border: none;
      background: var(--primary);
      color: #fff;
      padding: 10px 22px;
      border-radius: 999px;
      font-size: 0.9rem;
      cursor: pointer;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      transition: background 0.15s ease-out, transform 0.1s ease-out;
    }

    #equipe-exalting .cta button:hover {
      background: var(--primary-light);
      transform: translateY(-1px);
    }

    #equipe-exalting .cta button:active {
      transform: translateY(0);
    }

    #equipe-exalting .contact-hint {
      display: none;
      margin-top: 10px;
      font-size: 0.9rem;
      color: #333;
    }

    #equipe-exalting footer {
      margin-top: 40px;
      text-align: center;
      font-size: 0.8rem;
      color: #999;
    }

    .site-footer {
      background: #f9f0ea;
      color: #5b4a48;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      padding: 40px 0 18px;
      font-size: 0.88rem;
      border-top: 1px solid rgba(253,178,16,0.2);
    }

    .site-footer .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.2fr 1.2fr 1.1fr 1.1fr;
      gap: 32px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      padding-bottom: 26px;
    }

    /* COLUNA 1 – LOGO / DESCRIÇÃO */
    .footer-brand-name {
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .footer-brand-name span {
      color: #f6a623; /* cor de destaque, ajuste conforme sua marca */
    }

    .footer-brand-sub {
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .footer-description {
      color: #8d92a0;
      max-width: 380px;
      line-height: 1.6;
    }

    /* TÍTULOS DE COLUNA */
    .footer-heading {
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      color: #b27a79;
      margin-bottom: 14px;
    }

    /* LISTAS */
    .footer-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer p {
      font-size: 0.4rem;
    }
    .footer-list li {
      margin-bottom: 6px;
    }

    .footer-list a {
      text-decoration: none;
      color: #b0b4c0;
      font-size: 0.88rem;
      transition: color 0.16s ease;
    }

    .footer-list a:hover {
      color: #ffffff;
    }

    /* COLUNA CONTATO */
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
      color: #b0b4c0;
    }

    .footer-contact-icon {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: #f6a623;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      color: #101218;
      flex-shrink: 0;
    }

    .footer-contact-text a {
      color: #570304;
      text-decoration: none;
    }

    .footer-contact-text a:hover {
      color: #b27a79;
    }

    /* PARTE INFERIOR */
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 12px;
      padding-top: 14px;
      color: #7b8190;
      font-size: 0.8rem;
    }

    .footer-bottom a {
      color: #7b8190;
      text-decoration: none;
      margin-left: 14px;
    }

    .footer-bottom a:hover {
      color: #570304;
    }

    @media (max-width: 900px) {
      .footer-top {
        grid-template-columns: 1.8fr 1fr;
        row-gap: 24px;
      }
    }

    @media (max-width: 640px) {
      .footer-top {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-bottom a {
        margin-left: 0;
        margin-right: 12px;
      }
    }