@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Marcellus&family=Jost:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ==========================================================================
   TOKENS — Paleta Exclusiva baseada na cor do logotipo (#C7B1AD)
   ========================================================================== */
:root {
  /* Tons neutros escuros e médios */
  --noir: #2e4132;
  --espresso: #1f2e22;
  --cocoa: #425a47;
  --taupe: #778a7c;
  --stone: #a5b7ab;
  
  /* Tons neutros claros e quentes */
  --sand: #E6DFDC;
  --cream: #F2EAE7;
  --ivory: #FAF6F5;

  /* Cores de acento - Logo e variações premium */
  --champagne: #C7B1AD;
  --gold: #B59E9A;
  --gold-deep: #8E7874;

  /* Whatsapp */
  --whats: #20ba56;
  --whats-hover: #189b43;

  /* Fontes */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-caps: 'Marcellus', serif;
  --f-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Linhas e bordas */
  --line-dark: rgba(46, 37, 35, .15);
  --line-gold: rgba(199, 177, 173, .35);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.22, .8, .26, .99);
  --reveal: .9s var(--ease);
}

/* ==========================================================================
   BASE
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--noir);
}

::selection {
  background: var(--champagne);
  color: var(--noir);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--espresso);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--champagne);
}

body {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: .012em;
  color: var(--espresso);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

.container.narrow {
  max-width: 760px;
}

/* Marca registrada - detalhe estético em círculo */
.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-deep); /* Cor alternativa para contraste no fundo claro */
  flex: none;
}

.dot.big {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--champagne); /* #C7B1AD */
  margin-bottom: 28px;
}

/* ==========================================================================
   TIPOGRAFIA EDITORIAL
   ========================================================================== */
.kicker {
  font-family: var(--f-caps);
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.kicker.light {
  color: var(--champagne);
}

.kicker.light .dot {
  background: var(--champagne); /* #C7B1AD */
}

.kicker.center {
  justify-content: center;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--espresso);
  margin-bottom: 28px;
}

.section-title em,
.display-q em,
.footer-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-deep);
}

.section-title.light {
  color: var(--ivory);
}

.section-title.light em {
  color: var(--champagne);
}

.section-title.center {
  text-align: center;
}

.display-q {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.12;
  color: var(--espresso);
  margin-bottom: 40px;
}

.display-q.light {
  color: var(--ivory);
}

.display-q.light em {
  color: var(--champagne);
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--taupe);
  max-width: 640px;
}

.prose p {
  margin-bottom: 1.35em;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  font-weight: 500;
  color: var(--cocoa);
}

.sub-title {
  font-family: var(--f-caps);
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cocoa);
  margin: 44px 0 20px;
}

.sobre-crm-rqe {
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: -10px;
  margin-bottom: 24px;
}

/* Lista com losango */
.dot-list li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--line-dark);
}

.dot-list li:first-child {
  border-top: 1px solid var(--line-dark);
}

.dot-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 24px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-deep);
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-caps);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--whats);
  padding: 18px 36px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}

.btn-solid svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: none;
}

.btn-solid:hover {
  background: var(--whats-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(32, 186, 86, 0.25);
}

.btn-solid.large {
  padding: 21px 46px;
  font-size: 14px;
}

.btn-line {
  display: inline-block;
  font-family: var(--f-caps);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 1px solid var(--line-gold);
  color: inherit;
  white-space: nowrap;
  transition: border-color .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}

.btn-line:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ivory);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .45s var(--ease), box-shadow .45s var(--ease);
}

#scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--champagne));
  z-index: 2;
}

.header-wrap {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  transition: padding .45s var(--ease);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  height: clamp(58px, 8vw, 80px);
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  font-family: var(--f-caps);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
  transition: color .45s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-menu .btn-solid {
  padding: 12px 24px;
  font-size: 11px;
}

/* Estado scrolled removido para cabeçalho não-fixo */

/* Drawer aberto */
.header.drawer-open {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}



.header.drawer-open .menu-toggle span {
  background: var(--champagne);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  align-items: flex-end;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--champagne);
  transition: transform .4s var(--ease), width .4s var(--ease), background .4s var(--ease);
}

.menu-toggle span:nth-child(1) {
  width: 30px;
}

.menu-toggle span:nth-child(2) {
  width: 20px;
}

.menu-toggle.active span:nth-child(1) {
  width: 26px;
  transform: translateY(4.25px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  width: 26px;
  transform: translateY(-4.25px) rotate(-45deg);
}

.menu-toggle.active span {
  background: var(--champagne) !important;
}

/* Drawer mobile */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--noir);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-link {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2rem, 8vw, 2.8rem);
  color: var(--ivory);
  padding: 8px 0;
  border-bottom: 1px solid rgba(199, 177, 173, .14);
  transform: translateY(24px);
  opacity: 0;
  transition: transform .6s var(--ease), opacity .6s var(--ease), color .3s;
}

.mobile-link:hover {
  color: var(--champagne);
}

.mobile-drawer.open .mobile-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-drawer.open .mobile-link:nth-child(1) { transition-delay: .08s; }
.mobile-drawer.open .mobile-link:nth-child(2) { transition-delay: .14s; }
.mobile-drawer.open .mobile-link:nth-child(3) { transition-delay: .2s; }
.mobile-drawer.open .mobile-link:nth-child(4) { transition-delay: .26s; }
.mobile-drawer.open .mobile-link:nth-child(5) { transition-delay: .32s; }

.mobile-cta {
  margin-top: 34px;
  justify-content: center;
}

.drawer-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

.drawer-foot .dot {
  background: var(--champagne); /* #C7B1AD */
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--noir);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
}

.hero-container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding: 150px 0 110px;
  position: relative;
  z-index: 5;
}

.hero-photo-column {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 100%;
  z-index: 1;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-photo-wrap img {
  width: 100%;
  height: calc(100% + 200px);
  margin-top: -200px;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(.88) contrast(1.02) brightness(.96);
}

.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, var(--noir) 0%, rgba(46, 65, 50, 0) 100%);
}

.hero-monogram {
  position: absolute;
  z-index: 2;
  width: clamp(360px, 42vw, 660px);
  aspect-ratio: 1;
  left: -7%;
  bottom: -16%;
  mix-blend-mode: screen;
  opacity: .025;
  filter: blur(4px);
  pointer-events: none;
}

.hero-monogram img {
  width: 100%;
  height: 100%;
}

.hero-rail {
  position: absolute;
  z-index: 4;
  right: clamp(16px, 2.6vw, 38px);
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: .85;
}

.hero-rail .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--champagne); /* #C7B1AD */
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  font-family: var(--f-caps);
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 30px;
}

.hero-name {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2rem, 5.6vw, 5rem);
  line-height: .98;
  letter-spacing: -.015em;
  margin-bottom: 38px;
  color: var(--ivory);
}

.hero-name em {
  font-style: italic;
  color: var(--champagne);
}

.hero-name > span {
  display: block;
}

.hero-lead {
  max-width: 720px;
  font-size: clamp(1rem, 1.3vw, 1.13rem);
  color: var(--sand);
  margin-bottom: 44px;
}

.hero-lead strong {
  font-weight: 400;
  color: var(--champagne);
}

.hero-actions {
  padding-top: 6px;
}

.hero-actions > span {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-note {
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Sequência de entrada */
.reveal-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}

.reveal-line > span,
.reveal-line > em {
  display: inline-block;
}

.reveal-line > * {
  transform: translateY(115%);
  animation: rise 1.1s var(--ease) forwards;
}

.hero-eyebrow > span { animation-delay: .15s; }
.hero-name .reveal-line:nth-child(1) > span { animation-delay: .3s; }
.hero-name .reveal-line:nth-child(2) > span { animation-delay: .42s; }
.hero-name .reveal-line:nth-child(3) > span { animation-delay: .54s; }
.hero-lead > span { animation-delay: .75s; }
.hero-actions > span { animation-delay: .9s; }

@keyframes rise {
  to { transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  overflow: hidden;
}

.hero-scroll span {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--champagne));
  animation: drip 2.2s var(--ease) infinite;
}

@keyframes drip {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ==========================================================================
   SEÇÕES GERAIS
   ========================================================================== */
.section {
  padding: clamp(90px, 11vw, 150px) 0;
}

.hero-mobile-photo-sec,
.footer-mobile-photo-sec {
  display: none;
}

/* ==========================================================================
   COMO A ENDOCRINOLOGIA AJUDA (Sintomas / Condições)
   ========================================================================== */
.sec-ajuda {
  background: var(--ivory);
}

.ajuda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.ajuda-left {
  position: sticky;
  top: 110px;
}

.ajuda-photo-container {
  position: relative;
  overflow: hidden;
  margin-top: 36px;
  border-radius: 4px;
}

.ajuda-photo-container img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1.2s var(--ease);
}

.ajuda-photo-container:hover img {
  transform: scale(1.05);
}

.ajuda-right {
  display: flex;
  flex-direction: column;
}

.sintomas-list {
  display: flex;
  flex-direction: column;
}

.sintomas-list li {
  position: relative;
  border-bottom: 1px solid var(--line-dark);
  transition: border-color .3s;
}

.sintomas-list li:first-child {
  border-top: 1px solid var(--line-dark);
}

.sintoma-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 8px;
  cursor: pointer;
  user-select: none;
  width: 100%;
}

.sintoma-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.sintoma-checkmark {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  background: transparent;
  flex: none;
  transition: all 0.3s var(--ease);
}

.sintoma-checkbox:checked ~ .sintoma-checkmark {
  background: var(--champagne);
  border-color: var(--champagne);
}

.sintoma-checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid var(--noir);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.sintoma-checkbox:checked ~ .sintoma-checkmark::after {
  display: block;
}

.sintoma-text {
  font-size: 1.05rem;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.sintoma-checkbox:checked ~ .sintoma-text {
  color: var(--gold-deep);
  font-weight: 400;
}

.sintomas-cta-wrapper {
  margin-top: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s var(--ease), max-height 0.5s var(--ease), margin-top 0.5s var(--ease);
}

.sintomas-cta-wrapper.show {
  opacity: 1;
  max-height: 140px;
  margin-top: 40px;
}

/* ==========================================================================
   ATENDIMENTO / RECURSOS CLÍNICOS
   ========================================================================== */
.sec-atendimento {
  background: var(--cream);
}

.atendimento-head {
  margin-bottom: clamp(44px, 6vw, 80px);
}

.index-list {
  position: relative;
  border-top: 1px solid var(--line-dark);
}

.index-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(16px, 4vw, 60px);
  align-items: center;
  padding: clamp(24px, 3.4vw, 38px) clamp(4px, 1.5vw, 20px);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  transition: background 0.4s var(--ease), padding-left 0.4s var(--ease), border-color 0.4s var(--ease);
}

.index-row h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  color: var(--espresso);
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}

.index-row p {
  font-size: .98rem;
  color: var(--taupe);
  transition: color 0.4s var(--ease);
}

.index-row:hover,
.index-row.active {
  background: var(--ivory);
  padding-left: clamp(12px, 2vw, 24px);
  border-bottom-color: var(--gold);
}

.index-row:hover h3,
.index-row.active h3 {
  color: var(--gold-deep);
  transform: translateX(4px);
}

.index-row:hover p,
.index-row.active p {
  color: var(--espresso);
}



/* ==========================================================================
   BIOGRAFIA / SOBRE
   ========================================================================== */
.sec-sobre {
  background: var(--ivory);
}

.sobre-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.sobre-photo {
  position: sticky;
  top: 110px;
}

.sobre-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.sobre-photo figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--taupe);
}

.sobre-text .prose {
  color: var(--cocoa);
}

.sobre-quote {
  margin-top: 40px;
  padding-left: 28px;
  border-left: 1px solid var(--gold);
}

.sobre-quote p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1.4;
  color: var(--gold-deep);
}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.sec-diferenciais {
  background: var(--cream);
}

.diferenciais-wrap {
  width: 100%;
}

.diferenciais-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  margin-top: 40px;
}

.diferenciais-list li {
  display: flex;
  align-items: start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.diferenciais-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.diferenciais-list li .dot {
  margin-top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-deep); /* Cor alternativa para contraste no fundo claro */
}

.diferenciais-list li h3 {
  font-family: var(--f-caps);
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--espresso);
  margin-bottom: 6px;
}

.diferenciais-list li p {
  font-size: .95rem;
  color: var(--taupe);
  line-height: 1.6;
}

/* ==========================================================================
   REEMBOLSO CONVÊNIO
   ========================================================================== */
.sec-reembolso {
  background: #009459;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.sec-reembolso,
.sec-reembolso h2,
.sec-reembolso h2 em,
.sec-reembolso .kicker,
.sec-reembolso .prose,
.sec-reembolso .prose p,
.sec-reembolso .prose strong,
.sec-reembolso .dot {
  color: #ffffff !important;
}

.sec-reembolso .dot {
  background: #ffffff !important;
}

.reembolso-grid {
  display: block;
}

.reembolso-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.reembolso-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.reembolso-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 440px;
}

.reembolso-card .card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--sand);
}

.reembolso-card h3 {
  font-family: var(--f-caps);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sand);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.reembolso-card p {
  color: rgba(230, 223, 220, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   ATENDIMENTO LOCAL E CARROSSEL
   ========================================================================== */
.sec-local {
  background: var(--noir);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.local-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.local-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.local-address {
  margin-top: 30px;
  border-top: 1px solid var(--line-gold);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.address-details {
  font-family: var(--f-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--sand);
}

.address-details strong {
  font-family: var(--f-caps);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--champagne);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.address-details span {
  display: block;
}

.local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.local-map-column {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  z-index: 2;
}

.local-map-column iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.1) brightness(0.9);
}

/* ==========================================================================
   PERGUNTAS FREQUENTES (FAQ)
   ========================================================================== */
.sec-faq {
  background: var(--ivory);
}

.faq-head {
  margin-bottom: clamp(36px, 5vw, 60px);
}

.accordion {
  border-bottom: 1px solid var(--line-dark);
}

.accordion:first-of-type {
  border-top: 1px solid var(--line-dark);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 26px 4px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: var(--espresso);
  transition: color .3s var(--ease);
}

.accordion-header:hover {
  color: var(--gold-deep);
}

.accordion-icon {
  position: relative;
  width: 13px;
  height: 13px;
  flex: none;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform .4s var(--ease);
}

.accordion-icon::before {
  inset: 50% 0 auto 0;
  height: 1px;
  transform: translateY(-50%);
}

.accordion-icon::after {
  inset: 0 auto 0 50%;
  width: 1px;
  transform: translateX(-50%);
}

.accordion-header.active .accordion-icon::after {
  transform: translateX(-50%) scaleY(0);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}

.accordion-content p {
  padding: 0 4px 28px;
  color: var(--taupe);
  max-width: 720px;
}

/* ==========================================================================
   CONVERSÃO FINAL & RODAPÉ
   ========================================================================== */
.footer {
  background: var(--noir);
  color: var(--ivory);
}

.footer-cta {
  background: var(--noir);
  padding: clamp(90px, 11vw, 150px) 0;
  border-top: 1px solid var(--line-gold);
  position: relative;
  overflow: hidden;
}

.footer-cta-container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.footer-cta-content {
  display: flex;
  flex-direction: column;
}

.footer-photo-column {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 100%;
  z-index: 1;
}

.footer-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.footer-photo-wrap img {
  width: 100%;
  height: calc(100% + 70px);
  margin-top: -70px;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(.8) brightness(.85);
}

.footer-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, var(--noir) 0%, rgba(46, 65, 50, 0) 100%);
}

.footer-cta .btn-solid {
  padding: 14px 28px;
  font-size: 12px;
  width: fit-content;
  align-self: flex-start;
}

.footer-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
  line-height: 1.05;
  max-width: 620px;
  margin-bottom: 28px;
}

.footer-title em {
  color: var(--champagne);
}

.footer-lead {
  max-width: 540px;
  color: var(--sand);
  margin-bottom: 44px;
}

.footer-phone {
  margin-top: 24px;
  font-family: var(--f-caps);
  font-size: 14px;
  letter-spacing: .18em;
  color: var(--sand);
}

.footer-phone a {
  color: var(--champagne);
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.footer-phone a:hover {
  color: var(--ivory);
  border-bottom-color: var(--champagne);
}

.footer-bottom {
  border-top: 1px solid rgba(199, 177, 173, .18);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 30px 0;
}

.footer-wordmark {
  font-family: var(--f-caps);
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--champagne);
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.footer-wordmark small {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--stone);
}

.copyright {
  font-size: 12.5px;
  color: var(--stone);
  letter-spacing: .04em;
}

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.float-whats-container {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.float-whats-container * {
  pointer-events: auto;
}

.float-whats {
  position: static;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whats);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 36px rgba(46, 65, 50, .3);
  transition: transform .35s var(--ease), background .35s var(--ease);
}

.float-whats svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.float-whats:hover {
  transform: translateY(-4px) scale(1.05);
  background: var(--whats-hover);
}

.float-whats-label {
  position: relative;
  font-family: var(--f-caps);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--espresso);
  padding: 8px 16px;
  border: 1px solid var(--line-gold);
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(46, 65, 50, 0.2);
  white-space: nowrap;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.float-whats-label::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid var(--line-gold);
  z-index: 1;
}

.float-whats-label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--espresso);
  z-index: 2;
}

/* ==========================================================================
   ANIMAÇÕES DE SCROLL (REVEAL)
   ========================================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity var(--reveal), transform var(--reveal);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVIDADE (IMPECCABLE GRID & LAYOUTS)
   ========================================================================== */
@media (max-width: 1024px) {


  .index-row {
    grid-template-columns: 1fr auto;
  }

  .index-row p {
    grid-column: 1 / -1;
  }

  .sobre-photo {
    position: static;
  }


}

@media (max-width: 900px) {
  .header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 10% 30px, rgba(46, 65, 50, 0.75) 0%, rgba(46, 65, 50, 0) 65%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 1;
    transition: opacity 0.45s var(--ease);
    pointer-events: none;
  }

  .header.scrolled::before {
    opacity: 0;
  }

  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    align-items: center;
    background: var(--noir) !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 120px 0 60px;
  }

  .hero-photo-column {
    display: none;
  }

  .hero-rail {
    display: none;
  }

  .hero-monogram {
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    opacity: 0.03;
    right: auto;
    bottom: auto;
    width: min(400px, 80vw);
  }

  .hero-mobile-photo-sec {
    display: block;
    width: 100%;
    height: clamp(350px, 60svh, 500px);
    background: var(--espresso);
    border-bottom: 1px solid var(--line-gold);
    overflow: hidden;
  }

  .hero-mobile-photo-wrap {
    width: 100%;
    height: 100%;
  }

  .hero-mobile-photo-wrap img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    transform: translateY(-20%);
    filter: saturate(.88) contrast(1.02) brightness(.96);
  }

  .ajuda-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ajuda-left {
    position: static;
  }

  .ajuda-photo-container {
    aspect-ratio: 16 / 10;
  }

  .sec-sobre {
    padding-top: 0;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-photo {
    order: -1;
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    margin-top: 0;
  }

  .sobre-photo img {
    aspect-ratio: 16 / 10;
    object-position: center;
    border-radius: 0;
    width: 100%;
  }

  .sobre-photo figcaption {
    display: none;
  }

  .footer-cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 5;
  }

  .footer-photo-column {
    display: none;
  }

  .footer-mobile-photo-sec {
    display: block;
    width: 100%;
    height: clamp(455px, 78svh, 650px);
    background: var(--espresso);
    border-bottom: 1px solid var(--line-gold);
    overflow: hidden;
  }

  .footer-mobile-photo-wrap {
    width: 100%;
    height: 100%;
  }

  .footer-mobile-photo-wrap img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    transform: translateY(-20%);
    filter: saturate(.8) brightness(.85);
  }

  .reembolso-grid {
    display: block;
  }

  .local-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .local-map-column {
    position: relative;
    width: 100%;
    height: 350px;
    margin-top: 40px;
    z-index: 2;
  }

  .local-map-column iframe {
    height: 350px;
  }

  .diferenciais-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .diferenciais-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-name small {
    font-size: 9px;
    letter-spacing: .26em;
  }

  .brand-monogram {
    width: 38px;
    height: 38px;
  }

  .hero-actions > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .btn-solid,
  .btn-solid.large,
  .btn-line {
    font-size: clamp(10px, 3vw, 13px);
    padding: 14px 20px;
    letter-spacing: .15em;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .float-whats-container {
    right: 16px;
    bottom: 16px;
    gap: 8px;
  }

  .float-whats-label {
    font-size: 9px;
    padding: 6px 12px;
  }
}

/* ==========================================================================
   CURSOR PERSONALIZADO PREMIUM (Apenas pointer: fine)
   ========================================================================== */
@media (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: none !important;
  }

  .custom-cursor-dot,
  .custom-cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    will-change: transform;
    transform: translate3d(-50%, -50%, 0);
  }

  .custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    transition: opacity 0.3s ease, width 0.25s var(--ease), height 0.25s var(--ease), background-color 0.25s var(--ease);
  }

  .custom-cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    transition: opacity 0.3s ease, width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
  }

  .custom-cursor-dot.visible,
  .custom-cursor-outline.visible {
    opacity: 1;
  }

  body.cursor-hovering .custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--champagne);
  }

  body.cursor-hovering .custom-cursor-outline {
    width: 56px;
    height: 56px;
    border-color: var(--champagne);
    background-color: rgba(199, 177, 173, 0.12);
  }

  body.cursor-clicking .custom-cursor-dot {
    width: 12px;
    height: 12px;
    background-color: var(--gold-deep);
  }

  body.cursor-clicking .custom-cursor-outline {
    width: 24px;
    height: 24px;
    border-color: var(--gold-deep);
    background-color: rgba(142, 120, 116, 0.25);
  }
}

/* ==========================================================================
   MOVIMENTO REDUZIDO (Acessibilidade)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-line > * {
    animation: none;
    transform: none;
  }

  .fade-in-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll span {
    animation: none;
  }

  .mobile-link {
    transition: none;
    transform: none;
    opacity: 1;
  }

  * {
    transition-duration: .01ms !important;
  }
}
