/* ============================================================
   LUMINA CLINIC · sections.css
   Estilos específicos de cada seção da página
   ============================================================ */

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

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 64px 80px var(--pad-x);
  position: relative;
  z-index: 2;
}
/* Em telas largas, segura o conteúdo num bloco legível encostado à direita
   da coluna, eliminando o vão de branco exagerado à esquerda. */
.hero-left > * { max-width: 540px; width: 100%; }
@media (min-width: 1500px) {
  .hero-left { padding-left: 0; align-items: flex-end; }
  .hero-left > * { margin-right: 80px; }
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(54px, 5vw, 88px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp .9s .4s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: var(--mid);
  max-width: 460px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp .9s .6s forwards;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  opacity: 0;
  animation: fadeUp .9s .8s forwards;
}

.hero-stats {
  margin-top: 60px;
  display: flex;
  gap: 44px;
  opacity: 0;
  animation: fadeUp .9s 1s forwards;
}
.stat-item { border-left: 2px solid var(--gold); padding-left: 16px; }
.stat-number { font-family: var(--serif); font-size: 32px; font-weight: 300; line-height: 1; }
.stat-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--mid); margin-top: 5px; }

.hero-right { position: relative; overflow: hidden; }
.hero-img-main {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.04);
  animation: zoomOut 1.4s .1s ease forwards;
}
.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 28%);
}

.hero-badge {
  position: absolute;
  bottom: 56px; left: 48px;
  z-index: 10;
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 20px 28px;
  max-width: 280px;
  box-shadow: 0 20px 60px rgba(42,36,32,.12);
  opacity: 0;
  animation: slideRight 1s 1.2s forwards;
}
.badge-icon { font-size: 20px; margin-bottom: 8px; color: var(--gold); }
.badge-text { font-size: 12px; font-weight: 400; line-height: 1.5; }
.badge-sub { font-size: 10px; color: var(--mid); letter-spacing: .08em; margin-top: 4px; }

/* ---------- BRAND BAR (marquee) ---------- */
.brand-bar { background: var(--dark); padding: 20px 0; overflow: hidden; }
.brand-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.brand-item {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sand);
  display: flex;
  align-items: center;
}
.brand-item::after { content: '✦'; color: var(--gold); font-size: 8px; margin-left: 56px; }

/* ---------- SERVICES ---------- */
#services { padding: 120px var(--pad-x); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.service-card {
  background: var(--white);
  padding: 44px 40px;
  border: 1px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.service-card:hover { border-color: var(--sand); box-shadow: 0 12px 48px rgba(42,36,32,.06); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-num { font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--warm); line-height: 1; margin-bottom: 20px; }
.service-name { font-family: var(--serif); font-size: 23px; font-weight: 500; margin-bottom: 12px; }
.service-desc { font-size: 13px; line-height: 1.75; color: var(--mid); }

.service-card.featured { background: var(--dark); }
.service-card.featured .service-num { color: rgba(255,255,255,.08); }
.service-card.featured .service-name { color: var(--white); }
.service-card.featured .service-desc { color: var(--sand); }
.service-flag {
  display: inline-block;
  margin-top: 16px;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold-lt);
  padding: 5px 12px;
}

/* ---------- ABOUT ---------- */
#about { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; overflow: hidden; }
.about-img-col { position: relative; overflow: hidden; }
.about-img-col img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .6s; }
.about-img-col:hover img { transform: scale(1.03); }
.about-img-overlay { position: absolute; bottom: 40px; right: 0; background: var(--gold); padding: 24px 32px; color: var(--white); max-width: 220px; }
.overlay-num { font-family: var(--serif); font-size: 40px; font-weight: 300; line-height: 1; }
.overlay-text { font-size: 11px; letter-spacing: .12em; margin-top: 6px; opacity: .9; text-transform: uppercase; }

.about-content { padding: 90px var(--pad-x) 90px 72px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.about-content .section-title { margin-bottom: 28px; }
.about-content p { font-size: 15px; line-height: 1.85; color: var(--mid); margin-bottom: 22px; }
.about-content p strong { color: var(--dark); font-weight: 500; }
.about-signature { font-family: var(--serif); font-size: 28px; font-style: italic; color: var(--gold); margin: 12px 0 20px; }
.about-btn { width: fit-content; }

/* ---------- TEAM ---------- */
#team { padding: 120px var(--pad-x); }
#team .section-header { margin-left: 0; }
.team-single { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.team-photo { position: relative; }
.team-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.team-photo::after { content: ''; position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px; border: 1px solid var(--gold); z-index: -1; }

.team-role { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.team-name { font-family: var(--serif); font-size: clamp(30px, 3vw, 42px); font-weight: 400; line-height: 1.1; margin-bottom: 10px; }
.team-cro { font-size: 12px; letter-spacing: .1em; color: var(--mid); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--sand); }
.team-text { font-size: 14px; line-height: 1.8; color: var(--mid); margin-bottom: 18px; }
.team-text strong { color: var(--dark); font-weight: 500; }
.team-creds { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.team-creds li { font-size: 11px; letter-spacing: .08em; color: var(--dark); border: 1px solid var(--sand); padding: 8px 14px; }
.team-creds li span { color: var(--gold); font-style: italic; }

/* ---------- TESTIMONIALS ---------- */
#testimonials { background: var(--dark); padding: 120px var(--pad-x); }
#testimonials .section-tag { color: var(--gold-lt); }
#testimonials .section-tag::before { background: var(--gold-lt); }
#testimonials .section-title { color: var(--white); }
.testimonials-note { color: var(--sand); font-size: 14px; line-height: 1.8; max-width: 620px; margin: -40px 0 56px; font-style: italic; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 40px 36px; transition: background .3s, border-color .3s; }
.testi-card:hover { background: rgba(255,255,255,.07); border-color: rgba(184,154,114,.3); }
.testi-icon { color: var(--gold); font-size: 20px; margin-bottom: 18px; }
.testi-h { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.testi-text { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.7); }

/* ---------- CTA ---------- */
#cta { background: var(--gold); padding: 76px var(--pad-x); display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-text-group { flex: 1; }
.cta-label { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.cta-title { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 50px); font-weight: 300; color: var(--white); line-height: 1.12; }
.cta-title em { font-style: italic; }
.cta-actions { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }

/* ---------- FOOTER ---------- */
footer { background: var(--dark); padding: 84px var(--pad-x) 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 60px; margin-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--white); letter-spacing: .1em; margin-bottom: 16px; }
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: 13px; line-height: 1.75; color: var(--sand); max-width: 320px; margin-bottom: 26px; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: var(--sand); text-decoration: none; font-size: 12px; letter-spacing: .05em; transition: border-color .25s, color .25s, background .25s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,154,114,.08); }
.footer-col-title { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 13px; color: var(--sand); text-decoration: none; transition: color .25s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 16px; font-size: 13px; color: var(--sand); align-items: flex-start; line-height: 1.55; }
.footer-contact-item a { color: var(--sand); text-decoration: none; transition: color .25s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item em { font-style: italic; color: var(--gold-lt); font-size: 12px; }
.contact-icon { flex-shrink: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255,255,255,.3); letter-spacing: .06em; }

/* ---------- KEYFRAMES ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes zoomOut { from { transform: scale(1.04); } to { transform: scale(1); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: none; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
