/* ─────────────────────────────────────────
   DR. CARLOS ALBERTO — HERO
   Full-height · Azul Royal escuro
   ───────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(145deg, #0A1640 0%, #152D6E 45%, #1E3A8A 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Textura sutil */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* Glow dourado sutil */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 15%, rgba(212,175,55,0.10) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Barra de topo */
.hero__topbar {
  position: relative;
  z-index: 2;
  padding: 80px var(--space-6, 24px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-xl, 1280px);
  margin-inline: auto;
  width: 100%;
  padding-inline: var(--space-6, 24px);
}

.hero__topbar-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__topbar-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* Conteúdo central */
.hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 52%;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: var(--space-8, 32px) var(--space-6, 24px) var(--space-8, 32px);
  max-width: var(--container-xl, 1280px);
  margin-inline: auto;
  width: 100%;
}

/* Coluna de texto */
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
  border-radius: 2px;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 20px;
}

.hero__heading span {
  display: block;
}

.hero__heading .light {
  font-weight: 300;
  color: rgba(255,255,255,0.65);
}

.hero__heading .accent {
  color: var(--gold);
}

.hero__rule {
  width: 48px;
  height: 2px;
  background: var(--gold-line);
  margin-bottom: 16px;
  border-radius: 2px;
  flex-shrink: 0;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Prova social */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.03em;
}

.hero__proof-stars {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
}

.hero__proof-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

/* Coluna visual — foto com fades e badge */
.hero__visual {
  position: relative;
  overflow: hidden;
  align-self: stretch;
}

/* Fade esquerda — mescla com o fundo */
.hero__visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 32%;
  background: linear-gradient(to right, #0A1640 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Fade inferior */
.hero__visual::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(to top, #0A1640 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%);
}

/* Badge flutuante sobre a foto */
.hero__photo-badge {
  position: absolute;
  bottom: 52px;
  left: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 22, 64, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.hero__photo-badge-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  line-height: 1;
  flex-shrink: 0;
}

.hero__photo-badge-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero__photo-badge-rating {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.hero__photo-badge-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.25));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line { animation: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .hero__body { grid-template-columns: 1fr 48%; }
}

@media (max-width: 1023px) {
  .hero__body { grid-template-columns: 1fr 44%; }
  .hero__heading { font-size: clamp(2rem, 5vw, 3.5rem); }
}

@media (max-width: 767px) {
  .hero__topbar { display: none; }
  .hero__body {
    grid-template-columns: 1fr;
    padding-top: 96px;
    padding-bottom: 3rem;
    overflow: hidden;
  }
  .hero__visual { display: none; }
  .hero__text { min-width: 0; }
  .hero__label { white-space: normal; flex-wrap: wrap; }
  .hero__heading { font-size: clamp(2rem, 11vw, 3.5rem); margin-bottom: 16px; word-break: break-word; overflow-wrap: break-word; }
  .hero__sub { font-size: 14px; max-width: 100%; }
  .hero__proof { flex-wrap: wrap; gap: 12px; }
  .hero__proof-item { min-width: 0; flex-shrink: 1; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll { display: none; }
}
