/* about.css */

@import url('https://db.onlinewebfonts.com/c/38025932dce48e268882d955f7a66826?family=Alte+Haas+Grotesk');

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }

:root {
  --bg:    #000;
  --fg:    #fff;
  --muted: #666;
  --sep:   #1a1a1a;
  --font:  'Alte Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --side:  5.208vw;
}

html { height: 100%; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

:focus-visible { outline: 2px solid #F60028; outline-offset: 3px; border-radius: 2px; }

/* ── Cursor ─────────────────────────────── */
#cursor { position: fixed; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); }
#cursor-dot {
  width: 16px; height: 16px;
  background: #F60028; border-radius: 50%; opacity: .9;
  transition: width .3s cubic-bezier(.16,1,.3,1), height .3s cubic-bezier(.16,1,.3,1);
}

/* ── Header ─────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 28px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center;
}
.nav-logo img { height: 1.667vw; width: auto; display: block; }
.nav-center { display: flex; justify-content: center; }
.nav-right  { display: flex; justify-content: flex-end; gap: 1.5em; }
header a {
  font-size: 12px; font-weight: 400; letter-spacing: .08em;
  text-transform: uppercase; color: #fff; text-decoration: none; opacity: .9;
}
header a:hover { opacity: 1; }

/* ── Hero logo ───────────────────────────── */
.hero-logo { position: fixed; bottom: var(--side); left: var(--side); z-index: 50; }
.hero-logo img { width: 11.979vw; height: auto; display: block; }

/* ── Scroll container ────────────────────── */
#scroll-container {
  position: fixed;
  top: 0; left: 0; right: 0;
  will-change: transform;
}

/* ── Marquee ─────────────────────────────── */
.about-marquee-wrap {
  overflow: hidden;
  padding-top: calc(52px + 3.5vw);
  padding-bottom: 2.5vw;
  border-bottom: 1px solid var(--sep);
}
.about-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 18s linear infinite;
}
.about-marquee-track span {
  font-size: clamp(40px, 5.5vw, 90px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  flex-shrink: 0;
}
.about-marquee-track span i {
  font-style: normal;
  font-size: 0.28em;
  vertical-align: middle;
  margin: 0 0.5em;
  opacity: 0.7;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Layout principal ────────────────────── */
.about-main {
  display: grid;
  grid-template-columns: 4fr 8fr;
  padding-left: 27%;
  padding-right: 0;
  align-items: start;
}

/* ── Coluna foto ─────────────────────────── */
.about-col-photo {
  padding-right: 10%;
  padding-top: 2.5vw;
  padding-bottom: 2.5vw;
}
.about-col-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 852 / 1135;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
}

/* ── Details abaixo da foto ──────────────── */
.about-photo-details {
  margin-top: 2.5vw;
  padding-top: 2.5vw;
  border-top: 1px solid var(--sep);
}
.about-photo-details .about-label { margin-bottom: 1.2vw; }

/* ── Coluna info ─────────────────────────── */
.about-col-info {
  border-left: 1px solid var(--sep);
  padding-left: 4%;
  padding-right: var(--side);
  padding-top: 2.5vw;
  padding-bottom: 4vw;
}

.about-section {
  padding-bottom: 2.5vw;
  margin-bottom: 2.5vw;
  border-bottom: 1px solid var(--sep);
}
.about-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.about-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2vw;
}

.about-list {
  list-style: none;
}
.about-list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
  letter-spacing: .02em;
}

.about-bio-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 1.2em;
  max-width: 60ch;
}
.about-bio-text:last-child { margin-bottom: 0; }

/* ── Contact row ─────────────────────────── */
.about-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5vw 3vw;
  align-items: center;
}
.about-contact-row a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  line-height: 2;
}
.about-contact-row a:hover { color: #fff; }

/* ── Footer ──────────────────────────────── */
footer {
  padding: 24px var(--side);
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--muted);
  letter-spacing: .04em; text-transform: uppercase;
  border-top: 1px solid var(--sep);
}

/* ── Tablet (<768px) ─────────────────────── */
@media (max-width: 767px) {
  * { cursor: auto !important; }
  #cursor { display: none; }
  body { overflow: auto; }
  #scroll-container {
    position: relative; top: auto; left: 0; right: 0;
    will-change: auto; transform: none !important;
  }

  header { padding: 14px 20px; }
  .nav-logo img { height: 5vw; }
  header a { font-size: 11px; }
  .hero-logo img { width: 28vw; }

  .about-marquee-wrap { padding-top: calc(48px + 5vw); padding-bottom: 5vw; }
  .about-marquee-track span { font-size: clamp(28px, 7vw, 56px); }

  .about-main {
    padding-left: 5vw;
    padding-right: 5vw;
    grid-template-columns: 1fr;
  }

  .about-col-photo { padding-right: 0; padding-top: 5vw; }
  .about-col-photo img { border-radius: 8px; }
  .about-photo-details { margin-top: 6vw; padding-top: 6vw; }
  .about-photo-details .about-label { margin-bottom: 4vw; }

  .about-col-info {
    border-left: none;
    border-top: 1px solid var(--sep);
    padding-left: 0;
    padding-right: 0;
    padding-top: 5vw;
  }

  .about-section { padding-bottom: 6vw; margin-bottom: 6vw; }
  .about-label { margin-bottom: 4vw; }
  .about-list li { font-size: 13px; }
  .about-bio-text { font-size: 13px; }

  .about-contact-row { gap: 2vw 5vw; }

  footer { padding: 20px 5vw; font-size: 10px; }
}
