/* =========================
   RESET & VARIÁVEIS
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --lilas: #E9DDFF;
  --roxo: #6C45B6;
  --verde: #5D9D96;

  --stripe-bg: #E9DDFF;
  --brand: #5D9D96;
  --speed: 28s;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #000;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: .8;
}

@font-face {
  font-family: 'Tan Mon Cheri';
  src: url('tan-mon-cheri.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}

/* =========================
   REVEAL ANIMATION (SCROLL)
========================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}

/* Direções – combinando com HTML: class="reveal left|right|up|down" */
.reveal.left {
  transform: translateX(-40px);
}

.reveal.right {
  transform: translateX(40px);
}

.reveal.up {
  transform: translateY(40px);
}

.reveal.down {
  transform: translateY(-40px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* animação de tabs (se quiser usar) */
.tab-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .65s ease, transform .65s ease;
}

.tab-fade-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   HERO
========================= */

html {
  scroll-behavior: smooth;
}

.hero {
  position: relative;
  width: 100%;
  padding: 1.5rem 0 3.5rem;
  background: #ffffff;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* topo: logo + menu */
.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* logo + nome */
.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 1.3rem;
}

.hero-logo img {
  width: clamp(52px, 7vw, 72px);
  height: auto;
}

.hero-brand {
  font-family: "tan mon cheri", serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, #5D9D96 0%, #52C7BE 40%, #52ccb8 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 18px;
}

/* menu */
.hero-menu ul {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin-top: 10px;
}

.hero-menu ul li a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #325a56;
  position: relative;
  transition: color .25s ease;
}

.hero-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5D9D96, #52C7BE);
  transition: width .25s ease;
}

.hero-menu ul li a:hover {
  color: #5D9D96;
}

.hero-menu ul li a:hover::after {
  width: 100%;
}

/* bloco principal */
.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
}

/* texto */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
}

.hero-kicker {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #52C7BE;
}

.hero-title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(2rem, 3.1vw, 2.7rem);
  font-weight: 600;
  line-height: 1.15;
  color: #111;
}

.hero-title span {
  color: #5D9D96;
}

.hero-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.98rem, 1.25vw, 1.05rem);
  line-height: 1.7;
  color: #333;
}

/* chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.hero-chips span {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(93, 157, 150, 0.08);
  border: 1px solid rgba(93, 157, 150, 0.25);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  font-weight: 500;
  color: #325a56;
}

/* CTA */
.hero-cta {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.hero-cta-secondary {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #4b847e;
  text-decoration: none;
}

.hero-cta-secondary:hover {
  text-decoration: underline;
}

/* foto */
.hero-photo {
  display: flex;
  justify-content: center;
}

.hero-photo-card {
  position: relative;

  /* tamanho + formato */
  width: min(430px, 72vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;

  /* contorno degradê */
  padding: 6px;
  /* borda */
  background: linear-gradient(135deg, #5D9D96, #6C45B6);
  /* sombra suave */
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);

  /* centralização da imagem */
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-photo-card::before {
  /* fundo interno do círculo */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5%;
  background: radial-gradient(circle at center,
      #E4F8F4 0%,
      /* verde bem clarinho no centro */
      #F6FFFD 40%,
      /* quase branco, transição suave */
      #FFFFFF 100%
      /* some nas bordas */
    );
  z-index: 1;
}

/* A imagem */
.hero-photo-card img {
  position: relative;
  z-index: 2;
  width: 120%;
  /* ligeiramente maior para “encher” o círculo */
  height: auto;
  object-fit: cover;

  transform: translateY(35%);
  /* DESCE a imagem mais */
}

/* glows de fundo */
.hero-bg {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.hero-bg--mint {
  top: -40px;
  right: -80px;
  background: #D7F3F0;
}

.hero-bg--lilac {
  bottom: -80px;
  left: -60px;
  
}

/* =========================
   BOTÃO GERAL
========================= */

.contactButton {
  position: relative;
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.buttonHome {
  padding: clamp(8px, 1.2vw, 12px) clamp(18px, 2vw, 26px);
  min-width: clamp(180px, 40vw, 240px);
  min-height: clamp(44px, 6vw, 52px);

  border-radius: 35px;
  border: 0;

  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.1rem);
  font-weight: 600;
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(90deg, rgba(93, 157, 150, .6), #5D9D96);
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);

  cursor: pointer;
  transition: .2s ease;
}


.buttonHome:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.hero-menu ul li a.active {
  color: #5D9D96;              /* verde ativo */
}



/* =========================
   MARQUEE / FAIXA LOGO
========================= */

.linhaMarquee {
  width: 100%;
  overflow: hidden;
  background-color: rgba(93, 157, 150, 0.08);
  padding: 10px 0;
}

.marqueeTrack {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee var(--speed) linear infinite;
}

.marqueeItem {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(3px);
}

.linhaLogo {
  width: clamp(24px, 4.5vw, 40px);
  height: auto;
}

.linhaText {
  background: linear-gradient(90deg, #4A837C 0%, #7EC2B8 45%, #5D9D96 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "tan mon cheri", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  white-space: nowrap;
  margin-top: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.linhaMarquee:hover .marqueeTrack {
  animation-play-state: paused;
}

/* =========================
   SOBRE – GIOVANNA
========================= */



.sobreOneImage img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.sobreOneText {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.titleSobreOne {
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.6rem);
  font-weight: 600;
  color: #000000;
  line-height: 1.2;
  white-space: nowrap;
}

.titleSobreOne span {
  color: #5D9D96;
}

.profile__regOne {
  color: #5D9D96;
  font-weight: 700;

}

.subtitleSobreOne {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #333;
  max-width: 90%;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.subtitleSobreOne strong {
  color: #5D9D96;
}

.textthree {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--verde);
}

/* CHECK LIST */
.checkSobreOne {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
  margin-top: 0.5rem;
}

.checkItemSobreOne {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkItemSobreOne img {
  width: 15px;
  height: 15px;
}

.checkItemTitleSobreOne {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #333;
}

/* =========================
   PERFIL – DAYANE
========================= */

.profile-dayane {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  text-align: left;
  gap: clamp(24px, 5vw, 56px);
  margin: 4rem auto 6rem;
}

/* Layout da Giovanna igual ao da Dayane */
.profile-gio {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  /* imagem primeiro */
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
  margin: 4rem auto 6rem;
}

.profile-gio__text {
  font-family: "Montserrat", sans-serif;
  color: #222;
}


.profile-dayane__text {
  font-family: "Montserrat", sans-serif;
  color: #222;
}

.profile__reg {
  color: #5D9D96;
  font-weight: 700;
  margin-bottom: .25rem;
}

.profile__title {
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.7rem, 2vw + 1rem, 2.4rem);
  line-height: 1.2;
  color: #000;
  margin-bottom: 1rem;
}

.profile__title span {
  color: #5D9D96;
  white-space: nowrap;
}

.profile__lead {
  font-size: clamp(1rem, 1.2vw + 0.3rem, 1.15rem);
  line-height: 1.6;
  color: #333;
  margin-bottom: .8rem;
}

.profile__lead strong {
  color: #5D9D96;
}

.profile__subtitle {
  font-size: clamp(1.05rem, 1.4vw + 0.2rem, 1.35rem);
  color: #5D9D96;
  font-weight: 700;
  margin: 1.2rem 0 .5rem;
}

.profile__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  gap: .45rem;
  grid-template-columns: repeat(2, minmax(260px, 1fr));

  color: #333;
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
}


.profile__list li::before {
  content: "✔";
  color: #5D9D96;
  margin-right: 8px;
  font-weight: 700;
}

/* CARD IMAGEM */
.image-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  box-shadow: 0 15px 15px rgba(0, 0, 0, .08);
  display: grid;
  place-items: center;
}

.image-card img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* =========================
   SERVIÇOS + TABS
========================= */

.servicos {
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.servicos__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.btn-servicos {
  display: flex;
  width: clamp(12rem, 35vw, 17rem);
  height: clamp(2.4rem, 8vw, 3.05rem);
  padding: 0.625rem 0 0.625rem 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  border-radius: 1.5625rem;
  border: 1px solid #5D9D96;
  background: #FFF;
  color: #5D9D96;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(.95rem, 2.5vw, 1.2rem);
  font-weight: 400;
  letter-spacing: .06rem;
}

/* ÍCONES DE CATEGORIA */
/* ÍCONES DE SERVIÇOS – GRID RESPONSIVO */
.servicos__icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  /* 4 lado a lado quando couber */
  gap: 2.5rem;
  justify-items: center;
  margin-top: 1.5rem;
}

/* Até 900px → fica 2x2 */
@media (max-width: 900px) {
  .servicos__icons {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 2rem;
  }
}

/* Telas bem pequenas (tipo celular pequeno) */
@media (max-width: 480px) {
  .servicos__icons {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    gap: 1.4rem;
  }
}



.servico-tab {
  -webkit-appearance: none;
  appearance: none;
  border: 1.5px solid #5D9D96;
  background: #ffffff;
  color: #5D9D96;
  border-radius: 0.875rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 6.5rem;
  height: 6.5rem;
  padding: 1.125rem 1.0625rem;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.servico-tab img {
  width: 38px;
  height: 38px;
  display: block;
  filter: brightness(0) saturate(100%) invert(50%) sepia(30%) saturate(350%) hue-rotate(120deg);
}

.servico-tab:hover {
  background: #e8f5f3;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(93, 157, 150, 0.2);
}

.servico-tab.is-active {
  background: #5D9D96;
  color: #fff;
  box-shadow: 0 8px 18px rgba(93, 157, 150, 0.35);
  border-color: #5D9D96;
}

.servico-tab.is-active img {
  filter: brightness(0) invert(1);
}

/* conteúdo */
.servicos__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: flex-start;
  gap: 3rem;
}

.servicos__texto {
  font-family: "Montserrat", sans-serif;
  color: #333;
}

.servico__titulo {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  color: #5D9D96;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.servico__descricao {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.servico__subtitulo,
.servico__subtituloTwo {
  color: #5D9D96;
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin-bottom: 0.5rem;
}


.servico__subtituloTwo {
  font-weight: 600;
}

.servico__lista {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
  gap: 5px;
}

/* NOVO CHECK — padrão igual ao usado no SOBRE */
.servico__lista li {
  position: relative;
  padding-left: 1.7rem;
  /* espaço proporcional para o ícone */
}

.servico__lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;

  width: clamp(14px, 2.4vw, 18px);
  height: clamp(14px, 2.4vw, 18px);

  background: url("checkImg.png") no-repeat center center;
  background-size: contain;
  display: block;
}


/* IMAGENS LADO DIREITO */
.servicos__imagens {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.servicos__imagens img {
  width: 90%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
}

/* painéis de aba */
.servico-panel[hidden] {
  display: none;
}

/* =========================
   FAQ
========================= */

.faq {
  gap: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.faq__title {
  color: #5D9D96;
  font-family: "tan mon cheri", serif;
  font-size: clamp(1.6rem, 4vw, 4.8rem);
  line-height: 1.1;
  font-weight: 100;
  text-align: center;
  white-space: nowrap;
}

/* grid 2 colunas */
.faq__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: flex-start;
}

.faq__item {
  flex: 1 1 calc(50% - 1rem);
  text-align: left;
  border-radius: 1.25rem;
  background: rgba(93, 157, 150, 0.2);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all .3s ease;
}

.faq__question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq__icon {
  font-size: 1rem;
  color: #5D9D96;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
  color: #3c736b;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  padding: 0 1.5rem;
  font-family: "Montserrat", sans-serif;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
  padding-bottom: 1rem;
}

/* =========================
   ATENDIMENTO ONLINE
========================= */

.atendimento-full {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  background: #ffffff;
  overflow: hidden;
}

.atendimento-hero {
  position: relative;
  width: 100vw;
  height: clamp(80px, 20vw, 140px);
  /* antes altura fixa */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}

.atendimento-bg {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  white-space: nowrap;
  line-height: 0.9;
  font-family: "Purple Purse", serif;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(93, 157, 150, 0.1);

  /* CORREÇÃO DO TAMANHO – RESPONSIVO DE VERDADE */
  font-size: clamp(3rem, 14vw, 9rem);

  /* CORREÇÃO DO ESPAÇAMENTO — RESPONSIVO TAMBÉM */
  letter-spacing: clamp(0.15rem, 0.6vw, 0.8rem);

  pointer-events: none;
  user-select: none;
  z-index: 0;
}


.atendimento-title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 2.2vw, 1.5rem);
  /* antes 1.7rem no máximo */
  line-height: 1.2;
  letter-spacing: 0.08rem;
  color: #5D9D96;
  letter-spacing: 0.125rem;
  margin-top: clamp(0.4rem, 1.2vw, 0.8rem);
}

.atendimento-inner {
  max-width: 1200px;
  margin-top: clamp(0.8rem, 2vw, 1.8rem);
  padding: 0 16px;

}

.atendimento-resumo {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  /* antes 1.1rem */
  line-height: 1.65;
  font-weight: 300;
  color: #000;
  letter-spacing: 0.08rem;
  line-height: 1.45;
  max-width: 720px;
  margin: 0 auto 0.8rem;

}

/* barra full width */
.atendimento-bar-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  display: flex;
  justify-content: flex-start;
}

.atendimento-bar {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
}

/* textos + botão */
.atendimento-inner--steps {
  display: flex;
  flex-direction: column;
}

.atendimento-textos {
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  color: #333;
  line-height: 1.7;
  margin-left: 180px;
  gap: 80px;
}

.atendimento-textos p {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  line-height: 1.7;
}

.atendimento-textos span {
  font-size: clamp(0.9rem, 1.7vw, 1.1rem);
  font-weight: 600;
  color: #5D9D96;
}

.atendimento-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  align-items: center;
  margin-left: 70px;
}

/* =========================
   CONTATO FINAL
========================= */

.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}

.sec-contato {
  background: #8BB8B2;
  padding: 4rem 0 2rem;
  color: #0e1917;
}

.contato-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.chip-como-funciona {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1.4rem;
  background: #fff;
  border-radius: 999px;
  color: #5D9D96;
  font-family: "Montserrat", sans-serif;
  font-size: .9rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.contato-title {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-family: "Source Serif 4", serif;
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.contato-text {
  font-family: "Montserrat", sans-serif;
  max-width: 430px;
  line-height: 1.6;
  font-size: .95rem;
}

.contato-right {
  display: flex;
  justify-content: center;
}

.contato-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.contato-btn .buttonHome {
  min-width: 280px;
  background: #5D9D96;
}

.contato-btn .setaIcon {
  position: absolute;
  right: -18px;
  width: 60px;
  height: 60px;
}

.contato-footer {
  border-top: 1px solid rgba(255, 255, 255, .4);
  margin-top: 2.5rem;
  padding-top: 1rem;
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  color: #0f2a27;
  font-family: "Montserrat", sans-serif;
  font-size: .85rem;
}

.contato-footer i {
  margin-right: .3rem;
}

/* =========================
   RESPONSIVIDADE
========================= */

/* TABLET / NOTEBOOK MÉDIO */
@media (max-width: 1024px) {
  body {
    font-size: 15px;
  }

  .container {
    padding-inline: 20px;
    max-width: 100%;
  }

  .hero-container {
    max-width: 100%;
  }


  .hero-menu {
    right: 24px;
  }

  .hero-menu ul {
    gap: 24px;
  }
}

/* ATÉ 900px – colunas viram 1 coluna, ajustes gerais */
@media (max-width: 900px) {
  .faq__item {
    flex-basis: 100%;
  }

  .sobreOne {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }

  .sobreOneText {
    align-items: center;
    text-align: left;
  }

  .subtitleSobreOne {
    max-width: 100%;
    text-align: left;

  }

  .checkSobreOne {
    grid-template-columns: 1fr;
  }

  .profile-dayane {
    display: flex;
    /* sobrescreve o grid */
    flex-direction: column-reverse;
    /* inverte a ordem: imagem vem antes do texto */
    gap: 2rem;
    align-items: center;
    text-align: left;
  }

  .profile__list {
    grid-template-columns: 1fr;
  }

  .image-card {
    margin-inline: auto;
    max-width: 520px;
  }

  .servicos {
    margin-top: 3rem;
    padding-inline: 1.5rem;
  }

  .servicos__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .servicos__imagens {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .servicos__imagens img {
    width: 45%;
  }

  .contato-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contato-right {
    justify-content: center;
  }

  .chip-como-funciona {
    margin-inline: auto;
  }

  .contato-text {
    max-width: 100%;
    margin-inline: auto;
  }

  .atendimento-hero {
    height: 210px;
  }

  .atendimento-bar {
    max-width: 100%;
  }

  .atendimento-inner--steps {
    text-align: left;
    gap: clamp(1rem, 2vw, 2rem);
  }
}

/* MOBILE / TABLET PEQUENO – layout vertical */
@media (max-width: 768px) {

  /* HERO MOBILE – deixa tudo em coluna */
  .hero {
    height: auto;
    padding: 20px 0 20px;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
  }

  .hero-logo {
    position: static;
    margin-top: 20px;
    margin-left: 16px;
  }



  .hero-menu {
    position: static;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }

  .hero-menu ul {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .hero-menu ul li a {
    font-size: 0.9rem;
    letter-spacing: .4px;
  }

  .hero-image {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
    pointer-events: none;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }

  .servicos__icons {
    gap: 1.5rem;
  }

  .servicos__texto {
    text-align: left;
  }

  .atendimento-hero {
    height: auto;
    padding: 3rem 1.5rem 2rem;
  }

  .atendimento-inner {
    padding-inline: 1.5rem;
  }

  .atendimento-textos {
    flex-direction: column;
    margin-left: 0;
    gap: 1.5rem;
    font-size: 0.9rem;
  }

  .faq {
    padding-inline: 1.5rem;
  }

  .faq__grid {
    width: 100%;
  }

  .sec-contato {
    padding: 3rem 0 2rem;
  }

  .contato-footer {
    padding-inline: 1.5rem;
    text-align: center;
  }
}

/* MOBILE BEM PEQUENO */
@media (max-width: 480px) {

  .hero {
    padding-top: 90px;
  }

  .hero-menu ul {
    justify-content: center;
  }

  .hero-menu ul li a {
    font-size: 0.7rem;
    letter-spacing: .3px;
  }

  .buttonHome {
    min-width: 220px;
    font-size: 0.95rem;
  }

  .setaIcon {
    right: -1.2rem;
    width: 2.8rem;
    height: 2.8rem;
  }

  .btn-servicos {
    width: 100%;
  }

  .servicos__icons {
    gap: 1rem;
  }

  .servico-tab {
    width: 5.5rem;
    height: 5.5rem;
    font-size: 0.7rem;
  }

  .linhaMarquee {
    padding-inline: 8px;

  }

  .atendimento-title {
    margin-top: 0.2rem;
    font-size: clamp(0.9rem, 3vw, 1.2rem);
  }

  .atendimento-bg {
    top: 58%;
    /* desce mais o fundo para ajustar */
  }


}

@media (max-width: 768px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}



.servico__titulo {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
}

p,
li {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.6;
}

.buttonHome {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
}

.chip-como-funciona {
  font-size: clamp(0.75rem, 1.6vw, 0.9rem);
}

/* RESPONSIVO — mobile empilha e mostra texto antes */
@media (max-width: 900px) {

  .profile-gio {
    display: flex;
    /* sobrescreve o grid */
    flex-direction: column-reverse;
    /* inverte a ordem: imagem vem antes do texto */
    gap: 2rem;
    align-items: center;
    padding-inline: 40px;

  }

  /* Inverter ordem no mobile */
  .profile-gio__text {
    order: 1;
  }

  .profile-gio__media {
    order: 2;
  }

  .profile__list {
    grid-template-columns: 1fr;
  }

  .image-card {
    margin-inline: auto;
    max-width: 520px;
  }
}

/* MOBILE MUITO PEQUENO – quando as imagens voltam a ficar uma abaixo da outra */
@media (max-width: 500px) {

  /* esconde somente a segunda imagem */
  .servicos__imagens img:nth-child(2) {
    display: none;
  }

  /* ajusta a primeira imagem para ficar bonita sozinha */
  .servicos__imagens img:first-child {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .servicos__imagens {
    justify-content: center;
  }
}

/* Esconde a barra steps abaixo de 768px */
@media (max-width: 768px) {
  .atendimento-bar-wrap {
    display: none;
  }
}

/* NOVOS CARDS DE PASSOS */
.atendimento-steps-cards {
  display: none;
  /* escondido por padrão no desktop */
}

@media (max-width: 768px) {
  .atendimento-steps-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;

  }

  /* cards */
  .step-card {
    background: #f7fcfb;
    border: 1px solid #d8ece9;
    border-radius: 16px;
    padding: 1.4rem 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .step-card-title {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 700;
    color: #5D9D96;
  }

  .step-card-text {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: #333;
    line-height: 1.55;
  }

  /* ícone pequeno opcional */
  .step-card i {
    font-size: 1.4rem;
    color: #5D9D96;
    margin-bottom: 0.3rem;
  }

  /* some com a barra */
  .atendimento-bar-wrap {
    display: none !important;
  }

  /* some com o bloco de textos antigos */
  .atendimento-textos {
    display: none !important;
  }
  .atendimento-cta {
    margin-left: 0 !important;
  }
}

.faq-btn {
  display: block;
  /* 🔥 garante que SEMPRE fica embaixo do texto */
  width: max-content;
  /* evita ficar muito largo */
  padding: 8px 18px;

  background: #5D9D96;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;

  border-radius: 999px;
  text-decoration: none;

  transition: 0.25s ease;
  margin-top: 0.8rem;
}


.faq-btn:hover {
  background: #4b847e;
  transform: translateY(-2px);
}

.whats-flutuante {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  background: #5D9D96;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.whats-flutuante img {
  width: 65px;
  height: 65px;
}

.whats-flutuante:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
}

/* RESPONSIVO MOBILE */
@media (max-width: 600px) {
  .whats-flutuante {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }

  .whats-flutuante img {
    width: 65px;
    height: 65px;
  }
}

/* ===================== */
/* ===== HERO NOVA ===== */
/* ===================== */



/* ===================== */
/* RESPONSIVO HERO       */
/* ===================== */

@media (max-width: 900px) {
  .hero-top {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-menu ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem 1.6rem;
    margin-top: 0px;
  }

  .hero-main {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    order: -1;
    /* foto primeiro no mobile, se preferir texto primeiro é só tirar essa linha */
  }

  .hero-inner {
    gap: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center; 
  }
  .hero-text {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 1.5rem;
  }

  .hero-top {
    align-items: center;
  }

  .hero-menu ul {
    justify-content: center;
  }


  .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-photo-card {
    width: min(320px, 80vw);
  }
}

/* ===== HERO CHIPS RESPONSIVO ===== */

/* 2 colunas (até 1002px) */
@media (max-width: 1002px) {
  .hero-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 0.75rem;
    justify-items: center;
  }

  .hero-chips > * {
    width: 100%;
    text-align: center;
  }
}

/* 1 por linha (até 550px) */
@media (max-width: 550px) {
  .hero-chips {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .faq__title {
    font-size: 1.35rem;  /* FICA MENOR */
  }
}

/* para telas MUITO pequenas */
@media (max-width: 420px) {
  .faq__title {
    font-size: 1.15rem;
  }
}

@media (max-width: 430px) {
  .hero-menu ul {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 0;
  }

  .hero-menu ul li {
    flex: 0 0 33%;
    /* cada item ocupa 1/3 da linha */
    text-align: center;
  }
}

@media (max-width: 365px) {
  .hero-break {
    display: block;
    text-align: center;
  }
}
