:root {
  --gold: #C4A77D;
  --gold-light: #dfc9a4;
  --gold-dark: #a08555;
  --gray: #f5f5f5;
  --gray-mid: #d0d0d0;
  --gray-dark: #888888;
  --dark: #4A4A4A;
  --mid: #6a6a6a;
  --white: #ffffff;
  --cream: #faf9f7;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--white);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 64px;
  background: rgba(74,74,74,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,167,125,0.15);
  transition: padding 0.4s;
}
nav.scrolled { padding: 14px 64px; }

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  line-height: 1.3;
}
.nav-logo span {
  display: block;
  font-weight: 300;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: rgba(196,167,125,0.6);
  margin-top: 2px;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196,167,125,0.7);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1.5px solid var(--gold);
  padding: 10px 24px;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--gold); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px 80px;
  background: var(--cream);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-specialty {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}
.hero-title strong {
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  font-size: 58%;
  letter-spacing: 0.05em;
  display: block;
  color: var(--mid);
  margin-top: 12px;
  line-height: 1.5;
}

.hero-desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--mid);
  max-width: 400px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-outline {
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.btn-outline:hover { color: var(--gold); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-mid);
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-top: 4px;
  display: block;
}

.hero-right {
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.2s 0.2s forwards;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.04); }

.hero-badge {
  position: absolute;
  bottom: 48px;
  left: -1px;
  background: var(--white);
  padding: 18px 28px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  z-index: 2;
  animation: slideIn 0.8s 1.3s both;
}
.hero-badge small {
  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.hero-badge p {
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--dark);
  letter-spacing: 0.05em;
}

/* ─── MÃES SPLIT ─── */
#maes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.maes-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.maes-img { position: relative; overflow: hidden; }
.maes-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.85) brightness(0.92);
  transition: transform 0.8s ease, filter 0.5s;
}
.maes-img:hover img { transform: scale(1.06); filter: saturate(1) brightness(0.95); }
.maes-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(74,74,74,0.5));
  pointer-events: none;
}

.maes-content {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.eyebrow span {
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.section-eyebrow span {
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  color: var(--dark);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }

.maes-text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(253,253,251,0.6);
  margin: 24px 0 40px;
}
.maes-divider { width: 48px; height: 1px; background: var(--gold); margin-bottom: 32px; }
.maes-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-light);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

/* ─── MENSAGEM MÃES ─── */
#mensagem-maes {
  background: #4a4a4a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 80px;
}
.mensagem-content {
  max-width: 760px;
  width: 100%;
  text-align: center;
}
.mensagem-content .eyebrow {
  justify-content: center;
}
.mensagem-text {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin: 24px 0 36px;
}

/* ─── VIDEO ─── */
#video {
  padding: 120px 80px;
  background: #4a4a4a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.video-header { text-align: center; }
.video-header .section-title { color: #ffffff; }
.video-header .section-eyebrow span { color: var(--gold); }
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
}
.video-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 1px solid rgba(196,167,125,0.3);
  pointer-events: none;
  z-index: 0;
}
.video-wrap video {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  outline: none;
}
.video-caption {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ─── PROCEDIMENTOS ─── */
#procedimentos {
  padding: 120px 80px;
  background: var(--white);
}
.proc-header { text-align: center; margin-bottom: 72px; }
.proc-header p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--mid);
  max-width: 560px;
  margin: 16px auto 0;
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.proc-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}
.proc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(196,167,125,0.15);
  border-color: var(--gold);
}
.proc-card-image { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.proc-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.proc-card:hover img { transform: scale(1.06); }
.proc-card-overlay { display: none; }
.proc-arrow { display: none; }
.proc-number { display: none; }
.proc-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  background: var(--white);
}
.proc-name {
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark) !important;
  letter-spacing: 0.03em;
}
.proc-desc {
  font-size: 0.88rem;
  color: var(--mid) !important;
  line-height: 1.75;
  flex: 1;
}
.proc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold) !important;
  text-decoration: none;
  margin-top: 8px;
  width: fit-content;
  transition: gap 0.3s;
}
.proc-btn:hover { gap: 14px; }

/* ─── PROC INTRO ─── */
.proc-intro {
  max-width: 860px;
  margin: 0 auto 72px;
  padding: 48px 56px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, #f5f5f5 0%, #eeeeec 100%);
}
.proc-intro-title {
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--dark);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 20px;
}
.proc-intro-text {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 10px;
}
.proc-intro-text:last-child { margin-bottom: 0; }

/* ─── CUIDADO SEÇÕES ─── */
#cuidado-1 {
  padding: 0;
  background: var(--white);
}

.cuidado-foto-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.cuidado-foto {
  position: relative;
  overflow: hidden;
}

.cuidado-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.cuidado-foto-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--gray-mid);
}

#cuidado-2 {
  padding: 60px 80px 100px;
  background: #4a4a4a;
}

.cuidado-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}

.cuidado-header .section-eyebrow { margin-bottom: 20px; }

.cuidado-subtitle {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--mid);
  text-align: center;
  margin-top: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cuidado-bloco {
  max-width: 1200px;
  margin: 0 auto 72px;
}

.cuidado-bloco:last-child { margin-bottom: 0; }

.cuidado-bloco-single {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cuidado-bloco-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.cuidado-bloco-label span {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  white-space: nowrap;
  font-style: italic;
}

.cuidado-bloco-line {
  height: 1px;
  width: 40px;
  background: var(--gold);
  flex-shrink: 0;
}

.cuidado-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-mid);
}

#cuidado-2 .cuidado-grid { background: var(--gray-mid); gap: 1px; }

.cuidado-card {
  padding: 40px 36px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s;
}

.cuidado-card:hover { background: var(--cream); }

.cuidado-card.dark {
  background: #ffffff;
}

.cuidado-card.dark:hover { background: var(--cream); }

.cuidado-card-wide {
  max-width: 560px;
  width: 100%;
  border: 1px solid rgba(196,167,125,0.2);
  background: #ffffff !important;
}

.cuidado-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(196,167,125,0.4);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  flex-shrink: 0;
}

.cuidado-icon svg { width: 100%; height: 100%; }

.cuidado-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cuidado-text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--mid);
}

.cuidado-card.dark .cuidado-text { color: var(--mid); }

@media (max-width: 1024px) {
  .cuidado-foto-wrap { grid-template-columns: 1fr; }
  .cuidado-foto { height: 400px; }
  .cuidado-foto-content { padding: 60px 32px; border-left: none; border-top: 1px solid var(--gray-mid); }
  #cuidado-1 { padding: 0; }
  #cuidado-2 { padding: 48px 32px 80px; }
  .cuidado-grid { grid-template-columns: 1fr; background: transparent; gap: 2px; }
  .cuidado-card { border: 1px solid var(--gray-mid); }
  .cuidado-card.dark { border: 1px solid rgba(196,167,125,0.1); }
}
#destaques {
  background: var(--cream);
  padding: 0;
}

/* ─── SOBRE ─── */
#sobre {
  padding: 120px 80px;
  background: var(--cream);
  display: flex;
  justify-content: center;
}
.sobre-content { max-width: 760px; width: 100%; text-align: center; }
.sobre-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--mid);
  margin: 24px 0 48px;
  text-align: left;
}
.sobre-text p + p { margin-top: 18px; }
.sobre-creds {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gray-mid);
  padding-top: 32px;
  max-width: 480px;
  margin: 0 auto;
}
.cred-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.cred-label {
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.cred-value {
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--dark);
  letter-spacing: 0.05em;
}

/* ─── DEPOIMENTOS ─── */
#depoimentos {
  padding: 120px 80px;
  background: linear-gradient(135deg, #f5f5f5 0%, #eeeeec 100%);
  overflow: hidden;
}
.dep-header { text-align: center; margin-bottom: 72px; }
.carousel-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollTrack 32s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.dep-card {
  background: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  width: 380px;
  flex-shrink: 0;
  border-top: 2px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dep-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(196,167,125,0.15); }
.dep-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.3;
  font-weight: 300;
  margin-bottom: 20px;
  display: block;
}
.dep-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 28px;
  flex: 1;
}
.dep-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.dep-stars span { color: var(--gold); font-size: 0.75rem; }
.dep-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-mid);
  margin-top: auto;
}
.dep-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.dep-name { font-weight: 500; font-size: 0.78rem; color: var(--dark); letter-spacing: 0.05em; }
.dep-proc { font-weight: 400; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

/* ─── CTA ─── */
#cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  max-width: 1200px;
  margin: 80px auto;
  overflow: hidden;
}
.cta-image { position: relative; overflow: hidden; }
.cta-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}
.cta-image:hover img { transform: scale(1.04); }
.cta-content {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}
.cta-text {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(253,253,251,0.6);
  margin-bottom: 48px;
  max-width: 400px;
}
.btn-whatsapp {
  background: #3aaa6e;
  color: white;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  align-self: flex-start;
  transition: transform 0.3s;
}
.btn-whatsapp:hover { transform: translateY(-2px); }
.wa-label {
  background: #3aaa6e;
  padding: 0 28px 0 32px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  white-space: nowrap;
  height: 56px;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.wa-btn {
  width: 56px; height: 56px;
  background: #2e9460;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ─── RODAPÉ ─── */
footer { background: #3a3a3a; padding: 72px 80px 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo { color: var(--white); font-size: 1rem; }
.footer-brand .nav-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.78rem; line-height: 1.75; color: rgba(253,253,251,0.35); margin-top: 20px; max-width: 260px; }
.footer-col h4 { font-weight: 500; font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.78rem; color: rgba(253,253,251,0.35); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col address { font-style: normal; font-size: 0.78rem; line-height: 1.8; color: rgba(253,253,251,0.35); }

/* Social icons */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(196,167,125,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.social-icon svg { width: 100%; height: 100%; }

.social-link span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253,253,251,0.35);
  transition: color 0.3s;
}

.social-link:hover .social-icon {
  border-color: var(--gold);
  background: rgba(196,167,125,0.08);
}

.social-link:hover span { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(196,167,125,0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.62rem; letter-spacing: 0.1em; color: rgba(253,253,251,0.2); }
  .footer-bottom a { font-size: 0.62rem; letter-spacing: 0.1em; color: rgba(253,253,251,0.2); }
.footer-crm { font-size: 0.62rem; letter-spacing: 0.1em; color: rgba(196,167,125,0.5); }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 36px; right: 36px;
  z-index: 999;
  display: flex;
  align-items: center;
  text-decoration: none;
 
  border-radius: 50px;
  overflow: hidden;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: translateY(-3px); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 20px 32px; }
  nav.scrolled { padding: 14px 32px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  #hero { grid-template-columns: 1fr; min-height: auto; display: flex; flex-direction: column-reverse; }
  .hero-left { padding: 60px 32px 60px; }
  .hero-right { height: 100vw; margin-top: 70px; }
  .hero-right img { object-position: center 15%; }

  #maes { grid-template-columns: 1fr; }
  .maes-images { height: 60vw; }
  .maes-content { padding: 64px 32px; }

  #video { padding: 80px 32px; }
  #procedimentos { padding: 80px 32px; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }

  #diferenciais { grid-template-columns: 1fr; padding: 80px 32px; gap: 48px; }
  #diferenciais { grid-template-columns: 1fr; }
  .diff-image { height: 400px; }

  #sobre { padding: 80px 32px; }
  #depoimentos { padding: 80px 32px; }

  #cta { grid-template-columns: 1fr; }
  .cta-image { height: 300px; }
  .cta-content { padding: 60px 32px; }

  footer { padding: 60px 32px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .proc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .whatsapp-float { bottom: 24px; right: 16px; }
  .wa-label { font-size: 0.85rem; padding: 0 18px 0 22px; }
  nav { padding: 20px 20px; }
  .hero-left { padding: 60px 20px 40px; }
  .cuidado-foto-content { padding: 48px 20px; }
  #cuidado-2 { padding: 48px 20px 60px; }
  .cuidado-bloco { padding: 0; }
  footer { padding: 48px 20px 28px; }
  .cta-content { padding: 48px 20px; }
  #sobre { padding: 60px 20px; }
  #depoimentos { padding: 60px 20px; }
  section { overflow-x: hidden; }
  img { max-width: 100%; }
  .wa-label { max-width: 55vw; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

/* ─── PÁGINA SOBRE ─── */
/* ─── PAGE HEADER ─── */
    .page-header {
      padding-top: 80px;
      min-height: 320px;
      background: var(--dark);
      display: flex;
      align-items: flex-end;
      position: relative;
      overflow: hidden;
    }

    .page-header::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%);
    }

    .page-header::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    .page-header-accent {
      position: absolute;
      top: 40px;
      right: 80px;
      width: 200px;
      height: 200px;
      border: 1px solid rgba(196,167,125,0.12);
      border-radius: 50%;
    }

    .page-header-accent2 {
      position: absolute;
      top: 80px;
      right: 120px;
      width: 120px;
      height: 120px;
      border: 1px solid rgba(196,167,125,0.08);
      border-radius: 50%;
    }

    .page-header-inner {
      position: relative;
      z-index: 1;
      padding: 60px 80px;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-header-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .page-header-line {
      width: 40px;
      height: 1px;
      background: var(--gold);
    }

    .page-header-eyebrow span {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .page-header h1 {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: clamp(2.2rem, 4vw, 3.8rem);
      color: #ffffff;
      line-height: 1.1;
    }

    .page-header h1 em {
      font-style: italic;
      color: var(--gold);
    }

    /* ─── SOBRE CONTENT ─── */
    .sobre-page {
      padding: 100px 80px;
      background: var(--cream);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      max-width: 1200px;
      margin: 0 auto;
    }

    .sobre-page-image {
      position: relative;
    }

    .sobre-page-image img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .sobre-page-image::before {
      content: '';
      position: absolute;
      top: -16px;
      left: -16px;
      right: 16px;
      bottom: 16px;
      border: 1px solid rgba(196,167,125,0.25);
      z-index: -1;
    }

    .sobre-page-image::after {
      content: '';
      position: absolute;
      bottom: -16px;
      right: -16px;
      width: 100px;
      height: 100px;
      background: var(--gold);
      opacity: 0.1;
      z-index: -1;
    }

    .sobre-page-content {}

    .sobre-page-content .eyebrow {
      margin-bottom: 20px;
    }

    .sobre-page-title {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: clamp(2rem, 3vw, 2.8rem);
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 32px;
    }

    .sobre-page-title em {
      font-style: italic;
      color: var(--gold);
    }

    .sobre-page-text {
      font-size: 0.95rem;
      line-height: 1.9;
      color: var(--mid);
    }

    .sobre-page-text p + p {
      margin-top: 18px;
    }

    .sobre-page-creds {
      margin-top: 48px;
      border-top: 1px solid var(--gray-mid);
      padding-top: 32px;
      display: flex;
      flex-direction: column;
    }

    .sobre-cred-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 0;
      border-bottom: 1px solid var(--gray-mid);
    }

    .sobre-cred-label {
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .sobre-cred-value {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--dark);
    }

    /* ─── VIDEO SECTION ─── */
    #sobre-video {
      padding: 100px 80px;
      background: #4a4a4a;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 48px;
    }

    .sobre-video-header {
      text-align: center;
    }

    .sobre-video-header .section-title {
      color: #ffffff;
    }

    .sobre-video-wrap {
      position: relative;
      width: 100%;
      max-width: 900px;
    }

    .sobre-video-wrap::before {
      content: '';
      position: absolute;
      top: -12px; left: -12px;
      right: 12px; bottom: 12px;
      border: 1px solid rgba(196,167,125,0.3);
      pointer-events: none;
      z-index: 0;
    }

    .sobre-video-wrap video {
      width: 100%;
      display: block;
      position: relative;
      z-index: 1;
      outline: none;
    }

    .sobre-video-caption {
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      text-align: center;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .page-header-inner { padding: 48px 32px; }
      .page-header-accent { display: none; }
      .sobre-page { grid-template-columns: 1fr; padding: 60px 32px; gap: 48px; }
      .sobre-page-image { max-height: 500px; overflow: hidden; }
      .sobre-page-image img { aspect-ratio: 4/3; }
      #sobre-video { padding: 72px 32px; }
    }

.sobre-page-bg {
  background: var(--cream);
}

.sobre-video-title {
  display: block;
  text-align: center;
  color: #ffffff;
}

/* ─── CURRÍCULO ─── */
.sobre-curriculo {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-mid);
}

.sobre-curriculo-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.sobre-curriculo-label span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.sobre-curriculo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sobre-curriculo-list li {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.sobre-curriculo-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* ─── FORMAÇÃO ─── */
#formacao {
  background: var(--dark);
  padding: 100px 80px;
}

.formacao-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.formacao-header {
  position: sticky;
  top: 120px;
}

.formacao-header .section-eyebrow { margin-bottom: 20px; }

.formacao-title {
  display: block;
  color: #ffffff !important;
  margin-top: 4px;
}

.formacao-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(196,167,125,0.15);
}

.formacao-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(196,167,125,0.15);
  transition: padding-left 0.3s;
}

.formacao-item:hover { padding-left: 8px; }

.formacao-dot {
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.formacao-item p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

.formacao-item:hover p { color: rgba(255,255,255,0.85); }

@media (max-width: 1024px) {
  #formacao { padding: 80px 32px; }
  .formacao-inner { grid-template-columns: 1fr; gap: 48px; }
  .formacao-header { position: static; }
}

/* ─── GALERIA ─── */
#galeria {
  background: var(--cream);
  padding: 80px 0;
  overflow: hidden;
}

.galeria-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.galeria-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: galeriaScroll 30s linear infinite;
}

.galeria-track:hover {
  animation-play-state: paused;
}

@keyframes galeriaScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.galeria-slide {
  flex-shrink: 0;
  width: 480px;
  height: 360px;
  overflow: hidden;
  position: relative;
}

.galeria-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease, filter 0.4s;
  filter: saturate(0.85) brightness(0.95);
}

.galeria-slide:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
}

@media (max-width: 1024px) {
  #galeria { padding: 60px 0; }
  .galeria-slide { width: 320px; height: 240px; }
}

@media (max-width: 600px) {
  .galeria-slide { width: 260px; height: 200px; }
}

.galeria-header {
  text-align: center;
  margin-bottom: 48px;
}

.galeria-title {
  display: block;
  margin-top: 12px;
  color: var(--gold) !important;
}
