/* ==========================================================================
   Prof. Dr. Tufik Geleilete — estilos compartilhados
   Brandbook v1.3 · Navy #0b1726 · Dourado #b8975a · Merriweather + Inter
   Usado pelas paginas internas. index.html mantem CSS proprio.
   ========================================================================== */

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

:root {
  --navy: #0b1726;
  --navy-2: #14263d;
  --gold: #b8975a;
  --gold-light: #d4b07a;
  --white: #ffffff;
  --off-white: #f7f6f2;
  --gray-light: #eef1f4;
  --text: #243042;
  --text-soft: #555;
  --border: rgba(11,23,38,0.08);
  --shadow: 0 12px 30px rgba(11,23,38,0.05);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

.skip-link {
  position: absolute; left: 16px; top: -48px;
  background: var(--gold); color: var(--navy);
  padding: 10px 14px; border-radius: 10px;
  font-weight: 700; text-decoration: none;
  z-index: 999; transition: top 0.2s ease;
}

.skip-link:focus { top: 16px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,23,38,0.96);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 66px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-family: 'Merriweather', serif;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.nav-brand-text {
  min-width: 0;
  overflow: hidden;
}

.nav-name-full,
.nav-name-short {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-name-short { display: none; }

.nav-logo {
  height: 46px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.nav-brand .nav-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex; gap: 6px; align-items: center; margin-right: 16px;
}

.nav-links a {
  position: relative;
  color: rgba(255,255,255,0.72); text-decoration: none;
  font-size: 0.8rem; font-weight: 500; padding: 6px 10px;
  border-radius: 6px; transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 10px; right: 10px; bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover { color: var(--gold); background: rgba(255,255,255,0.06); }

.nav-links a:hover::after { transform: scaleX(1); }

.nav-links a.active { color: var(--gold); }

.nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.nav-actions a,
.nav-actions button {
  text-decoration: none; font-size: 0.8rem; font-weight: 700;
  padding: 8px 16px; border-radius: 8px; transition: all 0.25s ease;
  min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
}

.btn-whatsapp { background: #25D366; color: white; }

.btn-whatsapp:hover { background: #1da851; }

.btn-agendar {
  background: var(--gold);
  color: var(--navy);
  border: none;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-agendar:hover { background: var(--gold-light); }

/* ── Efeito shine nos botões ── */
.btn-whatsapp, .btn-agendar,
.btn-hero, .btn-tele,
.btn-cta-navy, .btn-cta-white {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-whatsapp::after, .btn-agendar::after,
.btn-hero::after, .btn-tele::after,
.btn-cta-navy::after, .btn-cta-white::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn-whatsapp:hover::after, .btn-agendar:hover::after,
.btn-hero:hover::after, .btn-tele:hover::after,
.btn-cta-navy:hover::after, .btn-cta-white:hover::after {
  left: 120%;
}

/* ── HERO ── */
#hero {
  position: relative; overflow: hidden;
  min-height: 88vh; display: flex; align-items: center;
  padding: 110px 5% 70px;
  background:
    radial-gradient(circle at top left, rgba(184,151,90,0.18), transparent 28%),
    linear-gradient(135deg, var(--navy) 50%, var(--navy-2) 100%);
}

.hero-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 56px; align-items: center; position: relative; z-index: 2;
}

.hero-copy { max-width: 620px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,151,90,0.14); border: 1px solid rgba(184,151,90,0.55);
  color: var(--gold); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}

.hero-copy h1 {
  overflow-wrap: break-word; word-break: break-word; hyphens: auto; max-width: 100%;
  font-family: 'Merriweather', serif; color: var(--white);
  font-size: clamp(1.55rem, 3.5vw, 3rem);
  line-height: 1.1; margin-bottom: 14px;
}

.hero-subtitle {
  color: var(--gold); font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500; margin-bottom: 20px;
  min-height: 1.3em;
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 0.95em;
  background: var(--gold);
  margin-left: 3px;
  vertical-align: -0.1em;
  animation: blinkCursor 0.9s step-end infinite;
}

@keyframes blinkCursor {
  50% { opacity: 0; }
}

.hero-copy p {
  color: rgba(255,255,255,0.86); font-size: 1rem;
  max-width: 560px; margin-bottom: 30px;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px;
}

.btn-hero {
  text-decoration: none; font-weight: 700; font-size: 0.9rem;
  padding: 14px 24px; border-radius: 12px;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center;
}

.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 24px rgba(184,151,90,0.22); }

.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline { border: 1.5px solid rgba(255,255,255,0.38); color: var(--white); background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); }

.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Botao Instagram do hero — mesma altura dos demais CTAs */
.btn-instagram { border: 1.5px solid rgba(255,255,255,0.38); color: var(--white); background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); gap: 10px; padding: 12px 22px; }

.btn-instagram svg { width: 26px; height: 26px; flex-shrink: 0; transition: transform 0.25s ease; }

.btn-instagram:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-instagram:hover svg { transform: scale(1.08); }

.hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 18px;
}

.hero-breadcrumb a { color: var(--gold); text-decoration: none; }

.hero-breadcrumb a:hover { text-decoration: underline; }

.hero-breadcrumb span { color: rgba(255,255,255,0.3); }

.hero-visual { display: flex; justify-content: center; }

.hero-photo-card {
  position: relative; width: min(340px, 100%); padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-photo-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(0,0,0,0.42); }

.hero-photo-card img {
  position: relative; z-index: 1; width: 100%; height: 390px;
  object-fit: cover; border-radius: 18px;
  border: 3px solid rgba(184,151,90,0.9);
}

.hero-photo-caption {
  position: relative; z-index: 1; margin-top: 12px;
  text-align: center; padding-bottom: 4px;
}

.hero-photo-caption strong { display: block; color: var(--white); font-family: 'Merriweather', serif; font-size: 0.95rem; margin-bottom: 2px; }

.hero-photo-caption span { color: rgba(255,255,255,0.7); font-size: 0.78rem; }

/* ── FAIXA DESTAQUE ── */
#destaque {
  background: linear-gradient(135deg, rgba(184,151,90,0.96), rgba(166,131,68,0.96));
  padding: 28px 5%; position: relative; overflow: hidden;
}

.destaque-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px; position: relative; z-index: 1;
}

.dest-item {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px; padding: 16px 14px; text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.dest-item:hover { transform: translateY(-3px); background: rgba(255,255,255,0.18); }

.dest-item strong {
  display: block; font-family: 'Merriweather', serif;
  color: var(--navy); font-size: 0.95rem; font-weight: 700; margin-bottom: 5px;
}

.dest-item span { font-size: 0.78rem; color: rgba(11,23,38,0.78); font-weight: 600; line-height: 1.35; }

.counter { font-variant-numeric: tabular-nums; }

/* ── SEÇÕES GERAIS ── */
main section { padding: 80px 5%; }

.section-inner { max-width: 1180px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}

.section-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--navy); margin-bottom: 16px; line-height: 1.35;
}

.section-divider {
  width: 50px; height: 3px; background: var(--gold);
  margin-bottom: 36px; border-radius: 2px;
}

/* ── SOBRE ── */
#sobre { background: linear-gradient(180deg, var(--off-white) 0%, #ffffff 100%); }

.sobre-grid {
  display: grid; grid-template-columns: 1.35fr 0.9fr;
  gap: 32px; align-items: start;
}

.sobre-text {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 22px; padding: 34px 30px;
  box-shadow: 0 16px 42px rgba(11,23,38,0.06);
}

.sobre-text p { font-size: 1rem; color: #444; margin-bottom: 18px; }

.sobre-credentials {
  background: linear-gradient(180deg, rgba(11,23,38,0.98), rgba(20,38,61,0.98));
  border-radius: 22px; padding: 28px 24px;
  box-shadow: 0 18px 50px rgba(11,23,38,0.22);
  color: white; border: 1px solid rgba(184,151,90,0.18);
}

.credentials-header { margin-bottom: 18px; }

.credentials-header h3 { font-family: 'Merriweather', serif; color: var(--white); font-size: 1.1rem; margin-top: 4px; }

.credential-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}

.credential-card:last-child { border-bottom: none; }

.credential-card .icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.credential-card strong { display: block; color: var(--white); font-size: 0.92rem; margin-bottom: 3px; }

.credential-card p { color: rgba(255,255,255,0.72); font-size: 0.84rem; line-height: 1.5; margin: 0; }

.credential-card.highlight {
  background: rgba(184,151,90,0.09); border: 1px solid rgba(184,151,90,0.18);
  border-radius: 16px; padding: 14px; margin-top: 8px;
}

.lattes-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-weight: 600; font-size: 0.84rem;
  text-decoration: underline; margin-top: 4px; word-break: break-all;
}

/* ── CARDS DE CONTEÚDO ── */
#doenca { background: var(--white); }

#acompanhamento { background: var(--white); }

.content-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 22px; padding: 28px 24px;
  box-shadow: 0 10px 26px rgba(11,23,38,0.05);
  border-top: 3px solid var(--gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 18px 38px rgba(11,23,38,0.09), inset 0 0 0 1.5px rgba(184,151,90,0.3);
}

.card h3 {
  font-family: 'Merriweather', serif; color: var(--navy);
  font-size: 1.02rem; margin-bottom: 12px; line-height: 1.35;
}

.card p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.65; }

.card ul { list-style: none; padding: 0; }

.card ul li {
  font-size: 0.92rem; color: var(--text-soft);
  padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; gap: 8px; align-items: center;
}

.card ul li:last-child { border-bottom: none; }

.card ul li::before { content: '•'; color: var(--gold); font-size: 1.2rem; line-height: 1; flex-shrink: 0; }

/* ── SINAIS ── */
#sinais { background: var(--gray-light); }

.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 22px; padding: 28px 24px;
  box-shadow: var(--shadow); text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(11,23,38,0.09), inset 0 0 0 1.5px rgba(184,151,90,0.3);
  border-color: rgba(184,151,90,0.28);
}

.step-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(184,151,90,0.12); border: 1px solid rgba(184,151,90,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.step-card:hover .step-icon {
  transform: rotate(-5deg) scale(1.12);
  background: rgba(184,151,90,0.2);
}

.step-card h3 { font-family: 'Merriweather', serif; color: var(--navy); font-size: 1rem; margin-bottom: 10px; }

.step-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.65; }

/* ── FAQ ── */
#faq { background: var(--off-white); }

.faq-list { max-width: 860px; }

.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  font-weight: 700; color: var(--navy); font-size: 0.95rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 20px 2px;
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.3rem; color: var(--gold); flex-shrink: 0; line-height: 1;
  transition: transform 0.35s ease;
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease;
}

.faq-answer.is-open { opacity: 1; transform: translateY(0); }

.faq-answer p { padding: 0 2px 20px; font-size: 0.92rem; color: var(--text-soft); line-height: 1.75; margin: 0; }

/* ── TELEMEDICINA ── */
#telemedicina {
  background:
    radial-gradient(circle at top left, rgba(184,151,90,0.10), transparent 30%),
    linear-gradient(180deg, var(--navy) 0%, #0e1a2a 100%);
}

#telemedicina .section-title { color: var(--white); }

#telemedicina .section-label { color: var(--gold-light); }

.tele-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }

.tele-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px; padding: 30px 26px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.18); backdrop-filter: blur(10px);
}

.tele-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 16px; line-height: 1.75; }

.tele-card h3 { font-family: 'Merriweather', serif; color: var(--white); font-size: 1.1rem; margin-bottom: 18px; }

.tele-list { list-style: none; padding: 0; margin: 0 0 24px 0; }

.tele-list li {
  position: relative; padding: 9px 0 9px 24px;
  color: rgba(255,255,255,0.82); font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tele-list li:last-child { border-bottom: none; }

.tele-list li::before { content: '•'; position: absolute; left: 8px; top: 8px; color: var(--gold); font-size: 1.2rem; line-height: 1; }

.btn-tele {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--navy); text-decoration: none;
  font-weight: 700; font-size: 0.9rem; padding: 14px 24px;
  border-radius: 12px; transition: transform 0.25s ease, background 0.25s ease;
  box-shadow: 0 10px 24px rgba(184,151,90,0.22); min-height: 48px;
}

.btn-tele:hover { background: var(--gold-light); transform: translateY(-2px); }

.tele-step {
  display: flex; gap: 14px; margin-bottom: 18px;
  align-items: flex-start; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tele-step:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.step-num {
  background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.9rem;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tele-step:hover .step-num {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(184,151,90,0.22), 0 0 18px 4px rgba(184,151,90,0.35);
}

.tele-step p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* ── CTA FINAL ── */
#cta-final {
  background: linear-gradient(135deg, var(--gold) 0%, #a07840 100%);
  padding: 70px 5%; text-align: center;
}

#cta-final h2 { font-family: 'Merriweather', serif; color: var(--navy); font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 12px; }

#cta-final p { color: rgba(11,23,38,0.85); font-size: 1rem; margin-bottom: 30px; }

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-cta-navy, .btn-cta-white {
  text-decoration: none; font-weight: 700; font-size: 0.9rem;
  padding: 14px 28px; border-radius: 10px;
  transition: opacity 0.2s, transform 0.2s; min-height: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}

.btn-cta-navy { background: var(--navy); color: white; }

.btn-cta-white { background: white; color: var(--navy); }

.btn-cta-navy:hover, .btn-cta-white:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── FOOTER ── */
footer { background: #08111c; padding: 44px 5% 36px; text-align: center; }

.footer-logo {
  display: block;
  width: 230px;
  max-width: 60vw;
  height: auto;
  margin: 0 auto 6px;
  opacity: 0.95;
}

footer p { color: rgba(255,255,255,0.45); font-size: 0.8rem; line-height: 1.8; }

footer a { color: var(--gold); text-decoration: none; }

.footer-medbook { font-weight: 600; border-bottom: 1px solid rgba(184,151,90,0.45); transition: color 0.2s, border-color 0.2s; }

.footer-medbook:hover { color: var(--gold-light, #D4B07A); border-color: var(--gold-light, #D4B07A); }

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 16px 0 10px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.social-links a:hover {
  color: var(--gold);
  border-color: rgba(184,151,90,0.4);
  background: rgba(184,151,90,0.06);
}

.social-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
}

.social-icon-instagram {
  width: 20px;
  height: 20px;
}

.btn-social-nav {
  background: transparent !important;
  border: none !important;
  padding: 4px !important;
  border-radius: 7px !important;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-social-nav svg { transition: transform 0.25s ease; }

.btn-social-nav:hover svg { transform: scale(1.12); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 200; }

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: rgba(37,211,102,0.55);
  animation: whatsappPulse 2.4s ease-out infinite;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-pulse { animation-play-state: paused; opacity: 0; }

@keyframes whatsappPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float a {
  position: relative;
  z-index: 1;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white; text-decoration: none;
  font-weight: 700; font-size: 0.85rem; padding: 12px 20px;
  border-radius: 50px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s; min-height: 48px;
}

.whatsapp-float a:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 300;
  pointer-events: none;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(184,151,90,0.45); outline-offset: 3px; border-radius: 10px;
}

/* ── RESPONSIVO ── */
@media (max-width: 1100px) {
  .hero-inner, .sobre-grid, .tele-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-brand { font-size: 0.78rem; gap: 8px; }
  .nav-logo { height: 38px; }
  .nav-actions a, .nav-actions button.btn-agendar { font-size: 0.72rem; padding: 7px 10px; }
  .nav-brand-text { max-width: 128px; }
  .nav-name-full { display: none; }
  .nav-name-short { display: block; }
  .nav-brand .nav-sub { display: none; }
  .hero-copy { max-width: 100%; min-width: 0; }
  .hero-copy h1 { font-size: clamp(1.5rem, 6.6vw, 2.1rem); line-height: 1.18; text-wrap: pretty; }
  .hero-copy p { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-hero, .btn-tele, .btn-cta-navy, .btn-cta-white { width: 100%; text-align: center; }
  .hero-photo-card img { height: 300px; }
  .whatsapp-float a span.label { display: none; }
  main section { padding: 60px 5%; }
}

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Parallax decorativo ── */
[data-parallax] { will-change: transform; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
  animation: floatOrb 10s ease-in-out infinite;
}

.hero-orb-1 {
  width: 220px; height: 220px;
  top: -40px; right: -60px;
  background: rgba(184,151,90,0.18);
}

.hero-orb-2 {
  width: 160px; height: 160px;
  bottom: 30px; left: -40px;
  background: rgba(255,255,255,0.06);
  animation-delay: 2s;
}

@keyframes floatOrb {
  0%, 100% { translate: 0 0; }
  50% { translate: -8px 18px; }
}

.hero-orb-3 {
  width: 340px; height: 340px;
  top: 32%; left: 38%;
  background: transparent;
  border: 1.5px solid rgba(184,151,90,0.16);
  filter: none; animation: none;
}

/* ── Mesh gradient animado do hero ── */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 25%, rgba(184,151,90,0.24), transparent 45%),
    radial-gradient(circle at 82% 18%, rgba(184,151,90,0.14), transparent 42%),
    radial-gradient(circle at 75% 82%, rgba(255,255,255,0.07), transparent 46%),
    radial-gradient(circle at 12% 85%, rgba(184,151,90,0.12), transparent 42%);
  background-size: 180% 180%;
  animation: meshShift 20s ease-in-out infinite;
}

@keyframes meshShift {
  0%   { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%; }
  50%  { background-position: 35% 55%, 65% 45%, 45% 60%, 55% 35%; }
  100% { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%; }
}

.hero-grid-layer {
  position: absolute;
  inset: -12% -4%;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, rgba(0,0,0,0.9), transparent 70%);
  mask-image: radial-gradient(ellipse at 30% 40%, rgba(0,0,0,0.9), transparent 70%);
}

.parallax-glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(30px);
}

.parallax-glow-gold {
  background: radial-gradient(circle, rgba(184,151,90,0.16), transparent 65%);
  top: -140px; right: -120px;
}

.parallax-glow-navy {
  background: radial-gradient(circle, rgba(11,23,38,0.14), transparent 65%);
  bottom: -180px; left: -140px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  [data-parallax] { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
