/* =============================================
   LILIAM VENIL MEGAHAIR — style.css
   Playfair Display + Poppins | #0D0D0D / #C6A15B / #FAF8F5
   ============================================= */

/* ---- 1. CUSTOM PROPERTIES ---- */
:root {
  --bg:        #FAF8F5;
  --white:     #FFFFFF;
  --black:     #0D0D0D;
  --black-soft:#161513;
  --gold:      #C6A15B;
  --gold-lt:   #D9BC85;
  --gold-dk:   #A9813F;
  --gold-bg:   #F4ECDD;
  --text:      #211E1A;
  --text-md:   #5C564C;
  --text-lt:   #8C8578;
  --border:    #E4DCCC;

  --font-serif: 'Playfair Display', serif;
  --font-sans:  'Poppins', system-ui, sans-serif;

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;

  --shadow-sm: 0 2px 12px rgba(13,13,13,0.06);
  --shadow:    0 8px 32px rgba(13,13,13,0.10);
  --shadow-lg: 0 16px 48px rgba(13,13,13,0.14);

  --header-h: 76px;
  --max-w:    1160px;
  --gap:      clamp(24px, 4vw, 64px);
}

/* ---- 2. RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- 3. TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--black);
}
h1 { font-size: clamp(1.7rem, 2.5vw, 2.2rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 600; }
p  { color: var(--text-md); font-size: 1rem; }
small { font-size: 0.8rem; }

/* ---- 4. LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.section { padding-block: clamp(64px, 8vw, 100px); }
.section--dark { background: var(--black); }

.section__hd {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section__hd h2 { margin-block: 12px 16px; }
.section__hd p { font-size: 1.05rem; }
.section__hd p + p { margin-top: 10px; }
.section--dark .section__hd p { color: rgba(255,255,255,0.68); }

.section__cta { text-align: center; margin-top: clamp(40px, 5vw, 56px); }

/* ---- 5. TAG / LABEL ---- */
.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: var(--gold-bg);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 16px;
}
.section--dark .tag { color: var(--gold-lt); background: rgba(198,161,91,0.14); }

/* ---- 6. BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk));
  color: var(--black);
  box-shadow: 0 4px 16px rgba(198,161,91,0.35);
}
.btn--gold:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(198,161,91,0.45); }
.btn--gold:active { transform: translateY(0); opacity: 0.92; }
.btn--outline {
  border: 1.5px solid var(--gold);
  color: var(--gold-dk);
  background: transparent;
}
.btn--outline:hover { background: var(--gold); color: var(--black); transform: translateY(-1px); }
.section--dark .btn--outline { color: var(--gold-lt); border-color: var(--gold-lt); }
.section--dark .btn--outline:hover { background: var(--gold-lt); color: var(--black); }
.btn--white {
  background: #fff;
  color: var(--black);
  box-shadow: 0 3px 12px rgba(0,0,0,0.18);
}
.btn--white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.24); }
.btn--lg { font-size: 0.94rem; padding: 15px 34px; }
.btn--sm { font-size: 0.8rem; padding: 10px 20px; }
.btn--full { width: 100%; justify-content: center; }

/* ---- 7. HEADER ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header.scrolled .header__nav a,
.header.scrolled .hamburger span { color: #fff; }
.header.scrolled .hamburger span { background: #fff; }
@media (max-width: 768px) {
  .header {
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .header .header__nav a, .header .hamburger span { color: #fff; }
  .header .hamburger span { background: #fff; }
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}
.header__logo { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.header__logo-img { height: 42px; width: auto; }
.header__logo-text {
  display: none;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.header__nav { margin-inline-start: auto; }
.header__nav ul { display: flex; gap: 30px; }
.header__nav a {
  font-size: 0.86rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-bottom: 2px;
  letter-spacing: 0.01em;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.header__nav a:hover::after,
.header__nav a:focus-visible::after { width: 100%; }
/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-inline-start: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.nav-mobile {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px clamp(20px, 5vw, 48px);
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.nav-mobile__link {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile__link:hover { color: var(--gold-lt); }

/* ---- 8. HERO ---- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 80px;
  overflow: hidden;
  background-color: var(--black);
  background-image: url('assets/bgdesktop.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__mob-img { display: none; }

.hero__content {
  width: 50%;
  max-width: 540px;
}
.hero__content h1 { color: #fff; margin-bottom: 20px; }
.hero-title__mobile { display: none; }
.hero__lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-lt);
  margin-bottom: 14px;
}
.hero__body { color: rgba(255,255,255,0.78); margin-bottom: 36px; }
.hero__actions {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__actions .btn { justify-content: center; }
.hero__reg {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}

/* ---- 9. TRUST BAR / MARQUEE ---- */
.trust-bar {
  background: var(--black);
  border-top: 1px solid rgba(198,161,91,0.2);
  border-bottom: 1px solid rgba(198,161,91,0.2);
  padding-block: 22px;
  overflow: hidden;
}
.marquee { overflow: hidden; width: 100%; }
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-inline: 28px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee__sep {
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0.5;
  flex-shrink: 0;
  user-select: none;
}

/* ---- 10. SOBRE MIM ---- */
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.sobre__text h2 { margin-block: 8px 20px; }
.sobre__text p + p { margin-top: 12px; }
.sobre__text .btn { margin-top: 28px; }

/* img-frame */
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--gold-bg), #EFE6D2);
  box-shadow: var(--shadow);
}
.img-frame img,
.img-frame video { width: 100%; height: 100%; object-fit: cover; }

/* ---- 11. SERVIÇOS ---- */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.specialty-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.specialty-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.specialty-card__num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(198,161,91,0.14);
  line-height: 1;
}
.specialty-card__icon {
  width: 60px; height: 60px;
  background: var(--gold-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.specialty-card h3 { margin-bottom: 12px; font-size: 1.05rem; }
.specialty-card p { font-size: 0.88rem; }

/* ---- 12. GALLERY (BENTO) ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(120px, 13vw, 200px);
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: clamp(32px, 4vw, 48px);
}
.gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__item:nth-child(5) {
  grid-column: span 2;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  background: var(--gold-bg);
}
.gallery__item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery__trigger {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  background: none;
  cursor: zoom-in;
}
.gallery__trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery__trigger:hover img { transform: scale(1.06); }
.gallery__badge {
  position: absolute;
  bottom: 10px; left: 10px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold-lt);
  padding: 4px 10px;
  border-radius: 100px;
  pointer-events: none;
}

/* ---- 12b. VÍDEOS DE RESULTADOS ---- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(32px, 4vw, 48px);
}
.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
  aspect-ratio: 9 / 16;
}
.video-card__media { display: block; width: 100%; height: 100%; object-fit: cover; }
.video-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(13,13,13,0.55);
  border: 1px solid rgba(198,161,91,0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.video-card__play svg { margin-left: 3px; }
.video-card__play:hover { background: var(--gold-dk); transform: scale(1.06); }
.video-card.is-playing .video-card__play { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lb-in 0.2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 9001;
}
.lightbox__close:hover { background: rgba(255,255,255,0.25); }

/* ---- 13. DEPOIMENTOS ---- */
.depoimentos-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.depo-arrows { display: flex; gap: 10px; flex-shrink: 0; }
.depo-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--gold-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  box-shadow: var(--shadow-sm);
}
.depo-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--black); transform: scale(1.07); }
.depo-arrow:disabled { opacity: 0.35; pointer-events: none; }

.depoimentos-track {
  overflow: hidden;
  position: relative;
}
.depoimentos-track::before,
.depoimentos-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.depoimentos-track::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.depoimentos-track::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.depoimentos-inner {
  display: flex;
  gap: 20px;
  padding-block: 8px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.depoimento-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  width: 340px;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.depoimento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.depoimento-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
.depoimento-card blockquote p {
  font-style: italic;
  font-size: 0.875rem;
  color: var(--text-md);
  line-height: 1.7;
}
.depoimento-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.depoimento-card__avatar {
  width: 44px; height: 44px;
  background: var(--gold-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold-dk);
  font-size: 1rem;
  flex-shrink: 0;
}
.depoimento-card footer strong { font-size: 0.88rem; display: block; color: var(--text); }
.depoimento-card footer small  { color: var(--text-lt); }
.depoimentos-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-lt);
  margin-top: clamp(24px, 3vw, 32px);
}

/* ---- 14. FAQ ---- */
.faq__inner { max-width: 760px; margin-inline: auto; }
.faq-list { margin-top: clamp(32px, 4vw, 48px); }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.faq-item__btn:hover { color: var(--gold-dk); }
.faq-item__btn[aria-expanded="true"] { color: var(--gold-dk); }
.faq-item__btn[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); color: var(--gold-dk); }
.faq-item__icon {
  flex-shrink: 0;
  color: var(--text-lt);
  transition: transform 0.3s ease, color 0.2s;
}
.faq-item__body {
  padding-bottom: 20px;
  animation: faq-in 0.25s ease;
}
.faq-item__body p { font-size: 0.95rem; color: var(--text-md); }
@keyframes faq-in { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }

/* ---- 15. LOCALIZAÇÃO ---- */
.localizacao__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--gap);
  align-items: center;
  margin-top: clamp(32px, 4vw, 48px);
}
.localizacao__address p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  line-height: 1.7;
}
.localizacao__address svg { flex-shrink: 0; margin-top: 3px; }
.localizacao__address a { color: var(--gold-lt); font-weight: 600; }
.localizacao__address a:hover { text-decoration: underline; }
.localizacao__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.localizacao__map iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ---- 16. CTA FINAL ---- */
.cta-final {
  position: relative;
  background: var(--black);
  padding-block: clamp(72px, 9vw, 120px);
  overflow: hidden;
}
.cta-final__monogram {
  position: absolute;
  top: 50%; right: -2vw;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(14rem, 28vw, 24rem);
  line-height: 1;
  color: rgba(198,161,91,0.05);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.cta-final__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}
.cta-final__media { position: relative; }
.cta-final__media::before {
  content: '';
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold-dk);
  z-index: 0;
}
.cta-final__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.55);
}
.cta-final__content { position: relative; }
.cta-final__kicker {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 18px;
}
.cta-final__content h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}
.cta-final__content p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 440px;
}
.cta-final__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-final__insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-lt);
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 0.2s;
}
.cta-final__insta:hover { color: #fff; }

/* ---- 17. FOOTER ---- */
.footer {
  position: relative;
  background: var(--black);
  color: rgba(255,255,255,0.75);
  overflow: hidden;
  border-top: 1px solid rgba(198,161,91,0.22);
}
.footer__glow {
  position: absolute;
  top: -140px; left: 50%;
  transform: translateX(-50%);
  width: 640px; height: 320px;
  background: radial-gradient(closest-side, rgba(198,161,91,0.14), rgba(198,161,91,0) 72%);
  pointer-events: none;
  z-index: 0;
}

.footer__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: var(--gap);
  padding-block: 72px 44px;
}

.footer__logo { height: 46px; width: auto; margin-bottom: 16px; }
.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--gold-lt);
}
.footer__blurb {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
  margin-top: 16px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(198,161,91,0.4);
  color: var(--gold-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer__social a:hover { background: var(--gold-dk); border-color: var(--gold-dk); color: #fff; }

.footer__col h3 {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer__col h3::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 22px; height: 1px;
  background: var(--gold-dk);
}
.footer__col address { font-style: normal; }
.footer__col address p, .footer__col p { font-size: 0.87rem; line-height: 1.85; margin: 0 0 6px; }
.footer__col a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer__col a:hover { color: var(--gold-lt); }
.footer__col--contact .btn { margin-top: 18px; }
.footer .btn--outline { color: var(--gold-lt); border-color: var(--gold-lt); }
.footer .btn--outline:hover { background: var(--gold-lt); color: var(--black); }

.footer__divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-block: 4px 4px;
}
.footer__divider::before,
.footer__divider::after {
  content: '';
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,161,91,0.45));
}
.footer__divider::after { background: linear-gradient(90deg, rgba(198,161,91,0.45), transparent); }
.footer__divider span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 28px;
}
.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-block: 22px;
}
.footer__bottom-inner p { font-size: 0.76rem; color: rgba(255,255,255,0.4); }
.footer__bottom-inner a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer__bottom-inner a:hover { color: var(--gold-lt); }

/* ---- 18. FLOATING ELEMENTS ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.whatsapp-float:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }


/* ---- 19. SCROLL ANIMATIONS ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- 20. RESPONSIVE ---- */

/* Tablet landscape */
@media (max-width: 1024px) {
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet portrait */
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .header__nav { display: none; }
  .hamburger { display: flex; }

  .hero {
    display: grid;
    align-items: start;
    background-image: none;
    min-height: auto;
    padding: 0;
    overflow: visible;
  }
  .hero::before { display: none; }
  .hero__mob-img {
    display: block;
    grid-area: 1 / 1;
    width: 100%;
    height: auto;
    margin-top: var(--header-h);
    object-fit: cover;
    object-position: top center;
  }
  .hero__inner {
    grid-area: 1 / 1;
    align-self: start;
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-h) + 80vw);
    padding-bottom: 52px;
  }
  .hero__content { width: 100%; max-width: 100%; text-align: center; }
  .hero-title__desktop { display: none; }
  .hero-title__mobile { display: inline; }
  .hero__content h1 { font-size: 1.7rem; }
  .hero__actions { display: flex; flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__img { max-width: 380px; margin-inline: auto; }

  .specialty-grid { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(140px, 30vw, 220px); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }

  .depoimentos-hd { flex-direction: column; align-items: flex-start; gap: 16px; }
  .depoimento-card { width: 280px; }

  .localizacao__inner { grid-template-columns: 1fr; }

  .cta-final__grid { grid-template-columns: 1fr; text-align: center; }
  .cta-final__media { max-width: 320px; margin-inline: auto; }
  .cta-final__content p { margin-inline: auto; }
  .cta-final__actions { justify-content: center; }
  .localizacao__btns { flex-direction: column; }
  .localizacao__btns .btn { width: 100%; justify-content: center; }
  .localizacao__map iframe { height: 260px; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__blurb { max-width: 420px; }

  .whatsapp-float { bottom: 28px; }
}

/* Mobile */
@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  .hero { padding-top: 0; padding-bottom: 0; }
  .hero__content h1 { font-size: 1.45rem; }

  .gallery { grid-template-columns: 1fr; grid-auto-rows: clamp(160px, 60vw, 280px); }
  .gallery__item:first-child,
  .gallery__item:nth-child(5) { grid-column: span 1; }

  .video-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }

  .footer__top { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__blurb { margin-inline: auto; }
  .footer__col h3::after { left: 50%; transform: translateX(-50%); }
  .footer__col--contact { display: flex; flex-direction: column; align-items: center; }
  .footer__divider span { font-size: 1rem; }
  .footer__divider::before, .footer__divider::after { max-width: 60px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}
