/* ═══════════════════════════════════════════════════════
   Evellin Amorim · Turismóloga — style.css
   Estética: editorial minimalista, refinada, limpa
   Fontes: Cormorant Garamond (display) + DM Sans (corpo)
   ═══════════════════════════════════════════════════════ */

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

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --wine:            #501327;
  --wine-deep:       #5C1630;
  --wine-light:      #9E3155;
  --wine-mist:       rgba(122,31,61,.06);
  --nude:            #F5EFE8;
  --nude-dark:       #EDE4D9;
  --sand:            #D4C4B0;
  --ink:             #1A1410;
  --ink-soft:        #2E2520;
  --muted:           #6B5C50;
  --muted-light:     #9C8E82;
  --white:           #FDFAF7;
  --dark-section:    #501327;
  --alt-section:     #F9F5F0;

  --font-display:    'Playfair Display', serif;
  --font-body:       'DM Sans', system-ui, sans-serif;

  --radius:          4px;
  --radius-card:     6px;

  --transition:      0.25s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.45s cubic-bezier(.4,0,.2,1);

  --max-w:           1600px;
  --section-pad:     96px;

  /* CORREÇÃO 1: padding lateral responsivo — menos espaço em branco nas laterais */
  --px: clamp(16px, 4vw, 72px);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── UTILITIES ── */
.section-label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wine);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--wine);
  flex-shrink: 0;
}
.section-label.light { color: var(--sand); }
.section-label.light::before { background: var(--sand); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--wine); }
.section-title.light { color: var(--white); }

.section-sub {
  font-size: .95rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  height: 64px;
  background: rgba(253,250,247,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
#navbar.scrolled {
  border-bottom-color: var(--nude-dark);
  background: rgba(253,250,247,.97);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--wine);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .01em;
}
.nav-logo-role {
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--wine); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 8px 20px;
  background: var(--wine) !important;
  color: var(--white) !important;
  border-radius: var(--radius);
  font-size: .78rem !important;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--wine-deep) !important; color: var(--white) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: var(--transition);
}

/* CORREÇÃO 2: Nav responsivo — tablet e mobile */
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px var(--px) 32px;
    border-bottom: 1px solid var(--nude-dark);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition-slow), opacity var(--transition-slow);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: .9rem;
    border-bottom: 1px solid var(--nude-dark);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta { display: inline-block; margin-top: 8px; }
  .nav-hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  column-gap: 64px;
  padding: 100px var(--px) 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-left {
  grid-column: 1;
  grid-row: 1;
  padding: 48px 0;
  animation: heroFadeUp .8s cubic-bezier(.4,0,.2,1) both;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-tag-line {
  width: 32px; height: 1px;
  background: var(--wine);
}
.hero-tag span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wine);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.hero-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
}

.hero-role {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-outline, .btn-wine, .btn-cta-wine {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary, .btn-wine, .btn-cta-wine {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--white);
}
.btn-primary:hover, .btn-wine:hover, .btn-cta-wine:hover {
  background: var(--wine-deep);
  border-color: var(--wine-deep);
}
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

/* Hero right */
.hero-right {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: heroFadeUp .8s .15s cubic-bezier(.4,0,.2,1) both;
}

.hero-photo-box {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--nude-dark) 0%, var(--sand) 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted-light);
  font-size: .82rem;
  letter-spacing: .08em;
  border: 1px solid var(--sand);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 340px;
}
.hero-chip {
  font-size: .75rem;
  font-weight: 500;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--nude-dark);
  border-radius: 20px;
  color: var(--muted);
}

/* Stats bar */
.hero-stats-bar {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--nude-dark);
  padding-top: 28px;
  margin-top: 16px;
}
.hstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px 0 0;
}
.hstat + .hstat {
  padding-left: 32px;
  border-left: 1px solid var(--nude-dark);
}
.hstat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--wine);
  line-height: 1;
}
.hstat-label {
  font-size: .75rem;
  color: var(--muted-light);
  letter-spacing: .05em;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/* Tablet */
@media (max-width: 860px) {
  #hero {
    grid-template-columns: 1fr;
    padding: 80px var(--px) 32px;
    min-height: auto;
    row-gap: 32px;
  }
  .hero-left { padding: 24px 0 0; }
  .hero-right { grid-column: 1; grid-row: 2; }
  .hero-stats-bar {
    grid-column: 1; grid-row: 3;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .hero-photo-box { max-width: 100%; aspect-ratio: 16/9; }
}

/* Mobile */
@media (max-width: 520px) {
  .hero-stats-bar { grid-template-columns: 1fr; gap: 0; }
  .hstat + .hstat {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--nude-dark);
    padding-top: 14px;
    margin-top: 14px;
  }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   SECTIONS SHARED LAYOUT
   ═══════════════════════════════════════════════════════ */
section {
  padding: var(--section-pad) var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
}
section.section-alt {
  background: var(--alt-section);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
section.section-alt > * {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--px);
  padding-right: var(--px);
}
section.section-dark {
  background: var(--dark-section);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
section.section-dark > * {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--px);
  padding-right: var(--px);
}
section.section-nude {
  background: var(--nude);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
section.section-nude > * {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

/* Alt / dark section fix for carousels */
.section-alt .carousel-wrapper,
.section-dark .carousel-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
}

@media (max-width: 640px) {
  section { padding: 56px var(--px); }
}

/* ═══════════════════════════════════════════════════════
   SOBRE
   ═══════════════════════════════════════════════════════ */
#sobre {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.sobre-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 80px;
}

.sobre-photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--nude) 0%, var(--nude-dark) 100%);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted-light);
  font-size: .8rem;
  border: 1px solid var(--sand);
}

.sobre-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 20px;
  border-left: 2px solid var(--wine);
}

.sobre-content p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: .95rem;
  line-height: 1.75;
}
.sobre-content p strong { color: var(--ink); font-weight: 600; }

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--muted);
}
.skill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wine);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  #sobre { grid-template-columns: 1fr; gap: 40px; }
  .sobre-visual { position: static; }
  .sobre-photo-placeholder { aspect-ratio: 16/9; }
}

/* ═══════════════════════════════════════════════════════
   TCC
   ═══════════════════════════════════════════════════════ */

#tcc {
  background: var(--alt-section);
}

#tcc .section-sub { margin-bottom: 48px; }

.tcc-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.tcc-visual {
  background: var(--wine);
  color: var(--white);
  padding: 48px 40px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
}
.tcc-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .7;
}
.tcc-title-card {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--white);
}
.tcc-university {
  font-size: .82rem;
  line-height: 1.6;
  opacity: .75;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 20px;
  margin-top: auto;
}
.tcc-university strong { opacity: 1; font-weight: 600; }

.tcc-desc h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.tcc-desc p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.tcc-desc p strong { color: var(--ink); }

.tcc-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.tcc-highlight {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1.5px solid var(--wine);
  border-radius: 3px;
  color: var(--wine);
}

@media (max-width: 860px) {
  .tcc-inner { grid-template-columns: 1fr; gap: 32px; }
  .tcc-visual { position: static; padding: 32px 24px; }
}

/* ═══════════════════════════════════════════════════════
   CAROUSEL — SHARED
   ═══════════════════════════════════════════════════════ */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.carousel-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.carousel-btn {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--nude-dark);
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}
.carousel-btn:hover:not(:disabled) {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--white);
}
.carousel-btn:disabled { opacity: .3; cursor: default; }

.section-alt .carousel-btn,
.section-dark .carousel-btn {
  background: var(--white);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sand);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.carousel-dot.active {
  background: var(--wine);
  width: 20px;
  border-radius: 3px;
}

/* ── CAROUSEL CARD ── */
.carousel-card {
  flex: 0 0 calc(33.33% - 16px);
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--nude-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(122,31,61,.10);
  border-color: var(--sand);
}

.card-thumb {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
.wine-bg     { background: linear-gradient(135deg, var(--wine) 0%, var(--wine-light) 100%); }
.baby-blue-bg { background: linear-gradient(135deg, #B8D4E8 0%, #8FB8D2 100%); }
.nude-bg     { background: linear-gradient(135deg, var(--nude) 0%, var(--nude-dark) 100%); }
.dark-bg     { background: linear-gradient(135deg, #2E2520 0%, #1A1410 100%); }

.card-body {
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-category {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
}
.card-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: var(--muted-light);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--nude-dark);
}
.card-link {
  color: var(--wine);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .04em;
}

/* Experience card specifics */
.exp-type-estagio   { color: var(--wine) !important; }
.exp-type-extensao  { color: #3A7CA0 !important; }
.exp-type-voluntario { color: #2A8A8A !important; }

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.exp-tag {
  font-size: .72rem;
  font-weight: 500;
  padding: 3px 10px;
  background: var(--nude);
  border-radius: 3px;
  color: var(--muted);
}

/* Tablet: 2 cards */
@media (max-width: 860px) {
  .carousel-card { flex: 0 0 calc(50% - 12px); min-width: 0; }
}
/* Mobile: 1 card */
@media (max-width: 520px) {
  .carousel-card { flex: 0 0 100%; min-width: 0; }
  .carousel-btn { width: 36px; height: 36px; font-size: .9rem; }
}

/* ═══════════════════════════════════════════════════════
   ÁREAS DE ATUAÇÃO
   ═══════════════════════════════════════════════════════ */
#areas {
  padding: var(--section-pad) var(--px);
}
#areas .section-label,
#areas .section-title,
#areas .section-sub {
  padding: 0;
}

.areas-grid {
  max-width: var(--max-w);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.area-item {
  padding: 40px 32px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;

  background: var(--white);
  border: 1px solid var(--nude-dark);

  transition: transform var(--transition),
              box-shadow var(--transition),
              border-color var(--transition);
}

/* Hover elegante */
.area-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  border-color: var(--sand);
}

.area-item:nth-child(1) {
  background: linear-gradient(180deg, #FFFFFF 0%, #F9F5F0 100%);
}

.area-item:nth-child(2) {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5EFE8 100%);
}

.area-item:nth-child(3) {
  background: linear-gradient(180deg, #FFFFFF 0%, #EFE6DC 100%);
}

.area-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,255,255,.15);
  line-height: 1;
}
.area-icon { font-size: 1.8rem; }

.area-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

.area-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

.area-item::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--wine);
  display: block;
  margin-bottom: 8px;
}



/* Tablet: 2 colunas */
@media (max-width: 860px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .area-item { padding: 32px 24px; }
}
/* Mobile: 1 coluna */
@media (max-width: 520px) {
  .areas-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   FORMAÇÃO
   ═══════════════════════════════════════════════════════ */
.formacao-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 22px;
  bottom: 0;
  width: 1px;
  background: var(--nude-dark);
}
.timeline-item:last-child::before { display: none; }

.timeline-dot {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 2px;
}
.timeline-dot.gold { border-color: var(--wine); }
.timeline-dot-inner {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sand);
}
.timeline-dot-inner.gold { background: var(--wine); }

.timeline-year {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 4px;
}
.timeline-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.timeline-item.gold .timeline-title { color: var(--wine); }
.timeline-sub {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Creds */
.creds-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cred-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--alt-section);
  border: 1px solid var(--nude-dark);
  border-radius: var(--radius-card);
}
.cred-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.cred-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.cred-sub {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px;
}
.cred-status {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: var(--wine);
  color: var(--white);
  border-radius: 3px;
}
.cred-status.pending {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--sand);
}

@media (max-width: 860px) {
  .formacao-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ═══════════════════════════════════════════════════════
   CONTATO
   ═══════════════════════════════════════════════════════ */
.contato-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.contato-left p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contato-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contato-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--nude-dark);
  border-radius: var(--radius-card);
  background: var(--white);
  transition: all var(--transition);
}
.contato-link:hover {
  border-color: var(--wine);
  transform: translateX(4px);
}
.contato-link-icon { font-size: 1.2rem; flex-shrink: 0; }
.contato-link-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 2px;
}
.contato-link-value {
  font-size: .9rem;
  color: var(--ink);
  font-weight: 500;
}

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--nude-dark);
  border-radius: var(--radius-card);
  padding: 40px;
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--ink);
}

.contato-form { display: flex; flex-direction: column; gap: 18px; }

#honeypot { display: none; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-label span { color: var(--wine); }

.form-input, .form-textarea {
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--ink);
  background: var(--alt-section);
  border: 1.5px solid var(--nude-dark);
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--wine);
  background: var(--white);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-light); }
.form-textarea { min-height: 130px; resize: vertical; }

.form-error {
  font-size: .75rem;
  color: #C0392B;
  min-height: 16px;
}
.char-count {
  font-size: .72rem;
  color: var(--muted-light);
  text-align: right;
}

.form-feedback {
  font-size: .88rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  display: none;
}
.form-feedback.success {
  display: block;
  background: #EAF5EA;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
}
.form-feedback.error {
  display: block;
  background: #FEECEC;
  color: #C62828;
  border: 1px solid #FFCDD2;
}

@media (max-width: 860px) {
  .contato-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════════════════
   CORREÇÃO 3: FOOTER — Gradiente Vinho + toque Nude
   Substituindo o marrom escuro (#1A1410)
   ═══════════════════════════════════════════════════════ */
footer {
  background: linear-gradient(135deg, var(--wine-deep) 0%, var(--wine) 60%, var(--wine-light) 100%);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 40px var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

/* Brilho nude sutil no canto superior */
footer::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(245,239,232,.10) 0%, transparent 65%);
  pointer-events: none;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.95);
  position: relative;
  z-index: 1;
}
.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.footer-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 3px;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
}
.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  position: relative;
  z-index: 1;
}

@media (max-width: 520px) {
  footer { padding: 32px var(--px); gap: 12px; }
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL INIT SCRIPT (inline)
   ═══════════════════════════════════════════════════════ */
