/* Juliana Dantas — Site (Layout A · Hi-fi) */

:root {
  --accent: #2E1C24;          /* wine */
  --accent-soft: #C9A9B3;
  --ink: #6B3D4E;
  --ink-2: #2A2624;
  --paper: #FBF8F4;
  --paper-2: #F0EAE4;
  --paper-3: #E5DDD2;
  --line: #2E1C24;
  --muted: #6E625B;

  --section-py: 140px;
  --section-px: 64px;
  --max-w: 1440px;

  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-sans: "Raleway", "Helvetica Neue", Arial, sans-serif;
  --f-script: "Caveat", cursive;
}

[data-density="compact"] {
  --section-py: 88px;
}

[data-color="sage"]      { --accent: #5C6B4E; --accent-soft: #B6C0A6; }
[data-color="terracotta"]{ --accent: #B05A3C; --accent-soft: #E2B59E; }
[data-color="midnight"]  { --accent: #2D3142; --accent-soft: #A6ABBD; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
  font-family: var(--f-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

.shell { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--section-px); }

a { color: inherit; text-decoration: none; }

/* ─── Type ─── */
.eyebrow {
  font-family: var(--f-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
}
.script {
  font-family: var(--f-script);
  font-weight: 400;
  color: var(--accent);
}
.display {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.display em { font-style: italic; color: var(--accent); font-weight: 400; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-family: var(--f-sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1.5px solid var(--ink);
  background: var(--ink); color: var(--paper);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--accent); border-color: var(--accent); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--light { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn--light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── Nav ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,244,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31,27,26,0.08);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__mark {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav__mark img { width: 100%; height: 100%; object-fit: contain; }
.nav__name {
  font-family: var(--f-display); font-size: 16px; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase;
}
.nav__name span { display: block; font-size: 9px; letter-spacing: 0.4em; color: var(--muted); margin-top: 2px; }
.nav__menu { display: flex; gap: 32px; font-size: 13px; letter-spacing: 0.06em; }
.nav__menu a { position: relative; padding: 6px 0; }
.nav__menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width .25s ease;
}
.nav__menu a:hover::after { width: 100%; }
.nav__cta { font-size: 12px; }
.nav__hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__hamburger span {
  display: block; height: 1.5px; width: 100%;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Hero (Layout A: text-left, photo-right) ─── */
.hero {
  padding: clamp(40px, 8vh, 96px) 0 clamp(60px, 10vh, 120px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
[data-hero="left"] .hero__grid { grid-template-columns: 1fr 1.05fr; }
[data-hero="left"] .hero__copy { order: 2; }
[data-hero="left"] .hero__photo { order: 1; }

[data-hero="full"] .hero__grid {
  grid-template-columns: 1fr;
  gap: 0;
}
[data-hero="full"] .hero__photo {
  position: relative;
  height: 78vh; min-height: 600px;
  overflow: hidden;
}
[data-hero="full"] .hero__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 100%);
}
[data-hero="full"] .hero__copy {
  position: absolute; bottom: 80px; left: var(--section-px); right: var(--section-px);
  max-width: 720px; z-index: 2; color: var(--paper);
}
[data-hero="full"] .hero__copy .display,
[data-hero="full"] .hero__copy .hero__lede,
[data-hero="full"] .hero__copy .eyebrow { color: var(--paper); }
[data-hero="full"] .hero__copy .display em { color: var(--accent-soft); }
[data-hero="full"] .hero__copy .eyebrow { color: var(--accent-soft); }
[data-hero="full"] .shell--hero-full { max-width: 100%; padding: 0; position: relative; }

.hero__copy { display: flex; flex-direction: column; gap: 24px; }
.hero__title {
  font-size: clamp(56px, 7vw, 96px);
}
.hero__title .script { font-size: 0.86em; line-height: 1; }
.hero__lede { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 460px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.hero__meta {
  display: flex; gap: 24px; align-items: center;
  margin-top: 16px; padding-top: 24px;
  border-top: 1px solid rgba(31,27,26,0.12);
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.hero__meta span:not(:last-child)::after {
  content: '·'; margin-left: 24px; color: var(--accent);
}

.hero__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__photo::before {
  content: ''; position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1.5px solid var(--accent);
  border-radius: 4px; z-index: -1;
}
.hero__photo-wrap { position: relative; }

.hero__sticker {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--paper);
  padding: 14px 20px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.hero__sticker-dot {
  width: 8px; height: 8px; border-radius: 999px; background: #4FB573;
  box-shadow: 0 0 0 4px rgba(79,181,115,0.18);
}

/* ─── Ticker ─── */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}
.ticker__track {
  display: flex; gap: 56px; padding: 22px 0;
  font-family: var(--f-display); font-style: italic; font-size: 22px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker__track span { display: inline-flex; align-items: center; gap: 56px; }
.ticker__track span::after {
  content: '✦'; color: var(--accent); font-size: 14px; font-style: normal;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Sections shared ─── */
section { scroll-margin-top: 80px; }
.section { padding: var(--section-py) 0; }
.section__head {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px;
  margin-bottom: 64px; align-items: end;
}
.section__head .eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.section__head .eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--accent);
}
.section__title { font-size: clamp(40px, 5.4vw, 72px); }
.section__lede { color: var(--muted); font-size: 17px; line-height: 1.6; max-width: 520px; }

/* ─── Sobre ─── */
.sobre__grid {
  display: grid; grid-template-columns: 0.85fr 1fr; gap: 80px;
  align-items: center;
}
.sobre__photos { position: relative; }
.sobre__photos .photo-main {
  aspect-ratio: 4/5; overflow: hidden; border-radius: 4px;
}
.sobre__photos .photo-main img { width: 100%; height: 100%; object-fit: cover; }
.sobre__photos .photo-secondary {
  position: absolute; bottom: -40px; right: -40px;
  width: 45%; aspect-ratio: 3/4;
  border: 8px solid var(--paper);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.sobre__photos .photo-secondary img { width: 100%; height: 100%; object-fit: cover; }
.sobre__photos .signature {
  position: absolute; top: -28px; right: 24px;
  font-family: var(--f-script); font-size: 56px; color: var(--accent);
  transform: rotate(-6deg);
}

.sobre__copy { display: flex; flex-direction: column; gap: 24px; }
.sobre__copy h2 { font-size: clamp(36px, 4vw, 56px); margin: 0; line-height: 1.05; }
.sobre__copy p { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin: 0; max-width: 540px; }
.sobre__copy .lead { font-family: var(--f-display); font-style: italic; font-size: 22px; color: var(--accent); line-height: 1.5; }

.creds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 16px; padding-top: 32px; border-top: 1px solid rgba(31,27,26,0.1); }
.creds__item { display: flex; flex-direction: column; gap: 4px; }
.creds__num { font-family: var(--f-display); font-size: 40px; color: var(--accent); line-height: 1; font-weight: 400; }
.creds__lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.tag {
  padding: 6px 14px; border: 1px solid rgba(31,27,26,0.2);
  border-radius: 999px; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}

/* ─── Especialidades ─── */
.areas { background: var(--paper-2); }
.areas .section__head { align-items: end; }

.areas__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.area {
  background: var(--paper);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 320px;
  position: relative;
  transition: background .25s ease, color .25s ease;
  cursor: pointer;
}
.area:hover { background: var(--ink); color: var(--paper); }
.area:hover .area__num { color: var(--accent-soft); }
.area:hover .area__more { color: var(--paper); }
.area:hover .area__icon { border-color: var(--paper); }
.area__num {
  font-family: var(--f-display); font-style: italic;
  font-size: 14px; color: var(--accent);
  letter-spacing: 0.08em;
}
.area__icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.area__icon svg { width: 22px; height: 22px; }
.area__title {
  font-family: var(--f-display); font-size: 26px; font-weight: 400;
  line-height: 1.05; margin: 0;
}
.area__desc { font-size: 13px; line-height: 1.55; opacity: 0.75; flex: 1; margin: 0; }
.area__more {
  font-family: var(--f-sans); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto;
}

/* ─── Diferenciais ─── */
.diferenciais__grid {
  display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 64px;
  align-items: start;
}
.diferenciais__list { display: flex; flex-direction: column; }
.dif {
  display: grid; grid-template-columns: 80px 1fr 40px;
  gap: 32px; padding: 36px 0;
  border-top: 1px solid rgba(31,27,26,0.15);
  align-items: start;
  transition: padding-left .25s ease;
}
.dif:last-child { border-bottom: 1px solid rgba(31,27,26,0.15); }
.dif:hover { padding-left: 12px; }
.dif__num { font-family: var(--f-display); font-style: italic; font-size: 36px; color: var(--accent); line-height: 1; }
.dif__title { font-family: var(--f-display); font-size: 28px; font-weight: 400; margin: 0 0 8px; line-height: 1.1; }
.dif__desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; max-width: 520px; }
.dif__arrow { font-family: var(--f-display); font-size: 24px; color: var(--accent); align-self: center; }

/* ─── Minha história (atleta) — dark ─── */
.historia { background: var(--ink); color: var(--paper); }
.historia .section__title,
.historia .section__lede,
.historia .eyebrow,
.historia .display { color: var(--paper); }
.historia .eyebrow { color: var(--accent-soft); }
.historia .display em { color: var(--accent-soft); }
.historia .section__lede { color: rgba(251,248,244,0.7); }

.historia__hero {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 64px; margin-bottom: 64px; align-items: end;
}
.historia__hero .display { font-size: clamp(48px, 6vw, 88px); line-height: 1; }
.historia__hero p { color: rgba(251,248,244,0.7); font-size: 16px; line-height: 1.7; margin: 0; max-width: 380px; }

.historia__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 8px;
}
.historia__item { position: relative; overflow: hidden; }
.historia__item img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s ease; }
.historia__item:hover img { transform: scale(1.04); }
.historia__item .caption {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
  color: var(--paper);
  padding: 8px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.historia__item--tall { grid-row: span 2; }

.historia__quote {
  margin-top: 64px;
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.15);
}
.historia__quote .mark {
  font-family: var(--f-display); font-size: 80px; color: var(--accent-soft); line-height: 0.5;
}
.historia__quote p {
  font-family: var(--f-display); font-style: italic; font-size: 28px;
  color: var(--paper); line-height: 1.4; margin: 0; max-width: 800px;
  font-weight: 300;
}

/* ─── Depoimentos ─── */
.depo__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.depo {
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid rgba(31,27,26,0.1);
  display: flex; flex-direction: column; gap: 20px;
  border-radius: 4px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.depo:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.depo__mark { font-family: var(--f-display); font-size: 64px; color: var(--accent); line-height: 0.5; height: 24px; }
.depo__text { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin: 0; flex: 1; }
.depo__author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(31,27,26,0.1); }
.depo__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--paper-3); overflow: hidden; flex-shrink: 0; }
.depo__avatar img { width: 100%; height: 100%; object-fit: cover; }
.depo__name { font-family: var(--f-display); font-size: 18px; font-weight: 500; line-height: 1.1; }
.depo__role { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

/* ─── Galeria ─── */
.galeria { background: var(--paper-2); }
.galeria__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px; gap: 8px;
}
.galeria__item { overflow: hidden; }
.galeria__item img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease; }
.galeria__item:hover img { transform: scale(1.03); }
.galeria__item--wide { grid-column: span 2; }
.galeria__item--tall { grid-row: span 2; }

/* ─── Instagram ─── */
.insta__head {
  display: grid; grid-template-columns: 1fr auto; gap: 32px;
  align-items: end; margin-bottom: 48px;
}
.insta__head h2 { font-family: var(--f-display); font-size: clamp(36px, 4.4vw, 60px); margin: 0; font-weight: 300; }
.insta__head h2 em { color: var(--accent); font-style: italic; }
.insta__handle { font-family: var(--f-script); font-size: 32px; color: var(--accent); margin-top: 4px; }
.insta__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.insta__item {
  aspect-ratio: 1; overflow: hidden;
  position: relative;
  background: var(--paper-3);
}
.insta__item img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transition: transform .4s ease; }
.insta__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,27,26,0.5));
  opacity: 0; transition: opacity .3s ease;
}
.insta__item:hover img { transform: scale(1.05); }
.insta__item:hover::after { opacity: 1; }

/* ─── CTA / Footer ─── */
.cta {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}
.cta__inner { position: relative; z-index: 1; }
.cta .eyebrow { color: var(--accent-soft); }
.cta__title {
  font-family: var(--f-display); font-size: clamp(60px, 8vw, 120px);
  font-weight: 300; line-height: 0.95; color: var(--paper);
  margin: 24px 0 32px;
}
.cta__title em { font-style: italic; }
.cta__sub { font-size: 18px; max-width: 540px; margin: 0 auto 40px; line-height: 1.6; opacity: 0.85; }

.footer { background: var(--line); color: rgba(251,248,244,0.7); padding: 64px 0 32px; font-size: 13px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand { font-family: var(--f-display); color: var(--paper); font-size: 24px; letter-spacing: 0.18em; }
.footer__brand span { display: block; font-size: 11px; letter-spacing: 0.32em; color: var(--accent-soft); margin-top: 6px; font-family: var(--f-sans); }
.footer__col h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper); margin: 0 0 16px; font-weight: 500; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a:hover { color: var(--paper); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(251,248,244,0.5);
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .hero__grid, .sobre__grid, .diferenciais__grid, .historia__hero, .insta__head { grid-template-columns: 1fr; gap: 48px; }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .historia__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 220px 220px 220px; }
  .historia__item--tall { grid-row: auto; }
  .galeria__grid { grid-template-columns: repeat(3, 1fr); }
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__menu { display: none; }
  .depo__grid { grid-template-columns: 1fr; }
  .section__head { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  :root { --section-py: 72px; --section-px: 24px; }
  .hero__title { font-size: 44px; }
  .hero__meta { flex-wrap: wrap; gap: 12px; }
  .areas__grid, .galeria__grid, .insta__grid { grid-template-columns: repeat(2, 1fr); }
  .area { padding: 20px 16px; min-height: 240px; }
  .area__title { font-size: 18px; }
  .historia__grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 220px); }
  .historia__quote p { font-size: 20px; }
  .sobre__photos .photo-secondary { bottom: -20px; right: 0; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav { position: sticky; top: 0; z-index: 100; }
  .nav__inner { padding-left: 16px; padding-right: 16px; }
  .nav__menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(31,27,26,0.08);
    flex-direction: column; align-items: flex-start;
    gap: 0; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 8px 0;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a { width: 100%; padding: 14px 24px; border-bottom: 1px solid rgba(31,27,26,0.06); }
  .nav__menu a:last-child { border-bottom: none; }
  .dif { grid-template-columns: 48px 1fr; gap: 16px; padding: 24px 0; }
  .dif__expand { display: none; }
  .dif__num { font-size: 24px; }
  .dif__title { font-size: 20px; }
  .insta__handle { font-size: 22px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .ticker__track { font-size: 18px; gap: 32px; }
}
