/* ── Tokens ─────────────────────────────────────────────────────────── */
:root {
  --accent:       #994065;
  --accent-light: #c96090;
  --accent-dark:  #7d3454;
  --accent-pale:  #f7e0ec;
  --bg:          #ffffff;
  --bg-soft:     #fdf7f9;
  --bg-dark:     #1a0a0f;
  --fg:          #1a0a0f;
  --fg-muted:    #6b4f57;
  --radius:      12px;
  --gap:         clamp(20px, 5vw, 48px);
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Container ──────────────────────────────────────────────────────── */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ── Reveal ─────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Header ─────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem var(--gap);
  display: flex;
  align-items: center;
  background: rgba(26, 10, 15, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.back-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.back-link:hover { color: var(--accent); }
.back-link svg { width: 14px; height: 14px; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.6rem;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(211,179,192,0.4);
}
.btn--primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 24px rgba(211,179,192,0.55);
}
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--dark {
  background: var(--bg-dark);
  color: #fff;
}
.btn--dark:hover { background: #2d1019; }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../banner.jpg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,10,15,0.88) 0%,
    rgba(26,10,15,0.45) 50%,
    rgba(26,10,15,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent-light);
}
.hero-desc {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── Section base ───────────────────────────────────────────────────── */
.section { padding: 5.5rem 0; }
.section--soft { background: var(--bg-soft); }
.section--dark {
  background: var(--bg-dark);
  color: #fff;
}
.section-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--accent); }
.section--dark .section-title em { color: var(--accent); }

/* ── Sobre ──────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}
.about-label {
  position: sticky;
  top: 6rem;
}
.about-photo {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(153, 64, 101, 0.18);
}
.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.about-text p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--fg); }
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--accent-pale);
  color: var(--accent-dark);
}

/* ── Videos ─────────────────────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.video-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--bg-dark);
  cursor: pointer;
}
.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,15,0.5) 0%, transparent 50%);
  pointer-events: none;
}
.video-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* ── Instagram Feed ──────────────────────────────────────────────────── */
.ig-feed-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 0.5rem;
}
.ig-feed-wrapper {
  display: flex;
  justify-content: center;
  margin: 2.5rem auto 2rem;
  max-width: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(153, 64, 101, 0.14);
  background: #fff;
}
.ig-feed-iframe {
  width: 100%;
  min-width: 0;
  height: 720px;
  border: 0;
  display: block;
}
@media (max-width: 480px) {
  .ig-feed-iframe { height: 640px; }
}

/* ── Agendar ─────────────────────────────────────────────────────────── */
.agendar-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.agendar-phone {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  margin: 1rem 0 1.5rem;
  letter-spacing: -0.01em;
}
.agendar-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
}
.agendar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ── Links / Redes ──────────────────────────────────────────────────── */
.links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid rgba(211,179,192,0.2);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.link-item:hover {
  background: var(--accent-pale);
  border-color: var(--accent);
  transform: translateX(4px);
}
.link-meta { display: flex; flex-direction: column; gap: 0.15rem; }
.link-platform {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.link-handle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
}
.link-arrow {
  font-size: 1.1rem;
  color: var(--accent);
  transition: transform 0.2s;
}
.link-item:hover .link-arrow { transform: translate(3px, -3px); }

/* ── Facebook ────────────────────────────────────────────────────────── */
.fb-section { text-align: center; }
.fb-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  min-height: 500px;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem var(--gap);
  font-size: 0.82rem;
}
.site-footer a {
  color: var(--accent);
  transition: opacity 0.2s;
}
.site-footer a:hover { opacity: 0.75; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero {
    display: block;
    min-height: auto;
    padding-bottom: 0;
    background: var(--bg-dark);
  }
  .hero-media {
    position: relative;
    inset: auto;
    height: 100vw;
    max-height: 520px;
    overflow: hidden;
  }
  .hero-bg { transform: none !important; }
  .hero-overlay {
    background: linear-gradient(to bottom, transparent 30%, rgba(26,10,15,0.55) 100%);
  }
  .hero-content {
    position: static;
    padding: 2.5rem 0 3.5rem;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-label { position: static; }
  .video-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
}
@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .agendar-actions { flex-direction: column; align-items: center; }
}
