/* =========================================================
   POSICIONA — Design System
   Cream #F6F4EE · Verde profundo #14231D · Terracota #C05A2E
   Display: Fraunces · Corpo: Inter
   ========================================================= */

:root{
  --bg: #F6F4EE;
  --bg-soft: #EFEBE1;
  --ink: #14231D;
  --ink-soft: #2C3B33;
  --orange: #C05A2E;
  --orange-soft: #E0916B;
  --line: rgba(20,35,29,0.12);
  --white: #FFFFFF;
  --gray: #8A8A82;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --container: 1240px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.7s;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

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

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; border: none; background: none; cursor: pointer; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 500; margin: 0; letter-spacing: -0.01em; }
p{ margin: 0; }
section{ position: relative; padding: 140px 0; }
em{ font-style: italic; color: var(--orange); }

::selection{ background: var(--orange); color: var(--white); }

:focus-visible{
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.section-head{
  max-width: 720px;
  margin: 0 auto 72px;
  padding: 0 32px;
  text-align: center;
}
.section-desc{
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section-head h2{
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-top: 14px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.eyebrow-light{ color: #E8C4AE; }
.eyebrow-dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(192,90,46,0.15);
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  will-change: transform;
}
.btn-primary{
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -10px rgba(20,35,29,0.45);
}
.btn-ghost{
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover{
  border-color: var(--ink);
  transform: translateX(3px);
}
.btn-ghost svg{ transition: transform 0.4s var(--ease); }
.btn-ghost:hover svg{ transform: translateX(4px); }
.btn-small{ padding: 11px 22px; font-size: 0.85rem; }
.btn-cta{
  background: var(--orange);
  color: var(--white);
  padding: 19px 38px;
  font-size: 1rem;
}
.btn-cta:hover{
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px -12px rgba(192,90,46,0.55);
}

/* ---------- reveal-on-scroll ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
[data-reveal-delay="1"]{ transition-delay: 0.12s; }
[data-reveal-delay="2"]{ transition-delay: 0.24s; }
[data-reveal-delay="3"]{ transition-delay: 0.36s; }
[data-reveal-delay="4"]{ transition-delay: 0.48s; }

/* ---------- cursor ---------- */
.cursor-dot, .cursor-ring{
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
}
.cursor-dot{ width: 6px; height: 6px; background: var(--bg); }
.cursor-ring{
  width: 34px; height: 34px;
  border: 1px solid var(--bg);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.25s;
  opacity: 0.7;
}
.cursor-ring.is-active{ width: 54px; height: 54px; opacity: 1; }
@media (hover: none), (pointer: coarse){
  .cursor-dot, .cursor-ring{ display: none; }
}

#particles{
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 26px 0;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.navbar.scrolled{
  padding: 14px 0;
  background: rgba(246,244,238,0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 30px -18px rgba(20,35,29,0.35);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  transition: transform 0.4s var(--ease);
}
.logo:hover{ transform: scale(1.03); }
.nav-links{
  display: flex;
  gap: 8px;
}
.nav-links a{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 0.92rem;
  border-radius: 100px;
  color: var(--ink-soft);
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.nav-links a span{
  font-size: 0.68rem;
  color: var(--orange);
  font-weight: 600;
}
.nav-links a:hover{
  background: rgba(20,35,29,0.06);
  color: var(--ink);
}
.nav-actions{ display: flex; align-items: center; gap: 14px; }
.nav-instagram{
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.nav-instagram:hover{ border-color: var(--ink); transform: rotate(-8deg); }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}
.nav-toggle span{
  height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.nav-toggle.is-open span:nth-child(1){ transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ transform: translateY(-3.5px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  padding: 170px 32px 90px;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-title{
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.hero-title .highlight{ color: var(--orange); font-style: italic; font-family: var(--font-display); }
.eyebrow{ margin-bottom: 22px; }
.hero-sub{
  margin-top: 26px;
  max-width: 480px;
  font-size: 1.08rem;
  color: var(--ink-soft);
}
.hero-actions{
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats{
  display: flex;
  gap: 46px;
  margin-top: 68px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.stat{ position: relative; }
.stat-num, .stat-suffix{
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--ink);
}
.stat-suffix{ color: var(--orange); }
.stat p{
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--gray);
  max-width: 120px;
}

/* Hero visual */
.hero-visual{ position: relative; }
.hero-image{
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: 0 50px 80px -30px rgba(20,35,29,0.35);
}
.hero-image-scene{
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(180deg, rgba(20,35,29,0) 0%, rgba(20,35,29,0.5) 100%),
    linear-gradient(120deg, #2A3F32 0%, #14231D 55%, #0D1712 100%);
  transition: transform 0.2s linear;
}
.scene-window{
  position: absolute;
  top: 8%; right: 8%;
  width: 40%; height: 55%;
  background: linear-gradient(160deg, rgba(246,244,238,0.18), rgba(246,244,238,0.02));
  border-radius: 6px;
  border: 1px solid rgba(246,244,238,0.15);
}
.scene-light{
  position: absolute;
  top: -10%; left: 20%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(224,145,107,0.55), transparent 65%);
  filter: blur(10px);
}
.scene-desk{
  position: absolute;
  bottom: 12%; left: 8%; right: 8%;
  height: 16%;
  background: linear-gradient(180deg, rgba(246,244,238,0.14), rgba(246,244,238,0.02));
  border-radius: 10px;
}
.scene-plant{
  position: absolute;
  border-radius: 50% 50% 45% 45%;
  background: radial-gradient(circle at 30% 30%, #4C6B52, #223A2A 80%);
  filter: blur(0.5px);
}
.plant-1{ width: 34%; height: 30%; bottom: 16%; left: 4%; }
.plant-2{ width: 22%; height: 20%; bottom: 30%; right: 10%; opacity: 0.85; }

.floating-card{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 30px 50px -22px rgba(20,35,29,0.35);
  animation: floaty 6s ease-in-out infinite;
}
.card-position{ top: 10%; left: -8%; animation-delay: 0s; }
.card-growth{ bottom: 10%; right: -6%; animation-delay: 1.2s; }
.position-dot{
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(192,90,46,0.18);
  flex-shrink: 0;
}
.fc-label{ font-size: 0.7rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }
.fc-value{ font-family: var(--font-display); font-size: 0.98rem; margin-top: 2px; }

@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}

.hero-scroll{
  position: absolute;
  bottom: -10px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero-scroll span{
  width: 1px; height: 34px;
  background: linear-gradient(var(--ink), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll span::after{
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--orange);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine{
  0%{ top: -100%; }
  60%{ top: 100%; }
  100%{ top: 100%; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--bg-soft);
}
.marquee-track{
  display: flex;
  gap: 18px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink-soft);
}
.marquee-track span:nth-child(odd){ color: var(--orange); font-size: 0.8rem; }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services{ max-width: var(--container); margin: 0 auto; padding-inline: 32px; }
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card{
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
}
.service-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -24px rgba(20,35,29,0.28);
  border-color: transparent;
}
.service-icon{
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--ink);
  margin-bottom: 24px;
  transition: background 0.4s, color 0.4s, transform 0.5s var(--ease);
}
.service-card:hover .service-icon{
  background: var(--ink);
  color: var(--bg);
  transform: rotate(-6deg) scale(1.06);
}
.service-card h3{ font-size: 1.28rem; margin-bottom: 12px; }
.service-card p{ color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }
.service-link{
  display: inline-flex;
  gap: 6px;
  margin-top: 22px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--orange);
}
.service-link span{ transition: transform 0.35s var(--ease); }
.service-card:hover .service-link span{ transform: translateX(5px); }

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio{ max-width: var(--container); margin: 0 auto; padding-inline: 32px; }
.portfolio-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.folio-card{
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.folio-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 34px 60px -26px rgba(20,35,29,0.3);
}
.folio-visual{
  position: relative;
  padding: 40px 32px 0;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
}
.folio-mock-notebook{
  width: 72%;
  aspect-ratio: 16/10;
  border-radius: 10px 10px 3px 3px;
  padding: 8px 8px 16px;
  position: relative;
  box-shadow: 0 30px 40px -20px rgba(0,0,0,0.35);
}
.folio-mock-notebook::after{
  content:'';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 40%; height: 8px;
  background: inherit;
  filter: brightness(0.85);
  border-radius: 0 0 6px 6px;
}
.folio-mock-screen{
  width: 100%; height: 100%;
  border-radius: 4px;
  background: var(--white);
  overflow: hidden;
  position: relative;
}
.folio-mock-phone{
  width: 22%;
  aspect-ratio: 9/18.5;
  border-radius: 20px;
  padding: 6px;
  box-shadow: 0 24px 34px -18px rgba(0,0,0,0.4);
  flex-shrink: 0;
  margin-bottom: -6%;
}
.folio-mock-phone .folio-mock-screen{ border-radius: 15px; }

.mock-ui-bar{ height: 14%; display: flex; align-items: center; gap: 4px; padding: 0 10%; }
.mock-ui-bar span{ width: 5px; height: 5px; border-radius: 50%; background: rgba(0,0,0,0.15); }
.mock-ui-hero{ height: 42%; margin: 6% 10%; border-radius: 6px; }
.mock-ui-lines{ padding: 0 10%; display: flex; flex-direction: column; gap: 6px; }
.mock-ui-lines span{ display: block; height: 5px; border-radius: 3px; background: rgba(0,0,0,0.08); }
.mock-ui-lines span:nth-child(1){ width: 60%; }
.mock-ui-lines span:nth-child(2){ width: 40%; }

.folio-body{
  padding: 26px 32px 32px;
}
.folio-tag{
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}
.folio-body h3{
  font-size: 1.35rem;
  margin-top: 8px;
}
.folio-body p{
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.folio-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.folio-swatches{ display: flex; gap: 6px; }
.folio-swatches span{ width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--white); box-shadow: 0 0 0 1px var(--line); margin-left: -6px; }
.folio-swatches span:first-child{ margin-left: 0; }
.folio-result{
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
}

/* =========================================================
   METHOD / TIMELINE
   ========================================================= */
.method{ max-width: var(--container); margin: 0 auto; padding-inline: 32px; }
.timeline{
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.timeline-line{
  position: absolute;
  top: 26px;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.timeline-progress{
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: var(--orange);
  transition: width 1.2s var(--ease);
}
.timeline-item{ position: relative; padding-top: 76px; }
.timeline-marker{
  position: absolute;
  top: 0; left: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  transition: background 0.5s, color 0.5s, border-color 0.5s, transform 0.5s var(--ease);
}
.timeline-item.is-active .timeline-marker{
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: scale(1.08);
}
.timeline-item h3{ font-size: 1.1rem; margin-bottom: 8px; }
.timeline-item p{ font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; }

/* =========================================================
   CTA
   ========================================================= */
.cta{
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  max-width: calc(var(--container) - 64px);
  margin: 0 auto;
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before{
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(192,90,46,0.35), transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}
.cta-inner{ position: relative; max-width: 620px; margin: 0 auto; }
.cta h2{
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  color: var(--bg);
  margin-top: 16px;
  line-height: 1.15;
}
.cta-sub{
  margin-top: 20px;
  color: rgba(246,244,238,0.7);
  font-size: 1.05rem;
}
.btn-cta{ margin-top: 40px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer{
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px 32px 40px;
}
.footer-logo{ font-size: 1.6rem; }
.footer-tagline{
  margin-top: 16px;
  max-width: 380px;
  color: var(--ink-soft);
}
.footer-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.footer-col{ display: flex; flex-direction: column; gap: 12px; }
.footer-col-title{
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 6px;
}
.footer-col a{
  color: var(--ink-soft);
  font-size: 0.95rem;
  width: fit-content;
  position: relative;
}
.footer-col a::after{
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.35s var(--ease);
}
.footer-col a:hover::after{ width: 100%; }
.footer-col a:hover{ color: var(--ink); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--gray);
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float{
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1EAD59;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px -10px rgba(30,173,89,0.55);
  z-index: 600;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  animation: pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover{
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 20px 36px -8px rgba(30,173,89,0.7);
}
@keyframes pulse{
  0%,100%{ box-shadow: 0 16px 30px -10px rgba(30,173,89,0.55); }
  50%{ box-shadow: 0 16px 30px -10px rgba(30,173,89,0.55), 0 0 0 10px rgba(30,173,89,0.12); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; max-width: 480px; margin: 0 auto; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .timeline{ grid-template-columns: repeat(3, 1fr); row-gap: 50px; }
  .timeline-line{ display: none; }
  .footer-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px){
  .nav-links{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: -20px 0 50px rgba(0,0,0,0.15);
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links a{ font-size: 1.2rem; padding: 14px 16px; }
  .nav-toggle{ display: flex; }
  .nav-instagram{ display: none; }
  section{ padding: 90px 0; }
  .hero{ padding-top: 130px; }
  .hero-stats{ gap: 28px; flex-wrap: wrap; }
  .services-grid{ grid-template-columns: 1fr; }
  .timeline{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom{ flex-direction: column; gap: 8px; }
  .cta{ padding: 70px 24px; border-radius: var(--radius-md); }
}

@media (max-width: 480px){
  .hero-title{ font-size: 2.2rem; }
  .btn{ width: 100%; justify-content: center; }
  .hero-actions{ flex-direction: column; }
  .folio-visual{ padding: 28px 20px 0; }
}
