﻿/* ==========================================================================
   FILLIPE RIOS - Design tokens
   ========================================================================== */

/* Fontes: carregadas via <link> no <head> (aproveita o preconnect e evita cadeia de bloqueio de renderização) */

:root {
  /* Cor */
  --bg: #0a0a0b;
  --bg-panel: #131315;
  --bg-panel-2: #1a1a1d;
  --line: rgba(242, 242, 240, 0.12);
  --line-strong: rgba(242, 242, 240, 0.22);
  --text: #f2f2f0;
  --text-muted: #9a9c9a;
  --text-faint: #838383;
  --blue: #00b0f0;
  --blue-dim: rgba(0, 176, 240, 0.12);
  --blue-dim-strong: rgba(0, 176, 240, 0.24);
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  /* Tipografia */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  /* Movimento */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 300;
  background: var(--blue);
  color: #0a0a0b;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   Tipografia
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--blue);
}

h1, .h1 {
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h2, .h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

h3, .h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lede {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 62ch;
}

.body-copy {
  color: var(--text-muted);
  max-width: 62ch;
}

.body-copy p + p { margin-top: 1.1em; }

.text-blue { color: var(--blue); }

/* ==========================================================================
   Botões
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #06210f;
}
.btn-whatsapp:hover { background: #2fe07a; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn-sm { padding: 11px 20px; font-size: 0.88rem; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), gap 0.2s var(--ease);
}
.text-link:hover { color: var(--blue); border-color: var(--blue); gap: 12px; }

/* ==========================================================================
   Rio - linha assinatura (SVG de progresso de rolagem)
   ========================================================================== */

.rio-line {
  position: fixed;
  top: 0;
  left: 14px;
  height: 100vh;
  width: 34px;
  z-index: 5;
  pointer-events: none;
  opacity: 0.9;
}

.rio-line svg { width: 100%; height: 100%; }

.rio-line .track {
  fill: none;
  stroke: var(--line);
  stroke-width: 1.4;
}

.rio-line .flow {
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
  filter: drop-shadow(0 0 4px rgba(0,176,240,0.55));
}

@media (max-width: 900px) {
  .rio-line { display: none; }
}

/* ==========================================================================
   Header / Navegação
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(10, 10, 11, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), padding 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 11, 0.86);
  backdrop-filter: blur(14px);
  border-color: var(--line);
  padding: 12px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.02rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand img { height: 34px; width: auto; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  position: relative;
}

.nav-toggle svg { width: 20px; height: 20px; }

.nav-toggle .icon-close {
  position: absolute;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-toggle .icon-burger { transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); }

.nav-toggle[aria-expanded="true"] .icon-burger { opacity: 0; transform: scale(0.7); }
.nav-toggle[aria-expanded="true"] .icon-close { opacity: 1; transform: scale(1); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-ghost { display: none; }
}

@media (max-width: 480px) {
  .site-header .container { gap: 10px; }
  .nav-cta { gap: 10px; }
  .brand span { display: none; }
  .brand img { height: 30px; }
  .nav-cta .btn-whatsapp { padding: 11px 14px; }
  .nav-cta .btn-whatsapp svg { width: 20px; height: 20px; }
  .nav-cta .btn-label { display: none; }
  .nav-toggle { width: 38px; height: 38px; flex-shrink: 0; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 100px var(--gutter) 40px;
  transform: translateY(-100%);
  visibility: hidden; /* tira os links do tab order quando fechado */
  transition: transform 0.4s var(--ease), visibility 0s linear 0.4s;
}
.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.4s var(--ease);
}

.mobile-menu a {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .btn { margin-top: 30px; align-self: flex-start; }

/* ==========================================================================
   Seções - base
   ========================================================================== */

section { position: relative; }

.section {
  padding: 128px 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 700px) {
  .section { padding: 84px 0; }
}

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-panel {
  background: var(--bg-panel);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  min-height: 100vh; /* fallback para navegadores sem suporte a svh */
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 160px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 78% 10%, rgba(0,176,240,0.16), transparent 55%),
    linear-gradient(100deg, rgba(10,10,11,0.98) 8%, rgba(10,10,11,0.72) 42%, rgba(10,10,11,0.32) 75%),
    linear-gradient(160deg, #101216 0%, #0a0a0b 55%, #0d1113 100%);
}

.hero-media .placeholder-tag {
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(242,242,240,0.4);
  background: rgba(10,10,11,0.55);
  border: 1px dashed rgba(242,242,240,0.25);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.hero-river {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

/* Foto do hero - pronto para quando a foto existir (ver LEIA-ME-FOTOS.md).
   Basta inserir <img class="hero-photo" ...> dentro de .hero-media; o véu
   escuro para legibilidade do texto é aplicado automaticamente via :has(). */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media:has(.hero-photo)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,10,11,0.96) 8%, rgba(10,10,11,0.7) 42%, rgba(10,10,11,0.35) 75%);
}

.hero-content { max-width: 760px; }

.hero h1 { margin-bottom: 26px; }
.hero .lede { margin-bottom: 40px; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero-signature {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.hero-signature svg { width: 22px; height: 22px; opacity: 0.7; }

/* ==========================================================================
   Problema
   ========================================================================== */

.problema-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

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

.problema-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.tool-chip {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-faint);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
}

.pull-quote {
  border-left: 2px solid var(--blue);
  padding-left: 28px;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

/* ==========================================================================
   O Rio - 6 elementos
   ========================================================================== */

.rio-elements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 860px) {
  .rio-elements { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .rio-elements { grid-template-columns: 1fr; }
}

.rio-element {
  background: var(--bg);
  padding: 36px 30px;
  transition: background 0.3s var(--ease);
}

.rio-element:hover { background: var(--bg-panel-2); }

.rio-element .num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: block;
}

.rio-element svg {
  width: 30px; height: 30px;
  color: var(--blue);
  margin-bottom: 18px;
}

.rio-element h3 { margin-bottom: 10px; }
.rio-element p { color: var(--text-muted); font-size: 0.95rem; }

.rio-closing {
  margin-top: 48px;
  max-width: 68ch;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
}

/* ==========================================================================
   Metodologia
   ========================================================================== */

.method-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}

.method-tab {
  background: none;
  border: none;
  color: var(--text-faint);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 4px;
  margin-right: 28px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.method-tab.is-active { color: var(--text); border-color: var(--blue); }
.method-tab:hover { color: var(--text); }

.method-panels { position: relative; }

.method-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  animation: fadeUp 0.5s var(--ease);
}
.method-panel.is-active { display: grid; }

@media (max-width: 860px) {
  .method-panel { grid-template-columns: 1fr; gap: 36px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.method-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 320px;
}

.method-diagram svg { width: 100%; height: auto; max-width: 340px; }

.method-copy h3 { font-size: 1.5rem; margin-bottom: 16px; }
.method-copy p { color: var(--text-muted); margin-bottom: 14px; }

.method-note {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 0.92rem;
  max-width: 62ch;
}

/* ==========================================================================
   Ofertas
   ========================================================================== */

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.offer-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.offer-card:hover {
  border-color: var(--blue-dim-strong);
  transform: translateY(-4px);
}

.offer-card.is-featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, var(--blue-dim), var(--bg-panel) 60%);
}

.offer-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--blue);
}
.offer-icon svg { width: 22px; height: 22px; }

.offer-card h3 { margin-bottom: 6px; }

.offer-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 14px;
}

.offer-card p { color: var(--text-muted); font-size: 0.94rem; flex-grow: 1; margin-bottom: 22px; }

.offer-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.offer-meta span {
  font-size: 0.76rem;
  color: var(--text-faint);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 999px;
}

.offer-card .btn {
  align-self: flex-start;
  white-space: normal;
  text-align: left;
}

/* ==========================================================================
   Sobre
   ========================================================================== */

.sobre-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

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

.sobre-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 100% at 30% 0%, rgba(0,176,240,0.18), transparent 60%),
    linear-gradient(200deg, #16181b 0%, #0a0a0b 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sobre-portrait img.logo-mark {
  width: 34%;
  height: auto;
  opacity: 0.5;
}

/* Retrato real - pronto para quando a foto existir (ver LEIA-ME-FOTOS.md) */
.sobre-portrait img.retrato {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-portrait .placeholder-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(242,242,240,0.45);
  border: 1px dashed rgba(242,242,240,0.25);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
}

.credential-badge {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-panel);
}

.credential-badge svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.credential-badge p { font-size: 0.85rem; color: var(--text-muted); }
.credential-badge strong { color: var(--text); }

.talent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.talent-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-dim);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ==========================================================================
   Prova social (placeholder futuro)
   ========================================================================== */

.social-proof-placeholder {
  text-align: center;
  padding: 60px var(--gutter);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  color: var(--text-faint);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 26px 0;
  font-size: 1.02rem;
  font-weight: 700;
}

.faq-question .icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq-question .icon svg { width: 12px; height: 12px; }

.faq-item.is-open .faq-question .icon {
  transform: rotate(45deg);
  border-color: var(--blue);
  color: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-answer-inner {
  padding-bottom: 26px;
  color: var(--text-muted);
  max-width: 68ch;
}

/* ==========================================================================
   CTA final
   ========================================================================== */

.cta-final {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 100%, rgba(0,176,240,0.14), transparent 70%);
  z-index: -1;
}

.cta-final h2 { max-width: 820px; margin-inline: auto; margin-bottom: 22px; }
.cta-final .lede { margin-inline: auto; margin-bottom: 40px; }
.cta-final .hero-ctas { justify-content: center; }

/* ==========================================================================
   Rodapé
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--text-faint); font-size: 0.9rem; max-width: 34ch; }

.footer-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-faint);
  font-size: 0.82rem;
}

.footer-bottom a:hover { color: var(--text); }

/* ==========================================================================
   Botão flutuante WhatsApp
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #06210f;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.whatsapp-float:hover { transform: scale(1.07); background: #2fe07a; }
.whatsapp-float svg { width: 28px; height: 28px; }

@media (max-width: 600px) {
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

/* A animação de entrada só é armada quando o JS está ativo (classe "js" no <html>,
   adicionada por script inline no <head>). Sem JS, todo o conteúdo fica visível. */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
