/* ===================================================
   DR. BRUNO NORONHA — CIRURGIÃO BUCOMAXILOFACIAL
   Lipo de Papada Landing Page — Dark Gold Premium Theme
   =================================================== */

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C87A;
  --gold-dark: #A07830;
  --gold-glow: rgba(201, 168, 76, 0.22);
  --gold-subtle: rgba(201, 168, 76, 0.08);
  --black: #050505;
  --surface: #0D0D0D;
  --surface-2: #141414;
  --surface-3: #1C1C1C;
  --surface-card: rgba(255, 255, 255, 0.03);
  --border: rgba(201, 168, 76, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --text: #EDE8E0;
  --text-muted: rgba(237, 232, 224, 0.6);
  --text-dim: rgba(237, 232, 224, 0.35);
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 60px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.6);
  --nav-height: 72px;
  --announce-height: 42px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===================== UTILITIES & CONTAINER ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.text-center {
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 16px;
}

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

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.75;
}

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

.section-header .section-sub {
  margin: 0 auto;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 100px;
  text-decoration: none;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px var(--gold-glow);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.45);
  filter: brightness(1.08);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border-radius: 100px;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

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

/* ===================== ANNOUNCE BAR ===================== */
.announce-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  height: var(--announce-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1001;
}

.announce-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}

.announce-dot {
  width: 6px;
  height: 6px;
  background: var(--black);
  border-radius: 50%;
  opacity: 0.5;
}

.announce-close {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  color: var(--black);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
  line-height: 1;
  padding: 4px 8px;
}

.announce-close:hover { opacity: 1; }

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: var(--announce-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease, top 0.4s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 16px var(--gold-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================== HERO SECTION ===================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + var(--announce-height) + 40px) 0 80px 0;
  background: radial-gradient(circle at 80% 30%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(13, 13, 13, 0.8) 0%, var(--black) 100%);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--black) 100%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
}

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

.hero-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-proof-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.hero-rating .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1rem;
}

.rating-text {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-cro-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 10px;
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.25), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.hero-img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 6px);
  object-fit: cover;
  display: block;
}

.hero-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  pointer-events: none;
}

.hero-corner.tl { top: -2px; left: -2px; border-width: 2px 0 0 2px; }
.hero-corner.br { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; }

.hero-float-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: rgba(13, 13, 13, 0.95);
  border: 1px solid var(--border);
  padding: 14px 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.badge-icon {
  font-size: 1.4rem;
  color: var(--gold);
}

.badge-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--white);
}

.badge-text span {
  font-size: 0.8rem;
  color: var(--gold-light);
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.trust-suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  position: absolute;
  top: 0;
  right: -18px;
}

.trust-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
}

/* ===================== SITUAÇÕES SECTION ===================== */
.situations-section {
  padding: 100px 0;
  background: var(--black);
}

.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.situation-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 42px 32px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.situation-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.situation-featured {
  border-color: var(--border);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, var(--surface-card) 100%);
}

.situation-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
  transition: var(--transition);
}

.situation-card:hover .situation-icon-wrap {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.08);
}

.situation-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.situation-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
}

.card-gold-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 24px;
  transition: width var(--transition);
}

.situation-card:hover .card-gold-line {
  width: 100%;
}

/* ===================== RESULTADOS / CASOS CLÍNICOS ===================== */
.results-gallery-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.results-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.case-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.case-image-wrap {
  position: relative;
  background: #000;
  overflow: hidden;
}

.case-image-wrap img {
  width: 100%;
  transition: transform 0.5s ease;
  display: block;
}

.case-card:hover .case-image-wrap img {
  transform: scale(1.03);
}

.case-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(5, 5, 5, 0.88);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.case-info {
  padding: 24px;
}

.case-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.case-subtext {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.results-disclaimer {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 16px;
}

/* ===================== BENEFÍCIOS SECTION ===================== */
.benefits-section {
  padding: 100px 0;
  background: var(--black);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  position: relative;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
}

.benefit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.benefit-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  transition: var(--transition);
}

.benefit-card:hover .benefit-number {
  color: var(--gold);
}

.benefit-icon {
  font-size: 1.8rem;
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.benefit-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===================== O ESPECIALISTA / SOBRE ===================== */
.about-section {
  padding: 110px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.015);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.about-photo {
  width: 100%;
  display: block;
  object-fit: cover;
}

.about-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}

.about-corner.tl { top: -2px; left: -2px; border-width: 2px 0 0 2px; }
.about-corner.br { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; }

.about-photo-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(5, 5, 5, 0.92);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--radius);
  text-align: center;
  backdrop-filter: blur(12px);
}

.badge-year {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cred-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-bio {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-bio strong {
  color: var(--text);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 32px 0;
}

.value-item {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}

.value-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.value-content strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 4px;
}

.value-content span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

/* ===================== BASTIDORES / GALERIA ===================== */
.gallery-section {
  padding: 100px 0;
  background: var(--black);
}

.gallery-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 320px;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-item:hover img {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 5, 5, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.bento-overlay span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

/* ===================== DEPOIMENTOS ===================== */
.testimonials-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
}

.testimonial-featured {
  border-color: var(--border);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, var(--surface-card) 100%);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -10px;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
}

.testimonial-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-left: auto;
}

/* ===================== FAQ ===================== */
.faq-section {
  padding: 100px 0;
  background: var(--black);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

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

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 28px 24px 28px;
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================== LOCALIZAÇÃO ===================== */
.location-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.clinic-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.clinic-main-img {
  width: 100%;
  display: block;
}

.clinic-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}

.clinic-corner.tl { top: -2px; left: -2px; border-width: 2px 0 0 2px; }
.clinic-corner.br { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; }

.clinic-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(5, 5, 5, 0.9);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.location-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.location-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.loc-item {
  display: flex;
  gap: 16px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.loc-icon {
  font-size: 1.3rem;
  color: var(--gold);
}

.loc-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 2px;
}

.loc-text p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #020202;
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 28px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 36px;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-contact-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-contact-item strong {
  display: block;
  color: var(--text);
  font-size: 0.88rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 24px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-cro {
  color: var(--gold);
  font-weight: 600;
}

/* ===================== FLOATING WHATSAPP & MOBILE STICKY ===================== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-svg {
  width: 32px;
  height: 32px;
}

.whatsapp-badge-pulse {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: #EF4444;
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 5, 0.96);
  border-top: 1px solid var(--border);
  padding: 12px 18px;
  z-index: 990;
  backdrop-filter: blur(16px);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.7);
}

.btn-mobile {
  width: 100%;
  padding: 14px 20px;
  font-size: 0.85rem;
}

/* ===================== POP-UP MODAL FORM ===================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px;
  position: relative;
  box-shadow: var(--shadow-card), var(--shadow-gold);
  transform: scale(0.92) translateY(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--gold-subtle);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 28px;
  text-align: center;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}

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

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-label .required {
  color: var(--gold);
}

.form-input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--gold);
  background: var(--surface-3);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-input::placeholder {
  color: var(--text-dim);
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

select.form-input:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

select.form-input option {
  background: var(--surface);
  color: var(--text);
}

/* Radio Grids & Interactive Pills */
.radio-grid {
  display: grid;
  gap: 8px;
}

.age-grid {
  grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
}

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

.location-grid-pills {
  grid-template-columns: 1fr 1fr;
}

.radio-card {
  cursor: pointer;
  position: relative;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-pill {
  display: block;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  transition: var(--transition);
  user-select: none;
}

.procedure-grid .radio-pill {
  text-align: left;
  padding: 11px 16px;
}

.radio-card:hover .radio-pill {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.radio-card input:checked + .radio-pill {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  color: var(--gold-light);
  font-weight: 600;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.15);
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
  padding: 16px 24px;
  font-size: 0.95rem;
}

.form-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--text-dim);
  text-align: center;
}

.form-security-note svg {
  color: var(--gold);
}

/* ===================== RESPONSIVE BREAKPOINTS ===================== */
@media (max-width: 1024px) {
  .hero-container,
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .situations-grid,
  .results-cases-grid,
  .benefits-grid,
  .testimonials-grid,
  .gallery-bento {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .trust-items {
    flex-wrap: wrap;
    gap: 32px;
  }

  .trust-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .announce-bar {
    display: none;
  }

  .header {
    top: 0;
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid var(--border-subtle);
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 28px;
    gap: 20px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-section {
    padding: calc(var(--nav-height) + 30px) 0 60px 0;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-bar {
    display: block;
  }

  .whatsapp-btn {
    bottom: 80px;
    right: 20px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===================== HERO LOCATION BADGE ===================== */
.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  animation: locationPulse 3s ease-in-out infinite;
}

.hero-location-badge svg {
  color: var(--gold);
  flex-shrink: 0;
}

.hero-location-badge span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-location-badge strong {
  color: var(--gold-light);
  font-weight: 700;
}

@keyframes locationPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.15); }
  50% { box-shadow: 0 0 20px 4px rgba(201, 168, 76, 0.25); }
}

/* ===================== MOBILE CAROUSEL ===================== */
.case-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.case-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.carousel-slide {
  min-width: 0;
}

.carousel-img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease;
}

.carousel-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.carousel-prev,
.carousel-next {
  display: none;
}

.carousel-dots {
  display: none;
}

/* Mobile carousel behavior */
@media (max-width: 768px) {
  .case-carousel {
    display: flex;
    gap: 0;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  .carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 4px;
  }

  .carousel-prev,
  .carousel-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(5, 5, 5, 0.88);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  }

  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }

  .carousel-prev:hover,
  .carousel-next:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.08);
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-subtle);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
  }

  .carousel-dot.active {
    background: var(--gold);
    border-color: var(--gold-light);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
    transform: scale(1.2);
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .case-carousel {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
