/* ===== Reset & base ===== */
*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: #e5e7eb; }
html { background: #1C1817; scroll-behavior: smooth; line-height: 1.5; -webkit-text-size-adjust: 100%; font-family: 'Inter', ui-sans-serif, system-ui, sans-serif; }

::selection {
  background-color: rgba(180, 140, 100, 0.4);
  color: #ffffff;
}

body { 
  margin: 0; 
  line-height: inherit; 
  font-family: 'Inter', sans-serif; 

  background: #ebe8e5;
  color: #f4f4f5; 
}


/* ANIMACAO CARACTERES GSAP*/
.char {
  display: inline-block;
  transform-origin: center;
  perspective: 1000px;
}
.word {
  transition: 1s;
  display: inline-block;
  white-space: nowrap; /* evita quebra no meio da palavra (letras em spans .char) */
  transform-origin: center;
  perspective: 1000px;
}

/* estado final quando ativa */
.luzImg.ativa,
.maquinaImg.ativa,
.anaImg.ativa {
  transform: translate(0, 0);
}

button { font-family: inherit; font-size: 100%; font-weight: inherit; line-height: inherit; color: inherit; margin: 0; padding: 0; text-transform: none; -webkit-appearance: button; background-color: transparent; background-image: none; cursor: pointer; }
svg { display: block; vertical-align: middle; }
a { color: inherit; text-decoration: inherit; }

/* ===== Header ===== */
.header { 
    width: 100%; 
    background-color: #f9f6f4; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    padding: 16px 0; 
}

.header-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
.logo img { height: 35px; width: auto; margin: 0px;}
.nav { display: flex; gap: 32px; }
.nav a {
    text-decoration: none;
    color: #6b5d5f;
    font-size: 14px;
}

.nav a:hover {
    opacity: 0.85;
    color: #B07888;
}

/* Botão hambúrguer — fica oculto no desktop, só aparece no breakpoint mobile */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: transparent;
    color: #36332c;
    flex-shrink: 0;
}

.nav-toggle:hover { opacity: 0.8; }

/* ===== Hero ===== */
.herosection {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 80vh;
  width: 100%;
background-image: url('assets/bgAnahero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin: 0;
  border-radius: 0px 0px 60px 60px;
}





.herocontainer {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.heroleft {

  width: 45%;
  height: 80vh;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
  transform: translateX(100px);
}

.heroleft .eyebrow {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #998A8F;
  margin-bottom: 10px;
  font-weight: 500;
}

.heroleft h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #BF8E89;
  margin: 0;
}

.heroleft p {
  font-size: 14px;
  line-height: 1.6;
  color: #9f9396;
  margin-bottom: 30px;
  max-width: 42ch;
}

.heroright {
  width: 55%;
  padding: 0;
  position: relative;
  align-self: stretch;
}

.heroright img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-20%);
  /* escala dinâmica: nunca menor que 460px, cresce com a viewport
     (40vw) e limita em 820px em telas muito largas */
  width: clamp(410px, 36vw, 740px);
  height: auto;
  display: block;
}


/* =========================================================
   Botões do design system (.btn-primary, .btn-secondary,
   .btn-white, .btn-lift, .btn-scale)
   ========================================================= */

/* ---- .btn-primary — rose gradient call-to-action button (#BF8E89) ---- */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: radial-gradient(circle at 10% 0%, #dcbdb8 0%, #BF8E89 100%);
box-shadow:
  0 15px 25px -10px rgba(191, 142, 137, 0.65),
  inset 0 4px 8px rgba(230, 200, 195, 0.9),
  inset 0 -4px 8px rgba(160, 110, 105, 0.9),
  0 20px 25px -5px rgb(0 0 0 / 0.1);
transition:
  box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1),
  transform 150ms cubic-bezier(0.4, 0, 0.2, 1),
  background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background-color: #000;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  transform: translateY(-0.125rem);
}

.btn-primary--disabled,
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-primary--disabled:hover,
.btn-primary:disabled:hover {
  transform: translateY(0);
  background: radial-gradient(circle at 10% 0%, #dcbdb8 0%, #BF8E89 100%);
  box-shadow:
    0 15px 25px -10px rgba(191, 142, 137, 0.65),
    inset 0 4px 8px rgba(230, 200, 195, 0.9),
    inset 0 -4px 8px rgba(160, 110, 105, 0.9);
}

.btn-primary__label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #efede9;
}

.btn-primary__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: rgb(0 0 0 / 0.1);
  padding: 0.25rem 0.75rem;
}

.btn-primary__icon { transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1); }
.btn-primary:hover .btn-primary__icon { transform: translateX(0.25rem); }

/* ---- .btn-secondary — glass pill button with gradient border ---- */
.btn-secondary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #e5e7eb;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.751), rgba(255, 255, 255, 0.751), rgba(255, 255, 255, 0.751));
  box-shadow:
    0px 0px 0px 1px rgba(0,0,0,0.06),
    0px 1px 1px -0.5px rgba(0,0,0,0.06),
    0px 3px 3px -1.5px rgba(0,0,0,0.06),
    0px 6px 6px -3px rgba(0,0,0,0.06),
    0px 12px 12px -6px rgba(0,0,0,0.06),
    0px 24px 24px -12px rgba(0,0,0,0.06),
    0 18px 35px rgba(31, 41, 55, 0.101),
    0 0 0 1px rgba(209, 213, 219, 0.117);
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 9999px;
  -webkit-mask: linear-gradient(#ffffff4a 0 0) content-box, linear-gradient(#0000002e 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.8));
  pointer-events: none;
}

.btn-secondary:hover { background-color: #fafafa; }

.btn-secondary--compact {
  border-radius: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.025em;
}

.btn-secondary--round {
  padding: 0.75rem;
  width: 40px;
  height: 40px;
  justify-content: center;
}

.btn-secondary--compact::before { border-radius: 0.5rem; }

.btn-secondary__label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #998a8f;
}

.btn-secondary__label--compact {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #998a8f;
}

.btn-secondary__icon { color: #BF8E89; transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1); }
.btn-secondary:hover .btn-secondary__icon { transform: translateX(0.25rem); }

/* ---- botão "Contato" do cabeçalho — cor de destaque da marca ---- */
.header .btn-secondary {
  background-image: none;
  background-color: #BF8E89;
}

.header .btn-secondary::before { display: none; }

.header .btn-secondary:hover { background-color: #a97a75; }

.header .btn-secondary .btn-secondary__label { color: #ffffff; }

.header .btn-secondary .btn-secondary__icon { color: #ffffff; }

/* ---- .btn-white — light pill button for dark surfaces ---- */
.btn-white {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  border-radius: 9999px;
  padding: 0.65rem 1.4rem;
  background-color: #2d2822;
  color: #f5f0e8;
  font-size: 0.675rem;
  font-weight: 500;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transition: box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1), background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-white:hover {
  background-color: #221e19;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  transform: translateY(-0.125rem);
}

.btn-white__icon { transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1); }
.btn-white:hover .btn-white__icon { transform: translateX(0.25rem); }

/* ---- .btn-lift — card-style button that lifts on hover ---- */
.btn-lift {
  background-color: #fff;
  border-width: 1px;
  border-color: #e4e4e7;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: left;
  transition: box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-lift:hover {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  transform: translateY(-0.125rem);
}

.btn-lift__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #18181b;
}

/* ---- .btn-scale — card-style button with an internal swatch ---- */
.btn-scale {
  background-color: #fff;
  border-width: 1px;
  border-color: #e4e4e7;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
}

.btn-scale__swatch {
  width: 4rem;
  height: 4rem;
  background-color: #18181b;
  border-radius: 0.5rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-scale:hover .btn-scale__swatch { transform: scale(1.1); }

.btn-scale__label {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #18181b;
}

/* =========================================================
   Showcase de botões (buttons.html) — fundo claro escopado
   no .page-wrap para não afetar a landing de fundo escuro.
   ========================================================= */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  background: #f4f4f5;
  color: #18181b;
}
.page-title { font-size: 2.25rem; font-weight: 500; letter-spacing: -0.025em; color: #18181b; margin-bottom: 0.5rem; }
.page-subtitle { font-size: 0.875rem; color: #71717a; margin-bottom: 3rem; }
.group-block { margin-bottom: 3.5rem; }
.group-block--dark { background: #18181b; border-radius: 1rem; padding: 2rem; }
.group-title { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; color: #18181b; margin-bottom: 1.5rem; }
.group-title--on-dark { color: #fff; }
.variant-row { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: flex-start; }
.variant-cell { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.variant-label { font-size: 0.75rem; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: #a1a1aa; text-transform: uppercase; letter-spacing: 0.05em; }
.variant-label--on-dark { color: #71717a; }


/* =========================================================
   Carrossel de logos de convenios
   ========================================================= */




.convenios {
  padding: 2rem 0;
  width: 100%;
  max-width: 1100px;
  margin: -50px auto 0;   /* negativo sobe, auto centraliza */
  background: linear-gradient(90deg,#e7e3e178 0%,#e5e0dc78 100%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.167);
  border-radius: 100px;    /* opcional — fica bem como card flutuante */
  position: relative;
  z-index: 2;             /* fica acima da hero */
}

.convenios-container {
  width: 100%;
}

.logos-wrapper {
  display: flex;
  padding: 10px;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.logos-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
}

.logo-item {
  height: 50px;
  width: auto;
  margin: 0 1.5rem;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.3;

}




/* Animação de entrada (fade + slide up + blur) */
@keyframes animationIn {
  0%   { opacity: 0; transform: translateY(30px); filter: blur(10px); }
  100% { opacity: 1; transform: translateY(0);    filter: blur(0px); }
}

/* 2. Classe base */
.fade-in {
  opacity: 0;                                   /* evita "flash" antes de animar */
  animation: animationIn 0.8s ease-out both;
}

/* Variação para a imagem da hero: preserva o translateX(-50%) da centralização */
@keyframes animationInHero {
  0%   { opacity: 0; transform: translateX(-50%) translateY(30px); filter: blur(10px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0);    filter: blur(0px); }
}

.heroright img.fade-in {
  animation-name: animationInHero;
}

.heroright img:not(.elementoHero) {
  z-index: 2;
}

.heroright img.elementoHero {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -8%;
  height: 100%;
  width: auto;
  z-index: 1;
}

.heroright img.elementoHero.fade-in {
  animation-name: animationInHeroElemento;
}

@keyframes animationInHeroElemento {
  0%   { opacity: 0; transform: translateY(30px); filter: blur(10px); }
  100% { opacity: 1; transform: translateY(0);    filter: blur(6px); }
}

/* 3. Delays em cascata (um elemento aparece depois do outro) */
.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.delay-3 { animation-delay: 0.3s; }
.fade-in.delay-4 { animation-delay: 0.4s; }
.fade-in.delay-5 { animation-delay: 0.5s; }
.fade-in.delay-6 { animation-delay: 0.7s; }

/* 4. Acessibilidade: respeita quem desativou animações no sistema */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    animation: none;
    opacity: 1;
  }
}

.servicos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
  padding: 14rem 0px 14rem 0px;
  margin-top: -120px;
}

.servicos p {
   font-size: 14px;
  text-align: center;
  width: 300px;
  line-height: 1.6;
  color: #9f9396;
  max-width: 42ch;
  margin-bottom: 70px;
}

.servicos .eyebrow {
  font-size: 9px;
  letter-spacing: 1em;
  text-transform: uppercase;
  color: #B07888;
  margin-bottom: 0px;
  font-weight: 500;
}

.servicos h2 {
font-size: 30px;;
  max-width: 12ch;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 700;
  color:#998a8f;
  margin-top: 20px;
  margin-bottom:0px;
}
.embla { overflow: hidden; width: 100%; margin: 0 auto; }
/* O espaçamento entre cards vive no padding-left de cada slide (não em gap),
   pra que o intervalo seja preservado também na emenda do loop infinito.
   O margin-left negativo do container compensa o padding do primeiro slide. */
.embla__container { display: flex; margin-left: -1.5rem; }
.embla__slide { padding-left: 1.5rem; min-width: 0; }
/* Desktop: 3 visíveis + espiada do próximo */
.embla__slide { flex: 0 0 30%; }
/* Tablet: 2 cards + espiada do próximo */
@media (max-width: 1024px) {
  .embla__slide { flex: 0 0 45%; }
}
.embla__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.75rem; }
.embla__dot { width: 6px; height: 6px; border-radius: 9999px; background: rgba(118, 115, 107, 0.25); border: none; cursor: pointer; transition: background 250ms ease, width 250ms ease; padding: 0; }
.embla__dot.ativo { background: #c56a7c; width: 20px; }

.servicos-item {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  width: 100%;
  height: 250px;
  border-radius: 35px;
  border: 1px solid #ead2d770;
  background: radial-gradient(circle at 10% 0%, #F8F7F5 0%, #BAAEB1 100%);

}

.servico-img {
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  height: 100%;
  z-index: 10;
}

.servico-img:has(img[alt="Preenchimento com ácido hialurônico"]) {
  transform: scaleX(-1);
}

.servico-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  transition: transform 2000ms ease;
}

/* zoom sutil no hover em vez de deslocar (translateX expunha uma faixa vazia,
   já que a imagem já preenche a caixa exatamente com object-fit:cover) */
.servicos-item:hover .servico-img img {
  transform: scale(1.06);
}

.servico-right {
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  text-align: right;
  padding: 25px;
  box-sizing: border-box;
}

.servico-right p {
  width: 100%;          /* anula o width: 300px de .servicos p */
  font-size: 20px;
  text-align: right;
  font-weight: 500;
  color: #998A8F;
  margin: 0;
  line-height: 1;
  overflow-wrap: anywhere;
}

.sobre {
  background-color: #BF8E89;
  border-radius: 60px 60px 0px 0px;
  z-index: 3;
  margin-top: -40px;
}
.sobre-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: auto;
  width: 100%;
  max-width: 1200px;
  padding: 5rem 0;
  z-index: 3;
}

.sobre-container-filho {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 550px;
  width: 100%;
  border-radius: 60px;
  background: #F9F6F4;
  border: 1px solid #ffffffd1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.129);
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 20px;
}

.sobre-left {
  width: 40%;
  padding: 0px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0px;
  border-radius: 60px;
  position: relative; /* adiciona aqui */
  transform: translateX(-200px);
  transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.sobre-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/elemento2sobre.png');
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  border-radius: 30px 0px 0px 30px;
  z-index: 2;
  pointer-events: none;
}

.sobre-left.ativa {
  transform: translateX(0);
}


.sobre-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 30px 0px 0px 30px;
  position: absolute;
}

/* estado inicial */
.luzImg {
  transform: translateY(-80px);
  filter: blur(2px);
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.3s ease;
  z-index: 1;
}

.maquinaImg {
  transform: translateX(-80px);
  filter: blur(3px);
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, opacity 1.3s ease 0.2s;
  z-index: 3;
}

.anaImg {
  transform: translateY(80px);
  transition: transform 2.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s, opacity 1.3s ease 0.4s;
  z-index: 4;
}

.sobre-left .anaImg {
  object-fit: cover;
  object-position: center 20%;
}

.sobre-right {
  width: 60%;
  padding: 20px  6%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
}

.sobre-right .eyebrow {
  font-size: 9px;
  letter-spacing: 2em;
  text-transform: uppercase;
  color: #B07888;
  margin-bottom: 10px;
  font-weight: 500;
}

.sobretitulo {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #998a8f;
  margin: 0;
}

.sobre-right p {
  font-size: 14px;
  line-height: 1.6;
  color:#9f9396;
  margin-bottom: 30px;
}

.infoAna {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  height: auto;
  margin: auto;
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
  z-index: 6;
  padding: 20px;
}
.corpo {
  padding: 0px 4rem;
}
.infoAna-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 6% 4%;
  background-color:  #eceae255;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #ffffff1c;
  border-radius: 20px;
  height: 60px;
  width: auto;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.038);
}

.infoAna-item h4 {
  font-size: 10px;
  font-weight: 600;
  color: #6b5d5f;
  margin: 0px;
}

.infoAna-item h5 {
  font-size: 14px;
  color: #36332c;
  font-weight: 400;
  letter-spacing: -1px;
  margin: 0px;

}

.infoAna > * {
  transform: translateY(90px);
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.infoAna > *:nth-child(1) { transition-delay: 0.45s; }
.infoAna > *:nth-child(2) { transition-delay: 0.60s; }
.infoAna > *:nth-child(3) { transition-delay: 0.75s; }

.infoAna > *.ativa {
  transform: translateY(0);
}


.depoimentos {
  height: auto;
  min-height: 20vh;
  z-index: 10;
  margin: 0px;
  border-radius: 0px 0px 60px 60px;
  padding: 8rem 20px 3rem 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.depoimentos-pai {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0px;
}

.depoimentos h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.0rem);
  line-height: 1;
  text-align: center;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #998a8f;
  margin: 0;
}

.depoimentoscor {
  color: #998a8f;
}

.depoimentos .eyebrow {
  font-size: 9px;
  letter-spacing: 2em;
  text-transform: uppercase;
  color: #B07888;
  margin-bottom: 10px;
  font-weight: 500;
}

.depoimentos-left {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
  margin-bottom: 40px;
}

/* =============================================
   Mosaico de depoimentos — troca aleatória individual
============================================= */

.depoimentos-right {
  width: 100%;
  margin-top: 2.5rem;
}

.depoimentos-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards no desktop */
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
}

.depoimento-cell {
  position: relative;
  aspect-ratio: 700 / 320; /* proporção do print de depoimento */
  /* sem overflow:hidden e sem background — a imagem se move livremente,
     sem moldura recortada nem cor atrás dando aspecto de caixa estática */
}

.depoimento-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  opacity: 1;
  transform: translateY(0) scale(1);
  /* easing suave e duração longa pro movimento ficar lento e fluido */
  transition:
    transform 1800ms cubic-bezier(0.65, 0, 0.35, 1),
    opacity 1800ms cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform, opacity;
}

/* imagem saindo — desliza pra baixo, encolhe e desaparece */
.depoimento-cell img.exiting {
  opacity: 0;
  transform: translateY(40%) scale(0.92);
}

/* imagem entrando — vem de cima, deslizando e surgindo */
.depoimento-cell img.entering {
  opacity: 0;
  transform: translateY(-40%) scale(0.96);
}

/* respeita preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .depoimento-cell img {
    transition: none;
  }
}
/* =============================================
   Responsivo — depoimentos
============================================= */

@media (max-width: 768px) {

  

  .depoimentos-left {
  gap: 0;
  margin-bottom: 0px;
  padding: 0px;
  }

  .depoimentos-row {
    grid-template-columns: repeat(1, 1fr); /* 1 card no mobile */
  }

  .depoimento-cell:nth-child(n + 2) {
    display: none; /* esconde os demais cards no mobile */
  }

  .depoimentos {
  height: auto;
  min-height: 30vh;
  z-index: 0;
  margin: 0px;
  padding: 60px 30px 45px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.depoimentos-pai {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0px;
}
.depoimentos h2 {
  font-size: clamp(1.6rem, 7vw, 2.2rem);
  line-height: 1.15;
  text-align: left;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #998a8f;
  padding: 20px 0px 0px 0px;
  margin-top: 0px;
}
}

.localizacao {
  background-color: #BF8E89;
  z-index: 3;
  border-radius: 0px 0px 60px 60px;
  margin-top: -40px;
}

.loc-pai{
  display: flex;
  gap: 15px;
  width: 95%;
  margin: 30px 0px;
}

.loc-filho{
  flex: 1;
  padding: 0px 20px;
  background:#dfd8d016;
  border-radius: 25px;
  border: solid 1px #c7c2bc54;
}

.loc-filho:hover{
  flex: 1;
  padding: 0px 20px;
  background:#8e7f6e6b;
  border-radius: 25px;
  border: solid 1px #c7c2bc54;
}

.loc-filho h4 {
  font-size: 20px;;
  text-align: left;
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 700;
  color:#36332c;
  margin-top: 20px;
  margin-bottom:0px;

}

.localizacao-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: auto;
  width: 100%;
  max-width: 1200px;
  padding: 2rem 20px 6rem 20px;
  z-index: 3;
}

.localizacao-container-filho {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 550px;
  width: 100%;
  border-radius: 60px;
  background: #F9F6F4;
  border: 1px solid #ffffffd1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.129);
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 20px;
}

.localizacao-container-filho {
  display: flex;
  padding: 20px;
}                                    /* ← fim da regra na linha 1034 */

/* Desktop: inverte left/right (no mobile fica na ordem normal) */
@media (min-width: 769px) {
  .localizacao-container-filho {
    flex-direction: row-reverse;
  }
}



.localizacao-left {
  width: 40%;
  padding: 0px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0px;
  background-image:
    url('assets/bgLoc.png');
    border-radius: 60px;
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  position: relative; /* adiciona aqui */
  transform: translateX(200px);
  transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.localizacao-container-filho.ativo7 .localizacao-left {
  transform: translateX(0);
}


.localizacao-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  border-radius: 30px 0px 0px 30px;
  position: absolute;
}

/* estado inicial */
.direitaImg {
  transform: translateX(+100px);
  mix-blend-mode: screen;
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.3s ease;
  z-index: 5;
  scale: 1.5;
  opacity: 0.7;
}

.esquerdaImg {
  transform: translateX(-80px);
  filter: blur(3px);
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, opacity 1.3s ease 0.2s;
}

.predioImg {
  transform: translateY(80px);
  transition: transform 2.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s, opacity 1.3s ease 0.4s;
  z-index: 4;
}

.localizacao-left .predioImg {
  object-fit: cover;
  object-position: center;
}

/* estado final quando ativa */
.localizacao-container-filho.ativo7 .direitaImg {
  transform: translateX(0px);
  mix-blend-mode: screen;
  filter: blur(0);
}

.localizacao-container-filho.ativo7 .esquerdaImg {
  transform: translateX(0);
  mix-blend-mode: screen;
  filter: blur(0);
}

.localizacao-container-filho.ativo7 .predioImg {
  transform: translateY(0);
}

.localizacao-right {
  width: 60%;
  padding: 20px  6%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
}

.localizacao-right .eyebrow {
  font-size: 9px;
  letter-spacing: 2em;
  text-transform: uppercase;
  color: #B07888;
  margin-bottom: 10px;
  font-weight: 500;
}

.locsobretitulo {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #998a8f;
  margin: 0;
}

.localizacao-right p {
  font-size: 12px;
  line-height: 1.4;
  color: #9f9396;
  margin-bottom: 30px;
}

.faq {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-radius: 60px 60px 0px 0px;
  margin-top: 70px;
  padding: 6rem 20px;
  background: #BF8E89;
}
.faqbutton {
  margin: 40px auto auto auto;
  width: 300px;
  background: #ffffff;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.faqbutton:hover {
  background-color: #ffffff;
}

.faqbutton .btn-primary__label {
  color: #BF8E89;
}

.faqbutton .btn-primary__icon-wrap {
  background-color: rgba(191, 142, 137, 0.12);
}

.faqbutton .btn-primary__icon {
  color: #BF8E89;
}
.faq-container {
  width: 100%;
  max-width: 720px;
  padding: 0px 10px;
}

.faq-sobretitulo {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 10px;
  font-weight: 500;
}

.faq-titulo {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 2.5rem;
}

.faq-filho {
  width: 100%;
  border-radius: 60px;
  background: #F9F6F4;
  border: 1px solid #ffffffcf;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.129);
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 40px 60px;
}

/* cada caixa de pergunta */
.faq-item {
  border-bottom: 1px solid rgba(42, 37, 34, 0.15);
}

/* a pergunta (parte clicável) */
.faq-pergunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;            /* remove a setinha padrão (Firefox) */
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  color: #2a2522;
  transition: color 200ms ease;
}

.faq-pergunta::-webkit-details-marker {
  display: none;               /* remove a setinha padrão (Safari/Chrome) */
}

.faq-pergunta:hover {
  color: #A7835F;
}

/* a seta que gira ao abrir */
.faq-icone {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #A7835F;
  transition: transform 250ms ease;
}

.faq-item.is-open .faq-icone {
  transform: rotate(180deg);
}

/* a resposta — animação suave de abertura via grid */
.faq-resposta {
  display: grid;
  grid-template-rows: 0fr;            /* fechado: altura 0, mas animável */
  overflow: hidden;
  color: rgba(42, 37, 34, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0;
  transition: grid-template-rows 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 300ms ease;
}

.faq-item.is-open .faq-resposta {
  grid-template-rows: 1fr;            /* aberto: expande suavemente */
  opacity: 1;
}

/* o wrapper interno precisa de min-height: 0 para o grid colapsar */
.faq-resposta p {
  min-height: 0;
  margin: 0;
  padding-bottom: 1.4rem;
}





.scroll-txt2{
    letter-spacing: -1em !important;
    filter: blur(12px);
    opacity: 0;
    transition: 1.8s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition-delay: 0.5s !important;
}
.ativo7.scroll-txt2{
     letter-spacing: 0em !important;
    filter: blur(0px);
    opacity: 1;
    transition: 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition-delay: 0s;
}
.perspectiva{
    transition: 5s !important;
 transform: perspective(100rem) translate3d(0, 0, -5rem) rotateX(-50deg) scale(1, 1);
}
.ativo7.perspectiva{
    transition: 5s !important;
transform: perspective(100rem) translate3d(0, 0, -5rem) rotateX(0deg) scale(1, 1);
}
.scroll-left{
    opacity: 0;
    transition: 0.9s;
    filter: blur(10px);
    transform: translate(-30px, 0);
}
.scroll-left2{
    opacity: 0;
    transition: 0.3s;
    transform: translate(-30px, 0);
}
.scroll-right{
    opacity: 0;
    transition: 0.9s;
    filter: blur(10px);
    transform: translate(30px, 0);
}
.scroll-right2{
    opacity: 0;
    transition: 0.3s;
    transform: translate(30px, 0);
}
.scroll-bottom{
    opacity: 0;
    transition: 0.9s;
    filter: blur(10px);
    transform: translate(0, -30px);
}
.scroll-bottom2{
    opacity: 0;
    transition: 0.3s;
    transform: translate(0, -30px);
}

.scroll-bottom3{
    opacity: 0;
    transition: 0.6s;
    transform: translate(0, -30px);
    transition-delay: 0.6s !important;
}

.scroll-bottom4{
    opacity: 0;
    transition: 0.6s;
    transform: translate(0, -30px);
    transition-delay: 1.2s !important;
}

.scroll-bottom5{
    opacity: 0;
    transition: 0.6s;
    transform: translate(0, -30px);
    transition-delay: 1.8s !important;
}

.scroll-top{
    opacity: 0;
    transition: 0.9s;
    filter: blur(5px);
    transform: translate(0, 30px);
}
.scroll-top2{
    opacity: 0;
    transition: 0.3s;
    transform: translate(0, 30px);
}

.scroll-top3{
    opacity: 0;
    transition: 0.3s;
    transform: translate(0, 30px);
    transition-delay: 0.4s !important;
}

.scroll-top4{
    opacity: 0;
    transition: 0.3s;
    transform: translate(0, 30px);
    transition-delay: 0.8s !important;
}
.l1{
    opacity: 0;
    transition: 1.4s !important;
}
.l2{
    opacity: 0;
    transition: 1.4s !important;
    transition-delay: 0.2s !important;
}
.l3{
    opacity: 0;
    transition: 1.4s !important;
    transition-delay: 0.9s !important;
}
.l4{
    opacity: 0;
    transition: 1.4s !important;
    transition-delay: 0.7s !important;
}
.l5{
    opacity: 0;
    transition: 1.4s !important;
    transition-delay: 0.5s !important;
}
.l6{
    opacity: 0;
    transition: 1.4s !important;
    transition-delay: 0.6s !important;
}
.l7{
    opacity: 0;
    transition: 1.4s !important;
    transition-delay: 0.4s !important;
}
.l8{
    opacity: 0;
    transition: 1.4s !important;
    transition-delay: 0.8s !important;
}
.l9{
    opacity: 0;
    transition: 1.4s !important;
    transition-delay: 0.3s !important;
}
.l10{
    opacity: 0;
    transition: 1.4s !important;
    transition-delay: 0.3s !important;
}
.ativo7{
    opacity: 1;
    transition: 0.9s;
    filter: blur(0px);
    transform: translate(0, 0px);
    transition-delay: 0s;
}

/* sobe ao scrollar — apenas translate, sem blur e sem opacity */
.scroll-up{
    transform: translate(0, 180px);
    transition: transform 3s cubic-bezier(0.22, 1, 0.36, 1);
  
}
.ativo7.scroll-up{
    transform: translate(0, 0);
    filter: none;
    opacity: 1;
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {

  /* Mobile: 1 card + espiada do próximo */
  .embla__slide { flex: 0 0 85%; }

  .herosection {
    border-radius: 0px 0px 0px 0px;
  }
.faqbutton {
  margin: 30px auto auto auto;
  width: 250px;
}

.loc-pai{
  display: flex;
  gap: 15px;
  width: 100%;
  margin: 10px 0px 20px 0px;
}

.loc-filho{
  flex: 1;
  padding: 0px 20px 0px 20px;
  background:#dfd8d016;
  border-radius: 25px;
  border: solid 1px #c7c2bc54;
}

.loc-filho h4 {
  font-size: 16px;
  text-align: left;
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 700;
  color:#36332c;
  margin-top: 20px;
  margin-bottom:0px;

}


.faq {
  min-height: auto;
  margin-top: 40px;
  padding: 4rem 20px;
  border-radius: 40px;
  background: #BF8E89;
}

.corpo {
  padding: 0px;
}
  .herocontainer {
    flex-direction: column;
    gap: 2rem;
    height: auto;
    min-height: 80vh;
    margin: 0px;
    padding: 0px 20px;

}

  .heroleft, .heroright {
    width: 100%;
}

  /* Em flex-direction:column, align-self:stretch não afeta a altura —
     sem isto, .heroright fica com altura 0 (só tem filhos position:absolute)
     e a foto/anel decorativo "sobem" por cima do texto. Reserva a altura
     aproximada da foto (clamp acompanha a largura em qualquer viewport). */
  .heroright {
    min-height: clamp(300px, 104vw, 622px);
  }

  /* Menu mobile: painel suspenso acionado pelo botão hambúrguer */
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #f9f6f4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12);
    padding: 8px 20px 20px;
    z-index: 50;

    /* estado fechado: escondido sem remover do layout de forma abrupta */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    transition: max-height 280ms ease, opacity 200ms ease;
  }

  .nav.nav--open {
    max-height: 70vh;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav a {
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav a:last-child { border-bottom: none; }

  .header { position: relative; }

  .heroright img {
    width: 100vw;
    max-width: 600px;
    z-index: 1;
    margin-bottom: -15px;
  }


  .heroleft {
    height: auto;
    align-items: center;
    text-align: center;
    padding: 20px;
    transform: translateX(0px);
    position: relative;
    z-index: 4;
}


.heroleft button,
.heroleft .btn-primary {
    z-index: 4;
    margin-top: 24px;
    margin-bottom: 20px;
    position: relative;
}
  .heroleft p { 
    max-width: 100%; 
}

.convenios {
  padding: 2rem 0;
  width: 100%;
  max-width: 350px;
  margin: -50px auto 0;   /* negativo sobe, auto centraliza */
  background-color: rgba(51, 46, 43, 0.327);
  backdrop-filter: blur(12px);
  border: 1px solid #ffffff00;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px;    /* opcional — fica bem como card flutuante */
  position: relative;
  z-index: 2;             /* fica acima da hero */
}

.servicos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
  padding: 8rem 0px 10rem 0px;
  margin-top: -70px;
}

.servicos-item:hover .servico-img img {
    transform: none; /* desativa hover no mobile (toque não tem estado hover real) */
  }

  /* sem deslocamento: a imagem já preenche a caixa via object-fit:cover;
     um translateX aqui expunha uma faixa vazia do fundo do card */
  .servicos-item.ativo .servico-img img {
    transform: none;
  }
  
  .servicos h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .servicos p {
    color:rgba(202, 201, 196, 0.75);
  }

  /* .servicos p (acima) também atinge sem querer o texto das caixinhas de
     tratamento (.servico-right p); restaura a mesma cor usada no desktop. */
  .servico-right p {
    color: #998A8F;
  }

  .sobre {
    margin-top: -40px;
  }

  .sobre-container {
    width: 100%;
    padding: 40px 20px 10px 20px;
  }

  .sobre-container-filho {
    flex-direction: column;
    border-radius: 40px;
    padding: 10px;
    min-height: auto;
  }

  .sobre-left {
    width: 100%;
    height: 350px;
    border-radius: 40px;
    transform: translateY(-60px); /* muda direção da animação no mobile */
    overflow: hidden;
  }

  .sobre-left.ativa {
    transform: translateY(0);
  }

  .sobre-left img {
    object-position: left top;
  
  }

  .sobre-right {
    width: 100%;
    padding: 30px 10px 20px;
  }

  .sobre-right .eyebrow {
    letter-spacing: 0.8em;
  }

  .sobretitulo {
    font-size: clamp(1.4rem, 6vw, 2.5rem);
    margin-bottom: 12px;
  }

  .sobre-right p {
    font-size: 13px;
  }

  .infoAna {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 8px;
  height: auto;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 6;
  padding: 20px 30px 10px 20px;
}

.localizacao{
    margin-top: -10px;
  }

  .localizacao-container {
    width: 100%;
    padding: 40px 20px;
  }

  .localizacao-container-filho {
    flex-direction: column;
    border-radius: 40px;
    padding: 10px;
    min-height: auto;
  }

  .localizacao-left {
    width: 100%;
    height: 350px;
    border-radius: 40px;
    transform: translateY(-60px); /* muda direção da animação no mobile */
    overflow: hidden;
  }

  .localizacao-container-filho.ativo7 .localizacao-left {
    transform: translateY(0);
  }

  .localizacao-left img {
    object-position: center;

  }

  .localizacao-right {
    width: 100%;
    padding: 30px 10px 20px;
  }

  .localizacao-right .eyebrow {
    letter-spacing: 0.8em;
  }

  .locsobretitulo {
    font-size: clamp(1.4rem, 6vw, 2.5rem);
    margin-bottom: 12px;
  }

  .localizacao-right p {
    font-size: 10px;
  }

  .esquerdaImg {
  transform: translateX(-80px) translateY(-40px);
  filter: blur(3px);
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, opacity 1.3s ease 0.2s;
  opacity: 0.5;
  

}
.localizacao-container-filho.ativo7 .esquerdaImg {
  transform: translateX(0) translateY(-40px);
  mix-blend-mode: screen;
  filter: blur(0);
  opacity: 0.5;

}

  /* rodapé no mobile */
  .footer {
    padding: 3rem 20px 2rem;
  }
  .footer-nav {
    gap: 1rem 1.25rem;
  }
}


/* ===== Footer / Rodapé ===== */
.footer {
  background: #ffffff;
  padding: 4.5rem 20px 2.5rem;
}

.footer-container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-logo img {
  height: 26px;
  width: auto;
}

.footer-tagline {
  max-width: 46ch;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6b5d5f;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: #36332c;
  transition: color 200ms ease;
}

.footer-nav a:hover {
  color: #BF8E89;
}

.footer-endereco {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #6b5d5f;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(54, 51, 44, 0.15);
  color: #36332c;
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.footer-social a:hover {
  color: #ffffff;
  border-color: #BF8E89;
  background-color: #BF8E89;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-legal {
  width: 100%;
  margin-top: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(54, 51, 44, 0.12);
}

.footer-legal p {
  margin: 0;
  font-size: 0.8rem;
  color: #9f9396;
}