/* =============================================
   CLEIDE CAMILO — Tema Branco & Dourado
   ============================================= */

/* ---- Tokens ---- */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dark:   #9E7A2E;
  --white:       #FFFFFF;
  --ivory:       #FAF8F5;
  --charcoal:    #1A1A1A;
  --gray:        #6B6B6B;
  --gray-light:  #E8E4DE;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius:      4px;
  --radius-lg:   10px;
  --max-w:       1200px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ---- Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.hidden { display: none !important; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--gold-light); }
.eyebrow--gold  { color: var(--gold); }

.heading-2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.heading-2 em { font-style: italic; color: var(--gold); }
.heading-2--light { color: var(--white); }

.heading-3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.body-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}
.body-text--light { color: rgba(255,255,255,0.75); }

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--lg { padding: 18px 48px; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--right {
  transform: translateX(32px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 14px 0;
}
.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__img {
  display: block;
  width: auto;
  height: clamp(44px, 6vw, 68px);
}
.header.scrolled .logo__img {
  height: clamp(38px, 5vw, 56px);
}
.logo__img--footer {
  height: clamp(68px, 9vw, 108px);
}
.logo__symbol {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}
.logo__text {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.logo--light .logo__text { color: var(--charcoal); }
.header.scrolled .logo__text { color: var(--charcoal); }

.nav__list {
  display: flex;
  gap: 36px;
}
.nav__link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--white); }
.header.scrolled .nav__link { color: var(--gray); }
.header.scrolled .nav__link:hover { color: var(--charcoal); }

.header__cta {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.header.scrolled .header__cta {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.header.scrolled .header__cta:hover {
  background: var(--charcoal);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.header.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open {
  position: relative;
  z-index: 1001;
}
.hamburger.open span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,26,26,0.78) 0%,
    rgba(26,26,26,0.45) 55%,
    rgba(26,26,26,0.1) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-top: clamp(80px, 10vw, 130px);
  margin-bottom: 24px;
  max-width: 640px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__stats {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.stat { text-align: left; }
.stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}
.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.stat__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--charcoal);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}
.marquee__dot { color: var(--gold) !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  padding: 120px 0;
  background: var(--white);
}
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre__img-wrap {
  position: relative;
}
.sobre__img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.sobre__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--charcoal);
  color: var(--white);
  padding: 20px 24px;
  text-align: center;
  border-radius: var(--radius);
}
.sobre__badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.sobre__badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.sobre__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.pillar__icon { color: var(--gold); font-size: 0.6rem; }

/* ============================================
   TRATAMENTOS
   ============================================ */
.tratamentos {
  padding: 120px 0;
  background: var(--ivory);
}
.trat__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab {
  background: none;
  border: none;
  padding: 12px 48px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: var(--transition);
}
.tab.active {
  background: var(--gold);
  color: var(--white);
}
.trat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.trat-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}
.trat-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.trat-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.trat-card:hover .trat-card__img { transform: scale(1.06); }
.trat-card__info {
  padding: 28px 28px 32px;
}
.trat-card__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.trat-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.trat-card__desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}
.trat-card__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.trat-card__link:hover { gap: 12px; }

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais {
  padding: 120px 0;
  background: var(--charcoal);
}
.diferenciais__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dif__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}
.dif-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.dif-item__icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.dif-item__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.dif-item__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.diferenciais__img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.2);
}

/* ============================================
   ESPECIALISTA
   ============================================ */
.especialista {
  padding: 120px 0;
  background: var(--white);
}
.esp__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
  margin-top: 16px;
}
.esp__img {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
}
.esp__titulo-medico {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.esp__creds {
  display: flex;
  gap: 32px;
  margin: 28px 0 36px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.cred__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.cred__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.resultados {
  padding: 120px 0;
  background: var(--ivory);
}
.depo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.depo-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.depo-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 12px 40px rgba(201,168,76,0.1);
}
.depo-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.depo-card__text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.depo-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.depo-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.depo-card__name {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.depo-card__role {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 140px 24px;
  text-align: center;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
}
.cta-section__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.72);
}
.cta-section__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.cta-section__content .heading-2 { margin-bottom: 16px; }
.cta-section__content .body-text { margin-bottom: 36px; }

/* ============================================
   FORMULÁRIO
   ============================================ */
.form-section {
  padding: 120px 0;
  background: var(--white);
}
.form-section__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.form-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item__icon {
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.contact-item__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.contact-item__value {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Form */
.form {
  background: var(--ivory);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.required { color: var(--gold); }
.form__input,
.form__select,
.form__textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form__input.error,
.form__select.error { border-color: #c0392b; }
.form__error {
  font-size: 0.75rem;
  color: #c0392b;
  min-height: 16px;
}
.form__textarea { resize: vertical; min-height: 110px; }
.form__privacy {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
}
.form__success {
  text-align: center;
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  border: 1px solid var(--gold-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}
.footer__socials {
  display: flex;
  gap: 16px;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
a.footer__link:hover { color: var(--white); }
.footer__bottom {
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid rgba(45,37,32,.10);
  box-shadow: 0 -6px 40px rgba(45,37,32,.13);
  padding: 20px 0;
  animation: cookieSlideUp .45s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-inner {
  width: 90%;
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(201,169,138,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
}

.cookie-text {
  flex: 1;
  min-width: 0;
}

#cookie-banner .cookie-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 3px;
}

#cookie-banner .cookie-desc {
  font-size: .83rem;
  color: var(--mid);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-icon { display: none; }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions .btn {
    flex: 1;
  }
}

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .sobre__grid,
  .diferenciais__inner,
  .form-section__inner { gap: 48px; }
  .trat__grid { gap: 20px; }
}

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .hamburger { display: flex; }

  .nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .nav.open .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .nav.open .nav__link {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--white);
  }

  .sobre__grid,
  .diferenciais__inner,
  .esp__grid,
  .form-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre__badge { right: 0; bottom: -16px; }
  .diferenciais__media { order: -1; }
  .trat__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .depo__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; }
  .form { padding: 32px 24px; }
}

@media (max-width: 540px) {
  /* ---- Global mobile spacing ---- */
  .btn {
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }
  .container {
    padding: 0 20px;
  }
  .sobre,
  .tratamentos,
  .especialista,
  .resultados,
  .form-section {
    padding: 80px 0;
    overflow-x: hidden;
  }
  .diferenciais {
    padding: 80px 0;
    overflow-x: hidden;
  }
  .cta-section {
    padding: 80px 20px;
    overflow: hidden;
  }
  .cta-section__content {
    max-width: 100%;
  }
  .cta-section__content .btn {
    white-space: normal;
    text-align: center;
    padding: 16px 24px;
    font-size: 0.7rem;
  }

  /* ---- Hero ---- */
  .hero {
    align-items: center;
    padding-bottom: 40px;
    padding-top: 100px;
  }
  .hero__content {
    padding: 0 20px;
  }
  .hero__title {
    margin-top: 0;
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero__sub {
    margin-bottom: 24px;
    font-size: 0.9rem;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 32px;
  }
  .hero__actions .btn {
    white-space: normal;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.7rem;
  }
  .hero__stats { gap: 16px; }
  .stat__num { font-size: 1.5rem; }
  .stat__divider { display: none; }

  /* ---- Sobre ---- */
  .sobre__grid {
    overflow: hidden;
  }
  .sobre__img-wrap,
  .sobre__copy {
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .sobre__img {
    max-width: 100%;
  }
  .sobre__pillars { grid-template-columns: 1fr; }
  .sobre__badge { right: 8px; bottom: -16px; }

  /* ---- Tratamentos ---- */
  .trat__tabs .tab { padding: 12px 28px; }
  .trat-card__info { padding: 20px; }

  /* ---- Especialista ---- */
  .esp__grid {
    overflow: hidden;
  }
  .esp__img-wrap,
  .esp__bio {
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .esp__img {
    max-width: 100%;
  }
  .esp__creds { flex-direction: column; gap: 16px; }

  /* ---- Depoimentos ---- */
  .depo-card { padding: 24px 20px; }

  /* ---- Formulário ---- */
  .form { padding: 28px 20px; }

  /* ---- Footer ---- */
  .footer__nav { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}
