/* ===================================================
   OdontoHealth Family — paleta dourado / branco / cinza
   =================================================== */
:root {
  --gold: #C9971F;
  --gold-deep: #A87B12;
  --gold-soft: #E9C45F;
  --gold-tint: #FBF4E0;
  --gold-tint-2: #F6E8C5;
  --ink: #221C0F;
  --ink-soft: #5C5648;
  --gray: #F3F4F6;
  --white: #FFFFFF;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(34, 28, 15, .08);
  --shadow-lg: 0 24px 60px rgba(34, 28, 15, .14);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1160px, 92%); margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Tipografia ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

h1 { font-size: clamp(2.6rem, 5.4vw, 4.2rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); letter-spacing: -.01em; }
h3 { font-size: 1.18rem; }

h1 em, h2 em {
  font-style: italic;
  color: var(--gold);
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .9rem;
  position: relative;
  padding-left: 2.6rem;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 2rem; height: 2px;
  background: var(--gold);
}
.eyebrow-light { color: var(--gold-tint-2); }
.eyebrow-light::before { background: var(--gold-tint-2); }

.section { padding: clamp(4.5rem, 9vw, 7rem) 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(2.6rem, 5vw, 4rem);
  text-align: center;
}
.section-head .eyebrow { padding-left: 0; }
.section-head .eyebrow::before { display: none; }
.section-head p { margin-top: 1rem; color: var(--ink-soft); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  border: 2px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(201, 151, 31, .35);
}
.btn-gold:hover { box-shadow: 0 14px 30px rgba(201, 151, 31, .45); }

.btn-dark {
  background: var(--ink);
  color: var(--gold-tint);
}
.btn-dark:hover { background: #3a3220; }

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: var(--ink); color: var(--gold-tint); }

.btn-sm { padding: .6rem 1.4rem; font-size: .85rem; }
.btn-block { width: 100%; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-top: auto;
}
.card-link span { transition: transform .3s var(--ease); }
.card-link:hover span { transform: translateX(4px); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background .35s, box-shadow .35s, padding .35s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(34, 28, 15, .08);
  padding: .65rem 0;
}

.nav-inner { display: flex; align-items: center; gap: 2rem; }

.logo { display: flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; }
.logo-mark {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  padding: 4px;
  box-shadow: 0 6px 16px rgba(201, 151, 31, .35);
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo-text em { font-style: italic; color: var(--gold-deep); }
.logo-light .logo-text { color: var(--gold-tint); }
.logo-light .logo-text em { color: var(--gold-soft); }

.nav-menu { display: flex; align-items: center; gap: 1.7rem; margin-left: auto; }
.nav-menu a {
  font-size: .9rem;
  font-weight: 500;
  position: relative;
  padding: .25rem 0;
}
.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-menu a:not(.btn):hover::after,
.nav-menu a.active::after { transform: scaleX(1); }

.nav-cta-mobile { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: .5rem;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/backgrounds/bg-altair.webp") center right / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(251, 244, 224, .96) 0%,
    rgba(251, 244, 224, .88) 32%,
    rgba(251, 244, 224, .45) 55%,
    rgba(251, 244, 224, 0) 78%);
}

.hero-blob {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 196, 95, .35), transparent 65%);
  top: -120px; left: -140px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-text { max-width: 560px; padding: 7rem 0 4rem; }

.hero-sub {
  margin-top: 1.4rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 460px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 2.6rem;
  font-size: .9rem;
  color: var(--ink-soft);
}
.stars { color: var(--gold); letter-spacing: .18em; font-size: 1rem; }

/* entrada escalonada do hero */
.hero-text > * { opacity: 0; transform: translateY(24px); animation: rise .8s var(--ease) forwards; }
.hero-text > :nth-child(1) { animation-delay: .1s; }
.hero-text > :nth-child(2) { animation-delay: .22s; }
.hero-text > :nth-child(3) { animation-delay: .34s; }
.hero-text > :nth-child(4) { animation-delay: .46s; }
.hero-text > :nth-child(5) { animation-delay: .58s; }

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

/* ---------- Hero 2 — Tradição ---------- */
.hero-2 {
  min-height: 88svh;
  border-top: 1px solid rgba(201, 151, 31, .18);
}

.hero-2-bg { background-image: url("../images/backgrounds/bg-altair-pai.webp"); }

.hero-2 .hero-text { padding: 5rem 0 4rem; max-width: 620px; }

/* a animação de entrada do primeiro hero não se aplica aqui:
   os elementos revelam ao scroll via .reveal */
.hero-2 .hero-text > * { animation: none; }

.hero-2-title { font-size: clamp(2.1rem, 4.2vw, 3.1rem); letter-spacing: -.02em; }
.hero-2-title em { font-style: italic; color: var(--gold); }

/* ---------- Strip ---------- */
.strip {
  background: var(--white);
  text-align: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--gray);
  font-size: .95rem;
  color: var(--ink-soft);
}
.strip a { color: var(--gold-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Gold band ---------- */
.gold-band {
  background: linear-gradient(120deg, var(--gold-soft) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: var(--ink);
  overflow: hidden;
}
.gold-band-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.gold-band h2 em { color: var(--white); }
.gold-band p { margin: 1rem 0 1.8rem; max-width: 520px; color: rgba(34, 28, 15, .8); }

.gold-band-visual { display: grid; place-items: center; }
.band-circle {
  width: 220px; height: 220px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .22);
  border: 1.5px dashed rgba(255, 255, 255, .65);
  color: var(--white);
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------- Quem somos ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.feature-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
}
.feature-card:hover {
  transform: translateY(-8px);
  background: var(--gold-tint);
  box-shadow: var(--shadow-lg);
}
.feature-card p { font-size: .9rem; color: var(--ink-soft); }

.feature-icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-soft);
  margin-bottom: .4rem;
  transition: background .35s, transform .35s var(--ease);
}
.feature-card:hover .feature-icon { background: var(--gold); color: var(--white); transform: rotate(-8deg) scale(1.06); }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.about-photo {
  border-radius: var(--radius);
  min-height: 420px;
  background: url("../images/backgrounds/bg-altair.webp") 70% center / cover no-repeat;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: auto auto -18px -18px;
  width: 120px; height: 120px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  z-index: -1;
}

.about-stats h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 1.6rem; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.stat {
  background: var(--gold-tint);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-deep);
  display: block;
}
.stat span { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Serviços ---------- */
.services { background: var(--gray); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s, background .35s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
  background: var(--gold-tint);
}
.service-card p { font-size: .88rem; color: var(--ink-soft); }

.service-icon {
  display: grid; place-items: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--gold-tint);
  color: var(--gold-deep);
  margin-bottom: .3rem;
  transition: background .35s, color .35s, transform .35s var(--ease);
}
.service-card:hover .service-icon { background: var(--gold); color: var(--white); transform: scale(1.08); }

/* ---------- Portfólio ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.4rem;
}
.filter-btn {
  border: 1.5px solid var(--gray);
  background: var(--white);
  border-radius: 999px;
  padding: .55rem 1.4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold-tint);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.work-card {
  border: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .35s, scale .35s;
  padding: 0;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.work-card.hide { display: none; }

.ba {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-soft, #888);
}
.ba img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-large {
  aspect-ratio: auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #000;
}
.ba-large img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
}

.work-label {
  display: block;
  padding: .9rem 1.1rem;
  font-weight: 600;
  font-size: .9rem;
}

.portfolio-note {
  text-align: center;
  font-size: .8rem;
  color: var(--ink-soft);
  margin-top: 1.6rem;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20, 16, 6, .82);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.lightbox[hidden] { display: none; }

.lightbox-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  max-width: 720px;
  width: 100%;
  animation: rise .45s var(--ease);
}
.lightbox-content h3 { margin-top: 1.1rem; }
.lightbox-content p { margin-top: .4rem; color: var(--ink-soft); font-size: .95rem; font-style: italic; }

.lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.6rem;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 2.6rem;
  line-height: 1;
}
.lightbox-close:hover { color: var(--gold-soft); }

/* ---------- Agendamento ---------- */
.booking {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(233, 196, 95, .14), transparent 50%),
    radial-gradient(ellipse at 90% 85%, rgba(201, 151, 31, .12), transparent 45%),
    var(--ink);
  color: var(--gold-tint);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.booking-text h2 { color: var(--white); }
.booking-text h2 em { color: var(--gold-soft); }
.booking-text p { margin-top: 1rem; color: rgba(251, 244, 224, .75); }

.booking-perks { margin-top: 1.8rem; display: grid; gap: .8rem; }
.booking-perks li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .95rem;
}
.booking-perks li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 700;
}

.booking-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  display: grid;
  gap: 1.1rem;
}
.booking-form h3 { font-size: 1.45rem; }

.field { display: grid; gap: .35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.field label { font-size: .8rem; font-weight: 600; color: var(--ink-soft); }

.field input,
.field select {
  font-family: inherit;
  font-size: .92rem;
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius-sm);
  background: var(--gray);
  color: var(--ink);
  transition: border-color .3s, background .3s, box-shadow .3s;
  width: 100%;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 151, 31, .15);
}

.form-feedback { font-size: .88rem; font-weight: 500; color: var(--gold-deep); min-height: 1.2em; }
.booking .form-feedback { color: #2E7D32; }

/* ---------- Info ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}

.info-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.info-card h3 { margin: .8rem 0 1rem; }

.info-list { display: grid; gap: .7rem; }
.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: .9rem;
  border-bottom: 1px dashed #DDD9CE;
  padding-bottom: .6rem;
}
.info-list li span { color: var(--ink-soft); }
.info-list a:hover { color: var(--gold-deep); }
.info-list strong { text-align: right; word-break: break-word; }
.info-list li.stacked { gap: .5rem; }
.info-list li.stacked strong { word-break: normal; white-space: nowrap; font-size: .82rem; }

.badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.badge {
  background: var(--white);
  border: 1.5px solid var(--gold-soft);
  color: var(--gold-deep);
  border-radius: 999px;
  padding: .35rem .9rem;
  font-size: .78rem;
  font-weight: 600;
}
.info-note { margin-top: 1rem; font-size: .85rem; color: var(--ink-soft); }

.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-link { display: block; }
.map-wrap iframe,
.map-wrap img {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  object-fit: cover;
  filter: saturate(.85);
}
.map-card {
  position: absolute;
  top: 1.6rem; left: 1.6rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-lg);
  max-width: 290px;
}
.map-card p { font-size: .88rem; color: var(--ink-soft); margin: .4rem 0 1rem; }

/* ---------- Depoimentos ---------- */
.testimonials { background: var(--gold-tint); }

.carousel { max-width: 760px; margin-inline: auto; overflow: hidden; }

.carousel-track {
  display: flex;
  transition: transform .6s var(--ease);
}

.testimonial {
  flex: 0 0 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow);
  text-align: center;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-style: italic;
  margin: 1.2rem auto 1.6rem;
  max-width: 560px;
  color: var(--ink);
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  text-align: left;
}
.testimonial figcaption span:last-child,
.testimonial figcaption div span { display: block; font-size: .8rem; color: var(--ink-soft); }

.avatar {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1.8rem;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--white);
  color: var(--gold-deep);
  font-size: 1.1rem;
  transition: all .3s var(--ease);
}
.carousel-btn:hover { background: var(--gold); color: var(--white); transform: scale(1.08); }

.carousel-dots { display: flex; gap: .55rem; }
.carousel-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: #DECB94;
  transition: all .3s var(--ease);
  padding: 0;
}
.carousel-dots button.active { background: var(--gold-deep); transform: scale(1.3); }

/* ---------- Equipe ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.team-card {
  background: var(--white);
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}

.team-photo {
  width: 110px; height: 110px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 25%, var(--gold-soft), var(--gold) 70%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(201, 151, 31, .35);
  border: 4px solid var(--gold-tint);
}

.team-role {
  color: var(--gold-deep);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: .35rem 0 .8rem;
}
.team-bio { font-size: .88rem; color: var(--ink-soft); }

.team-linkedin {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  margin-top: 1.2rem;
  border-radius: 50%;
  background: var(--gray);
  color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.team-linkedin:hover { background: var(--gold); color: var(--white); transform: scale(1.1); }

/* ---------- Blog ---------- */
.blog { background: var(--gray); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.blog-img { height: 190px; position: relative; }
.blog-img::after {
  content: "🦷";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3rem;
  opacity: .5;
}
.blog-img-1 { background: linear-gradient(135deg, var(--gold-tint), var(--gold-soft)); }
.blog-img-2 { background: linear-gradient(135deg, #F6E8C5, #DDB44A); }
.blog-img-3 { background: linear-gradient(135deg, #FDF8EA, #C9971F); }

.blog-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.blog-tag {
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-deep);
  background: var(--gold-tint);
  border-radius: 999px;
  padding: .25rem .8rem;
}
.blog-body p { font-size: .88rem; color: var(--ink-soft); }

/* ---------- CTA final ---------- */
.final-cta {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.final-cta h2 em { color: var(--white); }
.final-cta p { margin: .9rem auto 1.8rem; max-width: 480px; color: rgba(34, 28, 15, .8); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(251, 244, 224, .8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  gap: 2.5rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
}

.footer-brand p { font-size: .9rem; margin: 1.1rem 0 1.4rem; }

.footer h3 {
  color: var(--gold-soft);
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.footer-col { display: flex; flex-direction: column; gap: .55rem; font-size: .9rem; }
.footer-col a { transition: color .25s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-col p { margin-bottom: .5rem; }

.socials { display: flex; gap: .7rem; }
.socials a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(251, 244, 224, .1);
  color: var(--gold-tint);
  transition: all .3s var(--ease);
}
.socials a:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }

.newsletter {
  display: flex;
  gap: .6rem;
  margin-top: .4rem;
}
.newsletter input {
  flex: 1;
  min-width: 0;
  padding: .7rem 1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(251, 244, 224, .25);
  background: rgba(251, 244, 224, .08);
  color: var(--gold-tint);
  font-family: inherit;
  font-size: .88rem;
}
.newsletter input::placeholder { color: rgba(251, 244, 224, .5); }
.newsletter input:focus {
  outline: none;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(233, 196, 95, .15);
}
.footer .form-feedback { color: var(--gold-soft); }

.footer-bottom {
  border-top: 1px solid rgba(251, 244, 224, .12);
  padding: 1.4rem 0;
  font-size: .8rem;
  text-align: center;
  color: rgba(251, 244, 224, .55);
}
.dev-credit {
  margin-top: .5rem;
  font-size: .78rem;
  letter-spacing: .02em;
  color: rgba(251, 244, 224, .45);
}
.dev-credit strong { color: var(--gold-soft); font-weight: 700; }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .3s var(--ease), box-shadow .3s;
  animation: pulse 2.6s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; }

@keyframes pulse {
  0% { box-shadow: 0 12px 30px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .45); }
  70% { box-shadow: 0 12px 30px rgba(37, 211, 102, .45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 30px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-text > * { opacity: 1; transform: none; }
}

/* ====================================================
   RESPONSIVO
   ==================================================== */
@media (max-width: 1024px) {
  .features-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .info-grid, .team-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(320px, 82vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2.5rem 2.2rem;
    box-shadow: -20px 0 60px rgba(34, 28, 15, .18);
    transform: translateX(110%);
    transition: transform .45s var(--ease);
    z-index: 90;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1.05rem; }
  .nav-cta-mobile { display: inline-flex; margin-top: .5rem; }

  .hero-bg { background-position: 72% center; }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(251, 244, 224, .94) 0%,
      rgba(251, 244, 224, .82) 55%,
      rgba(251, 244, 224, .55) 100%);
  }
  .hero-text { padding: 7.5rem 0 3.5rem; }

  .gold-band-inner { grid-template-columns: 1fr; text-align: left; }
  .gold-band-visual { display: none; }

  .about-split, .booking-inner { grid-template-columns: 1fr; }
  .about-photo { min-height: 300px; }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

  .map-card {
    position: static;
    max-width: none;
    border-radius: 0;
  }
  .map-wrap iframe,
  .map-wrap img { height: 300px; }
}

@media (max-width: 560px) {
  .features-grid, .services-grid, .info-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: .9rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas .btn { width: 100%; }
  .newsletter { flex-direction: column; }
  .newsletter .btn { width: 100%; }
}
