/* =============================================
   leojianoti.com.br — Folha de estilos
   Fontes: Playfair Display (títulos) + DM Sans (corpo)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:      #FFFFFF;
  --ink:     #1A1714;
  --muted:   #7A746C;
  --accent:  #C8553D;
  --line:    #E0DBD4;
  --card-bg: #F7F4EF;
  --max-w:   880px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

/* ── HEADER ─────────────────────────────────── */

header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--ink);
  text-decoration: none;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--accent);
}

/* ── HERO ────────────────────────────────────── */

.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.hero-text h1 em {
  color: var(--accent);
  font-style: italic;
}

.hero-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--accent);
}

.hero-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  flex-shrink: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

/* ── SECTIONS ────────────────────────────────── */

section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 32px;
  border-bottom: 1px solid var(--line);
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 32px;
}

/* ── INVESTMENT CARDS ────────────────────────── */

.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.invest-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  padding: 28px 24px 52px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.invest-card:hover {
  border-color: var(--accent);
  box-shadow: 4px 4px 0 var(--accent);
}

.invest-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.invest-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.invest-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.invest-portfolio {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.invest-arrow {
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-size: 20px;
  color: var(--line);
  transition: color 0.2s, transform 0.2s;
}

.invest-card:hover .invest-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

/* ── CONTENT GRID (Textos + Vídeos) ─────────── */

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.col-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 24px;
}

.item-list {
  list-style: none;
}

.item-list li {
  border-top: 1px solid var(--line);
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.item-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.2s;
}

.item-list a:hover {
  padding-left: 6px;
}

.item-list a:hover .ia {
  color: var(--accent);
}

.item-info .it {
  font-size: 14px;
  line-height: 1.4;
}

.item-info .im {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.ia {
  color: var(--line);
  font-size: 16px;
  flex-shrink: 0;
  transition: color 0.2s;
}

.item-no-link {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.item-no-link .it {
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.item-no-link .im {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.see-all .ia {
  color: var(--accent);
}

/* ── FOOTER ──────────────────────────────────── */

footer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 32px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .logo {
  font-size: 18px;
  color: var(--muted);
}

footer span {
  font-size: 12px;
  color: var(--muted);
}

/* ── RESPONSIVE ──────────────────────────────── */

@media (max-width: 700px) {
  header {
    padding: 32px 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  nav {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero {
    padding: 48px 20px 56px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-photo {
    width: 220px;
    margin-left: 0;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .invest-grid {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  section {
    padding: 48px 20px;
  }

  footer {
    padding: 32px 20px 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
