/* ============================================================
   LarAtivo — Design System (v2, moderno & fluido)
   ============================================================ */
:root {
  /* Brand */
  --green: #4CAF50;
  --green-dark: #2E7D32;
  --green-light: #A5D6A7;
  --blue: #2F8DBD;
  --blue-light: #B3E5FC;

  /* Neutrals */
  --ink: #0a1f1a;
  --ink-soft: #2c3d38;
  --muted: #5d6f6a;
  --line: rgba(10,31,26,0.08);
  --bg: #ffffff;
  --bg-soft: #f4f9f5;
  --bg-mint: #eef7f0;

  /* Gradients */
  --grad-brand: linear-gradient(120deg, #2F8DBD 0%, #4CAF50 100%);
  --grad-deep: linear-gradient(135deg, #0b3a2e 0%, #0e4d56 100%);
  --grad-mesh: radial-gradient(at 0% 0%, rgba(76,175,80,0.18) 0px, transparent 50%),
               radial-gradient(at 100% 0%, rgba(47,141,189,0.18) 0px, transparent 50%),
               radial-gradient(at 50% 100%, rgba(165,214,167,0.22) 0px, transparent 50%);

  /* Shape */
  --r-sm: 14px;
  --r: 22px;
  --r-lg: 32px;
  --r-xl: 40px;

  /* Shadow */
  --sh-sm: 0 4px 16px rgba(10,31,26,0.06);
  --sh: 0 18px 50px -20px rgba(10,31,26,0.22);
  --sh-glow-g: 0 16px 40px -12px rgba(76,175,80,0.45);
  --sh-glow-b: 0 16px 40px -12px rgba(47,141,189,0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--green); color: #fff; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 {
  font-family: 'Sora', sans-serif;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
p { color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.7; }

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Layout ---------- */
.container { width: min(1180px, 100% - 3rem); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(47,141,189,0.08);
  padding: 0.45rem 0.95rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 1rem 1.7rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  white-space: nowrap;
  position: relative;
}
.btn svg { transition: transform 0.35s var(--ease); }
.btn-primary { background: var(--green-dark); color: #fff; box-shadow: var(--sh-glow-g); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -12px rgba(46,125,50,0.6); }
.btn-primary:hover svg { transform: translateX(4px); }

/* Pulsing CTA (induz o clique) */
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,125,50,0.55), var(--sh-glow-g); }
  70%  { box-shadow: 0 0 0 18px rgba(46,125,50,0), var(--sh-glow-g); }
  100% { box-shadow: 0 0 0 0 rgba(46,125,50,0), var(--sh-glow-g); }
}
.pulse-cta { animation: ctaPulse 2.2s var(--ease) infinite; }
.pulse-cta:hover { animation-play-state: paused; }
.btn-ghost { background: rgba(10,31,26,0.04); color: var(--ink); }
.btn-ghost:hover { background: rgba(10,31,26,0.09); transform: translateY(-3px); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: var(--sh-glow-b); }
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -12px rgba(47,141,189,0.6); }
.btn-light { background: #fff; color: var(--green-dark); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(0,0,0,0.35); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); transform: translateY(-3px); }
.btn-lg { padding: 1.15rem 2rem; font-size: 1.05rem; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s;
}
.header.scrolled {
  padding: 0.55rem 0;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px -18px rgba(10,31,26,0.3);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }
.logo img { height: 58px; width: auto; transition: height 0.4s var(--ease); }
.header.scrolled .logo img { height: 46px; }
.nav { display: flex; align-items: center; gap: 0.4rem; }
.nav-links { display: flex; align-items: center; gap: 0.3rem; }
.nav-links a {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 0.55rem 1rem;
  border-radius: 50px;
  transition: background 0.25s, color 0.25s;
}
.nav-links a:hover { background: rgba(10,31,26,0.05); }
.nav-links a.active { background: var(--bg-mint); color: var(--green-dark); }
.nav .btn { margin-left: 0.6rem; padding: 0.7rem 1.3rem; font-size: 0.9rem; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1100; }
.burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: 0.35s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(8rem, 16vh, 11rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--bg-soft);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: var(--grad-mesh); z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
  animation: float 16s ease-in-out infinite;
}
.blob-1 { width: 460px; height: 460px; background: var(--green-light); top: -120px; right: -100px; }
.blob-2 { width: 380px; height: 380px; background: var(--blue-light); bottom: -140px; left: -120px; animation-delay: -6s; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.08); }
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.95rem 0.5rem 0.6rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}
.hero-pill .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--green); display: grid; place-items: center; }
.hero-pill .dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { margin-bottom: 1.5rem; }
.hero-desc { font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 520px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.hero-stats { display: flex; gap: clamp(1.5rem, 4vw, 3rem); }
.stat .num { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--ink); line-height: 1; }
.stat .num .gradient-text { font-size: inherit; }
.stat .label { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh);
  aspect-ratio: 4/4.6;
  transform: rotate(1.5deg);
  transition: transform 0.6s var(--ease);
}
.hero-card:hover { transform: rotate(0deg); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,58,46,0.45), transparent 45%); }
.float-chip {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--r);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--sh);
  display: flex; align-items: center; gap: 0.75rem;
  z-index: 3;
  animation: floatChip 5s ease-in-out infinite;
}
@keyframes floatChip { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-chip.tl { top: 8%; left: -8%; }
.float-chip.br { bottom: 9%; right: -6%; animation-delay: -2.5s; }
.float-chip .chip-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.float-chip.tl .chip-ico { background: rgba(76,175,80,0.15); }
.float-chip.br .chip-ico { background: rgba(47,141,189,0.15); }
.float-chip .chip-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); line-height: 1; }
.float-chip .chip-sub { font-size: 0.72rem; color: var(--muted); }
.float-chip .stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 1px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  padding: 1.15rem 0;
  overflow: hidden;
  display: flex;
}
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: scroll 28s linear infinite; padding-right: 3rem; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.85); font-family: 'Sora', sans-serif; font-weight: 500; font-size: 0.95rem; }
.marquee-item svg { color: var(--green-light); flex-shrink: 0; }

/* ============================================================
   BENTO GRID
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.25rem;
}
.bento-card {
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.bento-card .b-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  background: var(--bg-mint);
}
.bento-card h3 { margin-bottom: 0.5rem; }
.bento-card p { font-size: 0.96rem; }
/* spans */
.bento-card.wide { grid-column: span 4; }
.bento-card.tall { grid-column: span 2; grid-row: span 2; }
.bento-card.std { grid-column: span 2; }
.bento-card.half { grid-column: span 3; }
/* feature card */
.bento-feature {
  grid-column: span 4;
  grid-row: span 2;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--grad-deep);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.bento-feature:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.bento-feature .feat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  z-index: 0;
}
.bento-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,42,32,0.10) 0%,
    rgba(8,42,32,0.18) 38%,
    rgba(8,42,32,0.75) 65%,
    rgba(8,42,32,0.92) 100%
  );
  z-index: 1;
}
.bento-feature h3 { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.75rem; position: relative; z-index: 2; }
.bento-feature p { color: rgba(255,255,255,0.9); position: relative; z-index: 2; max-width: 440px; }
.bento-feature .feat-tag { position: relative; z-index: 2; align-self: flex-start; margin-bottom: auto; background: rgba(255,255,255,0.18); backdrop-filter: blur(6px); color: #fff; padding: 0.4rem 0.9rem; border-radius: 50px; font-size: 0.78rem; font-family: 'Sora', sans-serif; font-weight: 600; letter-spacing: 0.05em; }
.bento-card.accent-blue { background: var(--blue); color: #fff; }
.bento-card.accent-blue .b-ico { background: rgba(255,255,255,0.18); }
.bento-card.accent-blue h3 { color: #fff; }
.bento-card.accent-blue p { color: rgba(255,255,255,0.85); }

/* ============================================================
   STEPS (timeline)
   ============================================================ */
.steps { display: grid; gap: 1.25rem; }
.step-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 2rem;
  border-radius: var(--r-lg);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.step-row:hover { transform: translateX(8px); box-shadow: var(--sh); border-color: transparent; }
.step-badge {
  width: 64px; height: 64px;
  border-radius: 20px;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--sh-glow-b);
}
.step-row h3 { margin-bottom: 0.4rem; }
.step-row p { font-size: 0.98rem; }

/* ============================================================
   SPLIT / ABOUT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-media { position: relative; }
.split-media .deco { position: absolute; inset: auto auto -24px -24px; width: 120px; height: 120px; border-radius: var(--r); background: var(--grad-brand); z-index: -1; }
.split-media .img-wrap { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 22px 56px -14px rgba(10,31,26,0.37); }
.split-media .img-wrap > img { width: 100%; height: clamp(380px, 50vw, 540px); object-fit: cover; object-position: center top; display: block; }
.media-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: 1.15rem 1.75rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 -12px 30px -22px rgba(0,0,0,0.4);
}
.media-badge .mb-ava { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.media-badge .mb-name { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--ink); }
.media-badge .mb-role { font-size: 0.82rem; color: var(--muted); }
.split-body h2 { margin-bottom: 1.25rem; }
.split-body p { margin-bottom: 1rem; }
.quote {
  border-left: 3px solid var(--green);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.tag-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--bg-mint);
  color: var(--green-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0.3rem 0.4rem 1.5rem 0;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--grad-deep); color: #fff; position: relative; overflow: hidden; }
.reviews::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(47,141,189,0.25), transparent 70%); top: -150px; left: 50%; transform: translateX(-50%); }
.reviews .eyebrow { background: rgba(255,255,255,0.1); color: var(--green-light); }
.reviews h2 { color: #fff; }
.google-pill {
  display: inline-flex; align-items: center; gap: 0.9rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.7rem 1.5rem 0.7rem 0.9rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.google-pill .g-mark { width: 34px; height: 34px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem; color: #4285F4; }
.google-pill .g-score { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700; line-height: 1; }
.google-pill .g-stars { color: #f5a623; font-size: 0.9rem; }
.google-pill .g-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px,1fr)); gap: 1.25rem; margin-top: 3rem; }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.review:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.review .r-stars { color: #f5a623; font-size: 1rem; letter-spacing: 1px; margin-bottom: 1rem; }
.review .r-text { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.7; margin-bottom: 1.5rem; }
.review .r-author { display: flex; align-items: center; gap: 0.8rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.review .r-ava { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; font-family: 'Sora', sans-serif; font-weight: 700; color: #fff; flex-shrink: 0; }
.review .r-name { font-family: 'Sora', sans-serif; font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.review .r-role { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   CTA
   ============================================================ */
.cta-wrap { padding: clamp(3rem,7vw,5.5rem) 0; }
.cta {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--grad-brand);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  overflow: hidden;
}
.cta::before { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.1); top: -150px; right: -100px; }
.cta::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.08); bottom: -120px; left: -80px; }
.cta h2 { color: #fff; margin-bottom: 1rem; position: relative; }
.cta p { color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 540px; margin: 0 auto 2.25rem; position: relative; }
.cta .btn { position: relative; }

/* ============================================================
   ACCORDION (serviços)
   ============================================================ */
.accordion { display: grid; gap: 0.9rem; }
.acc-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--bg); overflow: hidden; transition: box-shadow 0.4s, border-color 0.4s; }
.acc-item.open { box-shadow: var(--sh); border-color: transparent; }
.acc-head { display: flex; align-items: center; gap: 1.1rem; padding: 1.4rem 1.6rem; cursor: pointer; user-select: none; }
.acc-ico { width: 50px; height: 50px; border-radius: 14px; background: var(--bg-mint); display: grid; place-items: center; font-size: 1.4rem; flex-shrink: 0; transition: background 0.4s, transform 0.4s var(--ease); }
.acc-item.open .acc-ico { background: var(--grad-brand); transform: scale(1.05); }
.acc-title { flex: 1; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.acc-chev { width: 36px; height: 36px; border-radius: 50%; background: rgba(10,31,26,0.05); display: grid; place-items: center; color: var(--ink); transition: transform 0.4s var(--ease), background 0.3s; flex-shrink: 0; }
.acc-item.open .acc-chev { transform: rotate(180deg); background: var(--bg-mint); }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner { overflow: hidden; }
.acc-list { padding: 0 1.6rem 1.6rem 1.6rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 0.5rem 1.5rem; }
.acc-list li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.95rem; color: var(--ink-soft); padding: 0.25rem 0; }
.acc-list li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--bg-mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232E7D32' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/10px no-repeat; flex-shrink: 0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { position: relative; padding: clamp(8rem, 18vh, 11rem) 0 clamp(3rem,6vw,5rem); background: var(--bg-soft); overflow: hidden; text-align: center; }
.page-hero .hero-bg { background: var(--grad-mesh); }
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; margin-inline: auto; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: clamp(1.05rem,1.6vw,1.2rem); }

/* ============================================================
   PROFILE (sobre)
   ============================================================ */
.profile { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.profile-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2.5rem 2rem; text-align: center; box-shadow: var(--sh-sm); position: sticky; top: 100px; }
.profile-card .p-img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; object-position: top; margin: 0 auto 1.5rem; border: 4px solid var(--bg-mint); }
.profile-card h3 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.profile-card .p-role { color: var(--blue); font-weight: 600; font-size: 0.92rem; font-family: 'Sora', sans-serif; }
.profile-card .p-org { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.25rem; }
.profile-card .p-crefito { display: inline-block; background: var(--bg-mint); color: var(--green-dark); font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.8rem; padding: 0.45rem 1rem; border-radius: 50px; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; }
.specs { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.spec { background: var(--bg-mint); border-radius: var(--r); padding: 1.25rem; }
.spec .s-num { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--green-dark); }
.spec .s-lab { font-size: 0.82rem; color: var(--muted); margin-top: 0.2rem; }

/* values */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 1.25rem; }
.value { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); position: relative; overflow: hidden; }
.value:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.value .v-num { font-family: 'Sora', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--green-light); line-height: 1; margin-bottom: 0.75rem; }
.value h3 { margin-bottom: 0.5rem; }
.value p { font-size: 0.95rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2.5rem; }
.contact-card h3 { margin-bottom: 1.75rem; }
.c-item { display: flex; gap: 1rem; align-items: center; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
.c-item:last-of-type { border-bottom: none; }
.c-ico { width: 48px; height: 48px; border-radius: 14px; background: var(--bg-mint); display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0; }
.c-label { font-size: 0.74rem; font-family: 'Sora', sans-serif; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.c-val { font-weight: 500; color: var(--ink); }
.c-val a { color: var(--blue); }
.c-val a:hover { text-decoration: underline; }
.map-box { border-radius: var(--r); overflow: hidden; height: 240px; background: var(--bg-mint); margin-top: 1.5rem; }
.map-box iframe { width: 100%; height: 100%; border: none; }
.map-ph { height: 100%; display: grid; place-content: center; justify-items: center; gap: 0.5rem; color: var(--muted); text-align: center; padding: 1rem; }
.map-ph span { font-size: 2.2rem; }
.dev-note { background: #FFF8E1; border: 1px solid #FFE082; border-radius: var(--r); padding: 1rem 1.3rem; font-size: 0.88rem; color: #6d5800; display: flex; gap: 0.75rem; margin-bottom: 2.5rem; }
.dev-note a { color: #6d5800; text-decoration: underline; }

/* ============================================================
   ELFSIGHT WIDGET
   ============================================================ */
.elfsight-wrap { margin-top: 2.5rem; border-radius: var(--r-lg); overflow: hidden; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: clamp(3.5rem,7vw,5rem) 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { height: 44px; filter: brightness(0) invert(1); margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.92rem; max-width: 260px; line-height: 1.7; }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.footer-socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: rgba(255,255,255,0.8); transition: background 0.3s, transform 0.3s; }
.footer-socials a:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-family: 'Sora', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; font-weight: 600; }
.footer-col a, .footer-col p { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 0.7rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 30px -6px rgba(37,211,102,0.6); transition: transform 0.35s var(--ease); }
.wa-fab::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: ring 2.4s ease-out infinite; z-index: -1; }
@keyframes ring { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.8); opacity: 0; } }
.wa-fab:hover { transform: scale(1.1); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .blob, .float-chip, .marquee-track, .wa-fab::before { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 440px; margin-inline: auto; width: 100%; }
  .float-chip.tl { left: -2%; } .float-chip.br { right: -2%; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
  .profile { grid-template-columns: 1fr; }
  .profile-card { position: static; max-width: 420px; margin-inline: auto; }
  .bento-feature, .bento-card.wide { grid-column: span 6; }
  .bento-card.tall { grid-column: span 3; grid-row: span 1; }
  .bento-card.std, .bento-card.half { grid-column: span 3; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav > .btn { display: none; }
  .burger { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0.4rem;
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
    background: #fff; padding: 6rem 1.5rem 2rem; box-shadow: -20px 0 60px -20px rgba(0,0,0,0.3);
    z-index: 1050; animation: slideIn 0.4s var(--ease);
  }
  @keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
  .nav.open .nav-links a { padding: 0.9rem 1rem; font-size: 1rem; }
  .nav.open .nav-links .btn-mobile { display: inline-flex; justify-content: center; margin-top: 0.5rem; background: var(--green-dark); color: #fff; }
  .nav-overlay { display: none; }
  .nav.open ~ .nav-overlay, body.nav-active .nav-overlay { display: block; position: fixed; inset: 0; background: rgba(10,31,26,0.4); z-index: 1040; }
  .bento { grid-template-columns: 1fr; }
  .bento-card, .bento-feature { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 160px; }
  .contact-grid { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .step-row:hover { transform: none; }
}
@media (max-width: 460px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
  .float-chip { display: none; }
  .specs { grid-template-columns: 1fr; }
}

/* hide mobile button by default */
.btn-mobile { display: none; }
.nav-overlay { display: none; }
