/* =====================================================
   BIOMAGISTRAL AMERICANA — Premium Landing
   Cores oficiais (Manual de Marca 2024):
     Cor principal: #0E1D2D (Pantone 7547 C)
     Cor de apoio:  #142639 (Pantone 289 C)
     Degradê dourado: #A07F45 → #F4F2BE
   Fonte oficial: Poppins
   ===================================================== */

:root {
  /* ====== CORES OFICIAIS ====== */
  --navy: #0E1D2D;
  --navy-2: #142639;
  --navy-3: #1B2D45;
  --navy-deep: #06111E;
  --gold-1: #A07F45;
  --gold-2: #C9A35B;
  --gold-3: #E0C589;
  --gold-soft: #F4F2BE;
  --gold-light: #FAF6E8;

  --cream: #FAF7F0;
  --cream-2: #F4EEDF;
  --off: #FCFBF7;
  --white: #FFFFFF;

  --ink: #0E1D2D;
  --ink-2: #2D3855;
  --muted: #6A7388;
  --muted-2: #8A92A5;

  --line: rgba(14, 29, 45, .08);
  --line-strong: rgba(14, 29, 45, .15);

  --shadow-xs: 0 2px 8px rgba(14, 29, 45, .05);
  --shadow-sm: 0 6px 18px rgba(14, 29, 45, .07);
  --shadow-md: 0 18px 46px rgba(14, 29, 45, .12);
  --shadow-lg: 0 32px 80px rgba(14, 29, 45, .18);
  --shadow-xl: 0 50px 120px rgba(14, 29, 45, .25);
  --shadow-gold: 0 18px 42px rgba(160, 127, 69, .32);

  --radius: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --header-h: 88px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ============================================
   Reset / Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink);
  background: var(--off);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}

::selection { background: var(--gold-2); color: var(--navy); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Italic serif accent — pairs com Poppins */
/* Italic accent — Poppins italic (alinhado ao manual) */
.serif {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.018em;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   Typography helpers
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .26em;
  color: var(--ink-2);
  margin: 0 0 24px;
  text-transform: uppercase;
}
.eyebrow--gold { color: var(--gold-1); }
.eyebrow--center { justify-content: center; }
.eyebrow__bar {
  width: 28px;
  height: 1px;
  background: currentColor;
  display: block;
  opacity: .5;
}

.section { padding: 130px 0; position: relative; }
.section--cream { background: var(--cream); }
.section--navy {
  background:
    radial-gradient(80% 70% at 50% 0%, var(--navy-3) 0%, var(--navy-2) 40%, var(--navy) 100%);
  color: var(--white);
  position: relative;
}
.section--navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .04 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: .4;
  pointer-events: none;
}
.section--story { background: linear-gradient(180deg, var(--off) 0%, var(--cream) 100%); }
.section > .container { position: relative; z-index: 1; }

.section__head { max-width: 760px; margin-bottom: 80px; }
.section__head--centered { margin-left: auto; margin-right: auto; text-align: center; }
.section__title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.028em;
  margin-bottom: 24px;
  line-height: 1.06;
}
.section__title--light { color: var(--white); }
.section__lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin: 0;
  line-height: 1.7;
  font-weight: 400;
}
.section__head--centered .section__lead { margin-left: auto; margin-right: auto; }
.section__lead--light { color: rgba(255,255,255,.7); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .005em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 17px 30px; font-size: 14.5px; }
.btn--block { width: 100%; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold-1) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  box-shadow: 0 22px 50px rgba(160, 127, 69, .5);
  background: linear-gradient(135deg, var(--gold-1) 0%, #8B6B33 100%);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(14, 29, 45, .25);
}
.btn--navy:hover { background: var(--navy-2); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--outline-light { color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(252, 251, 247, .82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background .3s, border-color .3s;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand__mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__text strong {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--navy);
  font-weight: 800;
}
.brand__text em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: .35em;
  color: var(--gold-1);
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 8px 0;
  transition: color .2s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--gold-1);
  transition: width .35s var(--ease), left .35s var(--ease);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { width: 100%; left: 0; }

.header__cta { padding: 12px 22px; font-size: 13px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  width: 24px; height: 1.8px; background: var(--navy); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 24px 32px 32px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a { padding: 14px 0; font-weight: 500; font-size: 15px; border-bottom: 1px solid var(--line); }
.nav-mobile a:last-child { border: none; margin-top: 14px; justify-content: center; }
.nav-mobile.open { display: flex; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding-top: 60px;
  overflow: hidden;
  background:
    radial-gradient(70% 50% at 85% 25%, rgba(201, 163, 91, .07) 0%, transparent 60%),
    radial-gradient(80% 70% at 0% 100%, rgba(14, 29, 45, .04) 0%, transparent 60%),
    var(--off);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 70px 32px 110px;
}

/* Badges acima do título */
.badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .04em;
  box-shadow: var(--shadow-xs);
}
.badge__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #18B257;
  box-shadow: 0 0 0 4px rgba(24, 178, 87, .15);
}
.badge__icon { color: var(--gold-1); font-size: 13px; line-height: 1; }
.badge--gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--white) 100%);
  border-color: rgba(160, 127, 69, .25);
}

.hero__title {
  font-size: clamp(40px, 5.4vw, 70px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 28px;
  color: var(--ink);
  max-width: 640px;
}

.hero__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 40px;
  max-width: 540px;
  font-weight: 400;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  align-items: start;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .2em;
  line-height: 1.45;
  font-weight: 500;
}

/* ============================================
   HERO VISUAL — Fachada
   ============================================ */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 640px;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero__photo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  isolation: isolate;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.5s var(--ease-out);
}
.hero__photo:hover img { transform: scale(1.04); }
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 29, 45, .35) 100%);
  pointer-events: none;
}

/* Selo dourado sobre a foto */
.hero__seal {
  position: absolute;
  top: -32px;
  right: -24px;
  width: 124px;
  height: 124px;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold-1) 100%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(160, 127, 69, .42), inset 0 1px 0 rgba(255,255,255,.3);
  z-index: 5;
}
.hero__seal::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  pointer-events: none;
}
.hero__seal em {
  display: block;
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 2px;
  opacity: .9;
}
.hero__seal strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Cards de stats sobrepostos */
.hero__card {
  position: absolute;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__card--name {
  top: 80px;
  left: -40px;
  width: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.08);
}
.hero__card--name strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .02em;
  color: var(--white);
  display: block;
}
.hero__card--name em {
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: .25em;
  color: var(--gold-3);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}
.hero__card--name .hero__since {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold-3);
}

/* ============================================
   MARQUEE
   ============================================ */
.hero__marquee {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 24px 0;
}
.hero__marquee::before, .hero__marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.hero__marquee::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.hero__marquee::after { right: 0; background: linear-gradient(270deg, var(--navy), transparent); }
.marquee__track {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: .22em;
  font-size: 13px;
  text-transform: uppercase;
}
.marquee__track i {
  color: var(--gold-2);
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.diff {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 38px 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.diff::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(160, 127, 69, .04) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.diff:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(160, 127, 69, .35);
}
.diff:hover::before { opacity: 1; }
.diff__num {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 50px;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--gold-2);
  line-height: 1;
  position: relative;
}
.diff__body { position: relative; }
.diff__body h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.diff__body p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 400;
}

/* ============================================
   PROCESSO
   ============================================ */
.section--navy .section__lead { color: rgba(255,255,255,.7); }
.section--navy .eyebrow { color: rgba(255,255,255,.7); }
.section--navy .eyebrow--gold { color: var(--gold-3); }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 80px;
  position: relative;
}
.process__line {
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-2) 20%, var(--gold-2) 80%, transparent 100%);
  opacity: .3;
  z-index: 0;
}
.step { position: relative; padding: 0 8px; }
.step__bullet {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 500;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin: 0 auto 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25), 0 0 0 1px rgba(160, 127, 69, .15);
  position: relative;
  z-index: 1;
}
.step h3 {
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: -0.015em;
}
.step p {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  text-align: center;
  font-weight: 400;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(160, 127, 69, .35);
}
.testimonial__stars { color: var(--gold-2); font-size: 15px; letter-spacing: 4px; }
.testimonial p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
  flex: 1;
  font-weight: 400;
}
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.avatar--1 { background: linear-gradient(135deg, #4A6CA3 0%, var(--navy) 100%); }
.avatar--2 { background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold-1) 100%); color: var(--white); }
.avatar--3 { background: linear-gradient(135deg, #6B7BAF 0%, var(--navy-3) 100%); }
.avatar--4 { background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold-1) 100%); }
.avatar--5 { background: linear-gradient(135deg, #2D3855 0%, var(--navy-deep) 100%); }
.avatar--6 { background: linear-gradient(135deg, #A38C5D 0%, var(--gold-1) 100%); }
.testimonial__author { display: flex; flex-direction: column; line-height: 1.3; }
.testimonial__author strong { font-size: 14.5px; color: var(--navy); font-weight: 600; }
.testimonial__author em { font-style: normal; font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 400; }

/* ============================================
   GRID HELPERS
   ============================================ */
.grid { display: grid; gap: 70px; }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--center { align-items: center; }

/* ============================================
   ENTREGA
   ============================================ */
.cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
  margin: 36px 0 44px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.cities li {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.cities li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-2);
}

.delivery-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.delivery-card::before {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  opacity: .5;
}
.delivery-card header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
}
.delivery-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--gold-3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.delivery-card__icon svg { width: 30px; height: 30px; }
.delivery-card header h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; color: var(--ink); letter-spacing: -0.015em; }
.delivery-card header p { margin: 0; color: var(--muted); font-size: 14px; }
.delivery-card ul { display: grid; gap: 14px; position: relative; }
.delivery-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line-strong);
}
.delivery-card li:last-child { border-bottom: 0; }
.delivery-card li strong { color: var(--ink); font-size: 14.5px; font-weight: 600; }
.delivery-card li span {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-1);
  font-size: 16px;
}

/* ============================================
   NOSSA HISTÓRIA
   ============================================ */
/* Timeline */
.timeline {
  position: relative;
  display: grid;
  gap: 36px;
  padding: 48px 44px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 0%, rgba(201, 163, 91, .15) 0%, transparent 45%);
  pointer-events: none;
}
.timeline::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 163, 91, .18);
  border-radius: calc(var(--radius-xl) - 12px);
  pointer-events: none;
}
.timeline__rail {
  position: absolute;
  top: 78px;
  bottom: 78px;
  left: 102px;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 163, 91, .35) 15%, rgba(201, 163, 91, .35) 85%, transparent 100%);
}
.timeline__item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.timeline__year {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  color: var(--gold-3);
  letter-spacing: -0.005em;
  padding-top: 4px;
  position: relative;
}
.timeline__year::after {
  content: '';
  position: absolute;
  right: -22px;
  top: 12px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(201, 163, 91, .18), inset 0 0 0 2px var(--navy);
}
.timeline__body h4 {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.012em;
}
.timeline__body p {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
}

.section--story p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 18px;
  font-weight: 400;
}

.check-list { margin-top: 30px; display: grid; gap: 14px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: var(--ink-2);
  font-size: 15px;
}
.check-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold-1) 100%);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"), linear-gradient(135deg, var(--gold-2) 0%, var(--gold-1) 100%);
  background-size: 14px, cover;
  background-repeat: no-repeat;
  background-position: center, center;
}

/* ============================================
   CONTATO
   ============================================ */
.contact { overflow: hidden; }
.contact__info { display: grid; gap: 0; margin: 36px 0; }
.contact__info li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact__label {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-3);
  font-weight: 600;
  padding-top: 4px;
}
.contact__value {
  font-size: 15.5px;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
  font-weight: 400;
}
.contact__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.contact__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 18px;
  color: var(--ink);
  position: relative;
}
.contact__form::before {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  top: -120px; right: -120px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  border-radius: 50%;
  opacity: .7;
  pointer-events: none;
}
.contact__form h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
.contact__form-sub { font-size: 14px; color: var(--muted); margin: 0 0 14px; line-height: 1.6; }
.contact__form label { display: flex; flex-direction: column; gap: 6px; }
.contact__form span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--off);
  font-weight: 400;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--gold-2);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 163, 91, .15);
}
.contact__form textarea { resize: vertical; min-height: 110px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.6);
  padding: 90px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -350px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(160, 127, 69, .07) 0%, transparent 70%);
  border-radius: 50%;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.footer__brand .brand { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.brand--footer .brand__text strong { color: var(--white); }
.brand--footer .brand__text em { color: var(--gold-3); }
.footer__brand p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  max-width: 340px;
}
.footer h4 {
  color: var(--white);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}
.footer ul { display: grid; gap: 10px; }
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer ul a:hover { color: var(--gold-3); }
.footer ul li { font-size: 14px; line-height: 1.6; }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  position: relative;
}
.footer__bottom p { margin: 0; }

/* ============================================
   WHATSAPP FAB (pill expansiva no hover)
   ============================================ */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: background .3s var(--ease), transform .15s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.wa-fab:hover { background: #1FB854; box-shadow: 0 8px 28px rgba(37, 211, 102, .5); }
.wa-fab:active { transform: scale(.96); }

.wa-fab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.wa-fab__icon svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.wa-fab__label {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  padding-right: 0;
  transition: max-width .35s var(--ease), opacity .3s var(--ease), padding-right .35s var(--ease);
}
.wa-fab:hover .wa-fab__label,
.wa-fab:focus-visible .wa-fab__label {
  max-width: 180px;
  opacity: 1;
  padding-right: 22px;
}

@media (max-width: 720px) {
  .wa-fab { bottom: 20px; right: 20px; }
  .wa-fab__icon { width: 52px; height: 52px; }
  .wa-fab__icon svg { width: 24px; height: 24px; }
}

/* ============================================
   REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 70px; padding: 50px 32px 90px; }
  .hero__visual { max-width: 520px; margin: 0 auto; aspect-ratio: 5/6; }
  .grid--2 { grid-template-columns: 1fr; gap: 50px; }
  .diff-grid { grid-template-columns: 1fr; }
  .timeline { padding: 40px 32px; }
  .timeline__rail { left: 92px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 50px 28px; }
  .process__line { display: none; }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  :root { --header-h: 76px; }
  .section { padding: 90px 0; }
  .container { padding: 0 22px; }
  .hero { padding-top: 30px; }
  .hero__inner { padding: 30px 22px 70px; gap: 50px; }
  .hero__title { font-size: 38px; }
  .hero__lead { font-size: 16px; }
  .hero__stats { gap: 28px; }
  .stat__num { font-size: 36px; }
  .hero__seal { width: 100px; height: 100px; top: -20px; right: -10px; font-size: 11px; }
  .hero__seal strong { font-size: 24px; }
  .hero__seal em { font-size: 9px; }
  .hero__card--name { left: -10px; top: 40px; width: 180px; padding: 14px 18px; }
  .hero__card--name strong { font-size: 15px; }
  .hero__card--name .hero__since { font-size: 13px; padding-top: 10px; margin-top: 10px; }
  .brand__text strong { font-size: 17px; }
  .brand__mark { width: 38px; height: 38px; }
  .section__title { font-size: 32px; }
  .section__head { margin-bottom: 50px; }
  .diff { grid-template-columns: 60px 1fr; padding: 28px; gap: 18px; }
  .diff__num { font-size: 42px; }
  .process { grid-template-columns: 1fr; gap: 40px; }
  .testimonials { grid-template-columns: 1fr; }
  .cities { grid-template-columns: repeat(2, 1fr); padding: 22px; }
  .delivery-card { padding: 30px 24px; }
  .timeline { padding: 32px 24px; gap: 28px; }
  .timeline__item { grid-template-columns: 70px 1fr; gap: 22px; }
  .timeline__rail { left: 78px; top: 60px; bottom: 60px; }
  .timeline__year { font-size: 15px; }
  .timeline__year::after { right: -18px; width: 9px; height: 9px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .contact__info li { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .contact__form { padding: 32px 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
