:root{
  /* === PALETA OFICIAL (logo) === */
  --brand-1:#ffc043;   /* amarelo claro */
  --brand-2:#f8a404;   /* dourado */
  --brand-3:#fb8401;   /* laranja */
  --brand-ink:#5e1202; /* marrom escuro */

  /* === ALIASES (pra NÃO quebrar seu layout atual) === */
  --brand:  var(--brand-2);
  --brand2: var(--brand-2);

  /* Dark base */
  --dark:#2a160f;
  --dark2:#1d0f0a;

  /* ✅ você usa isso, então tem que existir */
  --dark-1: var(--dark);
  --dark-2: var(--dark2);

  /* Layout */
  --max:1120px;
  --radius-xl:28px;

  /* Base */
  --bg:#fbf7f2;
  --paper:#ffffff;
  --ink:#1c1410;
  --muted:rgba(28,20,16,.64);
  --line:rgba(28,20,16,.12);

  /* Accent */
  --accent:var(--brand-2);
  --accent-2:var(--brand-3);
  --accent-soft:rgba(248,164,4,.16);

  --shadow:0 18px 48px rgba(16,10,8,.12);
  --shadow2:0 12px 28px rgba(16,10,8,.10);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{ overflow-x:hidden; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  overflow-x:hidden; /* ✅ evita qualquer estouro lateral */
}
img,svg,video,canvas{ max-width:100%; height:auto; display:block; } /* ✅ anti-vazamento */
a{color:inherit;text-decoration:none}
strong{font-weight:800}

.container{width:min(var(--max), calc(100% - 48px)); margin:0 auto}
.muted{color:var(--muted)}
.accent{color:var(--brand-2)}
.center{text-align:center}
.sub{max-width:70ch;margin:10px auto 0;color:var(--muted);line-height:1.7}

/* ✅ evita o header fixo “comer” o topo ao clicar nos anchors */
section[id]{scroll-margin-top: 92px}

/* =========================
   Tipografia
========================= */
.h2{
  font-family:"Instrument Serif",serif;
  font-weight:400;
  letter-spacing:-.4px;
  font-size:clamp(38px,4vw,56px);
  line-height:.96;
  margin:10px 0 0;
}
.h2--light{color:#fff}

.kicker{
  color:rgba(194,85,30,.9);
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
}
.kicker--gold{color:rgba(255,192,67,.92)}

/* =========================
   Loader CEP
========================= */
.field{position:relative; display:block; margin-bottom:12px}
.cep-loader{
  position:absolute;
  right:14px; top:50%;
  transform:translateY(-50%);
  width:18px;height:18px;border-radius:50%;
  border:2px solid rgba(224,160,58,.25);
  border-top-color:#E0A03A;
  animation:cepSpin .7s linear infinite;
  opacity:0; pointer-events:none;
  transition:.2s ease;
}
.field.loading .cep-loader{opacity:1}
@keyframes cepSpin{
  to{ transform:translateY(-50%) rotate(360deg); }
}
.field.loading input{opacity:.75}

/* =========================
   Botões
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  font-weight:700;
  border:1px solid rgba(248,164,4,.35);
  background:rgba(248,164,4,.12);
  color:var(--brand-ink);
  cursor:pointer;
  box-shadow:0 10px 24px rgba(248,164,4,.12);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{
  transform:translateY(-1px);
  background:rgba(248,164,4,.18);
  box-shadow:0 14px 30px rgba(248,164,4,.18);
}
.btn--solid{
  background:linear-gradient(135deg,var(--brand-2),var(--brand-3));
  border-color:rgba(255,255,255,.32);
  color:#1b120d;
  box-shadow:0 18px 42px rgba(248,164,4,.22);
}
.btn--solid:hover{box-shadow:0 22px 56px rgba(248,164,4,.28)}
.btn--outline{
  background:transparent;
  border:1px solid rgba(255,192,67,.55);
  color:#fff;
  box-shadow:none;
}
.btn--outline:hover{background:rgba(255,192,67,.10)}
.btn--ghost{
  background:rgba(248,164,4,.12);
  border:1px solid rgba(248,164,4,.35);
  color:var(--brand-ink);
  box-shadow:0 10px 24px rgba(248,164,4,.10);
}
.btn--wide{width:100%}

/* =========================
   Header
========================= */
.header{
  position:fixed; top:0; left:0; right:0;
  z-index:50;
  background:rgba(251,247,242,.78);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{display:flex;align-items:center;gap:12px; min-width:0}
.brand__logo{
  display:block;
  height:46px;
  width:auto;
  max-width:260px;
  object-fit:contain;
}

.nav{display:flex;gap:20px;align-items:center}
.nav__link{
  font-size:14px;
  color:rgba(28,20,16,.70);
  font-weight:600;
  padding:8px 2px;
  position:relative;
}
.nav__link:hover{color:var(--brand-ink)}
.nav__link.is-active{color:var(--brand-ink)}
.nav__link.is-active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-10px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--brand-2),var(--brand-3));
}

.header__actions{display:flex;align-items:center;gap:12px}

/* Burger */
.burger{
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid rgba(26,20,16,.14);
  background:rgba(255,255,255,.75);
  display:none;
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px;height:2px;
  background:rgba(26,20,16,.82);
  margin:6px auto;
  border-radius:999px;
}

/* Drawer */
.drawer{
  position:fixed; inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  pointer-events:none;
  transition:.2s ease;
}
.drawer.is-open{opacity:1; pointer-events:auto}
.drawer__panel{
  position:absolute;
  right:14px; top:70px;
  width:min(360px, calc(100vw - 28px));
  background:rgba(255,255,255,.92);
  border:1px solid rgba(26,20,16,.12);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.drawer__panel a{
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(26,20,16,.10);
  background:rgba(251,247,242,.70);
  font-weight:700;
}

/* =========================
   Hero
========================= */
.hero{
  position:relative;
  min-height:92vh;
  display:grid;
  align-items:end;
  padding-top:86px;
  background:linear-gradient(180deg,var(--dark-1),var(--dark-2));
  overflow:hidden; /* ✅ evita “estouro” de bg/overlay */
}
.hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:var(--hero-pos-x,50%) var(--hero-pos-y,15%);
  filter:saturate(1.06) contrast(1.02);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(248,164,4,.16), transparent 62%),
    linear-gradient(180deg, rgba(94,18,2,.60), rgba(29,15,10,.78));
}
.hero__content{
  position:relative;
  padding-bottom:64px;
  color:#fff;
  min-width:0; /* ✅ */
}
.meta-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.88);
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  padding:10px 12px;
  border-radius:999px;
  max-width:100%;
}
.pin{opacity:.9}

.hero__title{
  font-family:"Instrument Serif",serif;
  font-weight:400;
  font-size:clamp(56px,6.3vw,92px);
  line-height:.88;
  margin:18px 0 10px;
  letter-spacing:-.6px;
}
.hero__accent{color:var(--brand-2)}
.hero__lead{
  color:rgba(255,255,255,.88);
  font-size:18px;
  line-height:1.6;
  max-width:62ch;
  margin:0 0 24px;
}
.hero__cta{display:flex;gap:14px;flex-wrap:wrap}
.hero__scroll{
  margin-top:28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.72);
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:12px;
}
.chev{animation:floaty 1.6s ease-in-out infinite}
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(6px)}}

/* =========================
   Sections
========================= */
.section{padding:86px 0}
.section--light{background:var(--bg)}
.section--alt{
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(255,192,67,.18), transparent 62%),
    var(--bg);
}
.section--dark{
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(248,164,4,.14), transparent 62%),
    linear-gradient(180deg,var(--dark-1),var(--dark-2));
  color:#fff;
}
.section--dark .muted{color:rgba(255,255,255,.70)}

/* =========================
   Sobre
========================= */
.two-col{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:38px;
  align-items:start;
}
.media-card{
  position:relative;
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
  overflow:hidden;
  background:#ddd;
  border:1px solid var(--line);
}
.media-card__img{
  height:520px;
  background-size:cover;
  background-position:center;
}
.media-card__tag{
  position:absolute;
  left:18px; bottom:18px;
  background:rgba(0,0,0,.55);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  border-radius:16px;
  padding:12px 14px;
  backdrop-filter:blur(10px);
}
.tag__title{
  display:block;
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  opacity:.9;
}
.tag__text{display:block;margin-top:6px;font-weight:700}

.content p{color:rgba(26,20,16,.72);line-height:1.8;margin:12px 0}
.content strong{color:rgba(26,20,16,.92)}

.info-cards{margin-top:24px;display:grid;gap:12px}
.info-card{
  display:flex;gap:14px;
  align-items:flex-start;
  padding:16px;
  border-radius:16px;
  background:var(--paper);
  border:1px solid var(--line);
}
.info-card__icon{
  width:44px;height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(194,85,30,.10);
  border:1px solid rgba(194,85,30,.20);
  color:var(--brand);
  font-weight:900;
  flex:0 0 auto;
}
.info-card__title{font-weight:800}
.info-card__text{margin-top:4px;color:rgba(26,20,16,.68);line-height:1.5;font-size:13px}

/* =========================
   Stats (Impacto)
========================= */
.stat-grid{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.stat-card{
  border-radius:22px;
  padding:26px 22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:var(--shadow2);
  min-height:220px;
}
.stat-num{
  font-family:"Instrument Serif",serif;
  font-size:62px;
  line-height:.9;
  color:var(--brand2);
}
.stat-title{font-weight:800;margin-top:10px}
.stat-text{margin:10px 0 0;color:rgba(255,255,255,.78);line-height:1.6;font-size:13px}

/* =========================
   Timeline
========================= */
.timeline{position:relative;margin-top:44px;padding:10px 0}
.timeline__line{
  position:absolute;
  left:50%;
  top:0; bottom:0;
  width:2px;
  transform:translateX(-50%);
  background:linear-gradient(180deg, rgba(248,164,4,.55), rgba(251,132,1,.25));
}
.t-item{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  margin:22px 0;
  gap:24px;
}
.t-item.left .t-card{grid-column:1}
.t-item.left .t-dot{grid-column:2;justify-self:start}
.t-item.right .t-card{grid-column:2}
.t-item.right .t-dot{grid-column:1;justify-self:end}

.t-card{
  border-radius:18px;
  padding:18px 18px;
  background:rgba(255,255,255,.90);
  border:1px solid rgba(26,20,16,.12);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  max-width:520px;
}
.t-top{display:flex;justify-content:flex-end}
.t-year{
  font-weight:800;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(194,85,30,.90);
}
.t-year--green{color:#2c7a55}
.t-year--amber{color:#a36a1c}
.t-year--red{color:#a23a22}

.t-card h3{margin:8px 0 8px;font-weight:800}
.t-card p{margin:0;color:rgba(26,20,16,.70);line-height:1.7;font-size:13px}

.t-dot{
  width:42px;height:42px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid rgba(26,20,16,.14);
  background:rgba(255,255,255,.92);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}
.t-dot--heart{background:rgba(194,85,30,.12);border-color:rgba(194,85,30,.22);color:var(--brand)}
.t-dot--green{background:rgba(44,122,85,.12);border-color:rgba(44,122,85,.22)}
.t-dot--amber{background:rgba(163,106,28,.12);border-color:rgba(163,106,28,.22)}
.t-dot--red{background:rgba(162,58,34,.12);border-color:rgba(162,58,34,.22)}
.t-dot--gold{background:rgba(224,160,58,.16);border-color:rgba(224,160,58,.24)}

/* =========================
   Chips + imagens
========================= */
.chips{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin:26px 0 26px;
}
.chip{
  width:148px;
  border-radius:16px;
  border:1px solid rgba(248,164,4,.22);
  background:rgba(248,164,4,.08);
  padding:14px 12px;
  text-align:center;
  box-shadow:0 16px 40px rgba(0,0,0,.06);
}
.emoji{font-size:22px}
.chip__title{display:block;margin-top:8px;font-weight:800}
.chip__sub{
  display:block;margin-top:6px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(94,18,2,.70);
}

.img-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-top:8px;
}
.img-tile{
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#ddd;
  position:relative;
  min-height:280px;
}
.img-tile__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
}
.img-tile__label{
  position:absolute;
  left:18px; bottom:18px;
  color:#fff;
  text-shadow:0 10px 28px rgba(0,0,0,.5);
}
.mini-k{font-size:11px;letter-spacing:.22em;text-transform:uppercase;opacity:.9}
.mini-t{margin-top:6px;font-weight:800}

/* =========================
   Django
========================= */
.django{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
  margin-top:20px;
}
.django__img{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow2);
  background:#2a160f;
  min-height:420px;
}
.django__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05) contrast(1.03);
}
.quote{
  position:absolute;
  left:16px; bottom:16px;
  width:min(320px,80%);
  padding:14px;
  border-radius:18px;
  background:rgba(94,18,2,.72);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  box-shadow:0 18px 50px rgba(0,0,0,.25);
  backdrop-filter:blur(10px);
}
.stars{letter-spacing:.18em;opacity:.95}
.qtext{margin-top:8px;font-style:italic;font-weight:600}

.django__text p{color:rgba(255,255,255,.80);line-height:1.8}
.line{
  height:2px;width:54px;
  background:linear-gradient(90deg,var(--brand-2),var(--brand-3));
  border-radius:999px;
  margin:14px 0 18px;
}

/* =========================
   Contato
========================= */
.contact{
  margin-top:34px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:start;
}
.contact__left{min-width:0}
.contact__right{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(26,20,16,.12);
  border-radius:18px;
  padding:18px;
}

/* Cards */
.social-card{
  display:flex; gap:14px;
  align-items:center;
  padding:18px;
  border-radius:16px;
  background:var(--paper);
  border:1px solid var(--line);
  margin-bottom:14px;
}
.social-ic{
  width:44px;height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  background:rgba(194,85,30,.10);
  border:1px solid rgba(194,85,30,.20);
  color:var(--brand);
  font-weight:900;
}
.social-title{font-weight:800}
.social-sub{color:rgba(26,20,16,.62); margin-top:4px; font-size:13px}

/* Inputs */
.field span{display:none}
.field input,.field textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(26,20,16,.16);
  background:rgba(251,247,242,.72);
  padding:14px 14px;
  font:inherit;
  outline:none;
}
.field input:focus,.field textarea:focus{
  box-shadow:0 0 0 4px rgba(194,85,30,.12);
  border-color:rgba(194,85,30,.35);
}

/* Footer */
.footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:46px;
  padding-top:20px;
  border-top:1px solid rgba(26,20,16,.10);
}
.footer__logo{height:28px;width:auto;margin-right:10px;opacity:.95}
.footer__left{display:flex;align-items:center;gap:10px}
.to-top{font-weight:800;color:rgba(26,20,16,.70)}
.to-top:hover{color:rgba(26,20,16,.92)}

/* Reveal */
.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.is-in{opacity:1;transform:translateY(0)}

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  .nav{display:none}
  .burger{display:block}
  .two-col{grid-template-columns:1fr;gap:22px}
  .media-card__img{height:420px}
  .stat-grid{grid-template-columns:1fr 1fr}

  /* ✅ timeline mobile alinhado e sem ícone “pra fora” */
  .timeline__line{left:16px;transform:none}
  .t-item{grid-template-columns:1fr; padding-left:52px}
  .t-item.left .t-card, .t-item.right .t-card{grid-column:1; max-width:100%}
  .t-item.left .t-dot, .t-item.right .t-dot{
    position:absolute;
    left:16px;
    top:22px;
    transform:translateX(-50%);
  }

  .img-grid{grid-template-columns:1fr}
  .django{grid-template-columns:1fr}

  /* ✅ Django no mobile: evita “zuar” a coluna */
  .django__img{min-height: 440px}
  .django__text{margin-top: 6px}

  /* ✅ contato vira 1 coluna */
  .contact{grid-template-columns: 1fr}
}

/* ===== Centralizar cards de contato no desktop (quando for single) ===== */
@media (min-width: 980px){
  .contact--single{
    display:flex;
    justify-content:center;
  }
  .contact--single .contact__left{
    width:100%;
    max-width:640px;
    margin:0 auto;
  }
}

@media (max-width: 520px){
  :root{
    --hero-pos-x:72%;
    --hero-pos-y:62%;
  }

  .brand__logo{height:40px;max-width:200px}
  .container{width:min(var(--max), calc(100% - 32px))}
  .stat-grid{grid-template-columns:1fr}
  .stat-num{font-size:56px}

  /* ✅ HERO mobile “anti-estouro” */
  .hero{
    min-height: 88vh;          /* mais seguro que 92vh em telas pequenas */
    padding-top: 78px;         /* um pouco menor */
  }
  .hero__content{
    padding-bottom: 28px;
  }

  .hero__title{
    font-size: clamp(38px, 10.8vw, 54px);
    line-height: .96;
    letter-spacing: -.35px;
    word-break: normal;
    overflow-wrap: anywhere;  /* ✅ se precisar quebrar, quebra */
  }

  .hero__lead{
    font-size: 15px;
    line-height: 1.55;
    max-width: 36ch;
    margin:0 0 16px;
  }

  /* ✅ CTA empilha */
  .hero__cta{
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .hero__cta .btn{
    width: 100%;
    padding: 14px 16px;
  }

  /* ✅ PILL não estoura com letter-spacing alto */
  .meta-pill{
    display:flex;              /* em vez de inline-flex */
    flex-wrap:wrap;
    max-width: 100%;
    border-radius: 16px;       /* menos “pílula” no mobile = menos overflow */
    letter-spacing: .12em;
    font-size: 11px;
    padding: 10px 12px;
  }

  .hero__scroll{
    margin-top: 16px;
  }
}
/* =========================
   FIX TIMELINE (roadmap) no mobile
========================= */
@media (max-width: 980px){
  /* linha um pouco mais “pra dentro” */
  .timeline__line{
    left:24px !important;
    transform:none !important;
  }

  /* mais “gutter” pra caber o dot + linha */
  .t-item{
    grid-template-columns:1fr !important;
    padding-left:72px !important;  /* antes ~52px */
    gap:16px !important;
  }

  /* card não pode estourar */
  .t-card{
    max-width:100% !important;
    width:100% !important;
    overflow-wrap:anywhere;
    word-break:normal;
  }

  /* dot sempre dentro do gutter (sem ficar pra fora) */
  .t-item.left .t-dot,
  .t-item.right .t-dot{
    position:absolute !important;
    left:24px !important;          /* igual a timeline__line */
    top:26px !important;
    transform:translateX(-50%) !important;
    width:40px !important;
    height:40px !important;
  }
}

/* micro ajuste pra telas bem pequenas */
@media (max-width: 520px){
  .timeline__line{ left:22px !important; }
  .t-item{ padding-left:66px !important; }
  .t-item.left .t-dot,
  .t-item.right .t-dot{ left:22px !important; }
}
/* =========================
   TIMELINE (roadmap) — FIX DEFINITIVO MOBILE
========================= */
@media (max-width: 980px){

  /* dá um respiro geral na timeline */
  .timeline{
    position: relative;
    padding-left: 0 !important;
  }

  /* linha sempre no mesmo lugar */
  .timeline__line{
    left: 20px !important;
    transform: none !important;
  }

  /* cada item vira “1 coluna” e o card é empurrado por margem */
  .t-item{
    grid-template-columns: 1fr !important;
    padding-left: 0 !important;     /* importante: não usamos mais padding aqui */
    margin: 22px 0 !important;
  }

  /* card sempre afastado do eixo da linha/dot */
  .t-card{
    width: auto !important;
    max-width: none !important;
    margin-left: 56px !important;   /* <<< AQUI é onde garantimos que não invade */
    max-width: calc(100% - 56px) !important;
    overflow-wrap: anywhere;
  }

  /* dot absoluto, SEM invadir o card */
  .t-dot{
    position: absolute !important;
    left: 20px !important;          /* igual da linha */
    top: 34px !important;           /* alinha com o topo do card */
    transform: translateX(-50%) !important;
    z-index: 2 !important;

    width: 36px !important;
    height: 36px !important;
  }

  /* remove qualquer “grid placement” antigo */
  .t-item.left .t-dot,
  .t-item.right .t-dot{
    justify-self: initial !important;
    grid-column: auto !important;
  }
}

/* telas bem pequenas: reduz um pouco o afastamento */
@media (max-width: 520px){
  .timeline__line{ left: 18px !important; }
  .t-dot{ left: 18px !important; }
  .t-card{
    margin-left: 52px !important;
    max-width: calc(100% - 52px) !important;
  }
}
html { scroll-behavior: smooth; }