/* ==========================================================================
   Mil Aromas — Tema WordPress v1.0
   Design System: Navy + Pink + Lime / Fraunces + Nunito
   ========================================================================== */

/* ---- Google Fonts (carregadas via wp_enqueue_scripts) ---- */

:root {
  --navy-50:  #EDEFF7; --navy-100: #D4D9EC; --navy-200: #A7B1D4; --navy-300: #7082B8;
  --navy-400: #465A9A; --navy-500: #2F4383; --navy-600: #24336B; --navy-700: #1C2858;
  --navy-800: #141E47; --navy-900: #0C1636; --navy-950: #070E24;
  --pink-50:  #FDEAF0; --pink-100: #FAC8D6; --pink-300: #F18BA8; --pink-500: #E85C83; --pink-700: #B93A5C;
  --lime-50:  #F1F8DA; --lime-100: #E1F1AE; --lime-300: #C8E36A; --lime-500: #A8CE2E; --lime-700: #6F9015;
  --cream-50: #FFFFFF; --cream-100:#FAFBFD; --cream-200:#F1F3F8; --cream-300:#E4E7F0; --cream-400:#BCC2D2;
  --warm-50:  #FEFCF8; --warm-100: #FBF7F1; --warm-200: #F3ECE0;
  --ink-100:  #5B6275; --ink-200: #2F3648; --ink-400: #141E47;
  --line-1:   rgba(20,30,71,.10); --line-2: rgba(20,30,71,.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-sans:    "Nunito", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;
  --shadow-1: 0 1px 2px rgba(20,30,71,.06);
  --shadow-2: 0 6px 18px rgba(20,30,71,.08);
  --shadow-3: 0 16px 40px rgba(20,30,71,.12);
  --shadow-4: 0 28px 70px rgba(20,30,71,.16);
  --ease: cubic-bezier(.2,.8,.2,1);
  --container: 1200px;
  --container-wide: 1320px;
  --radius-sm: 6px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--warm-100);
  color: var(--ink-400);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--navy-800);
  margin: 0;
  line-height: 1.08;
}
p { margin: 0; }
ul { margin: 0; padding: 0; }

/* ── Layout helpers ─────────────────────────────── */
.wrap       { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.wrap-wide  { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.rule       { height: 1px; background: var(--line-2); border: 0; margin: 0; }

/* ── Typography helpers ─────────────────────────── */
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--pink-700); display: inline-block; }
.ed-label { font-family: var(--font-sans); font-size: 12px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; color: var(--pink-700); display: inline-block; }
.lead     { font-size: 19px; line-height: 1.6; color: var(--ink-200); font-weight: 500; }
.muted    { color: var(--ink-100); }

/* ── Dark sections ─────────────────────────────── */
.dark { background: var(--navy-900); color: #C7D0EA; }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark .eyebrow, .dark .ed-label { color: var(--lime-300); }
.dark .lead { color: #AFBADB; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  font-weight: 800; padding: 15px 28px; border-radius: 999px; border: none;
  font-size: 14.5px; transition: all 180ms var(--ease); display: inline-flex;
  align-items: center; gap: 9px; letter-spacing: .01em; font-family: inherit; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--navy-800); color: #fff; }
.btn-primary:hover { background: var(--navy-900); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn-accent  { background: var(--pink-500); color: #fff; }
.btn-accent:hover  { background: var(--pink-700); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn-lime    { background: var(--lime-500); color: var(--navy-900); }
.btn-lime:hover    { background: var(--lime-700); color: #fff; transform: translateY(-2px); }
.btn-ghost   { background: transparent; color: var(--navy-800); border: 1.5px solid var(--navy-800); }
.btn-ghost:hover   { background: var(--navy-800); color: #fff; }
.dark .btn-ghost   { color: #fff; border-color: rgba(255,255,255,.5); }
.dark .btn-ghost:hover { background: #fff; color: var(--navy-900); }
.btn-light   { background: #fff; color: var(--navy-900); }
.btn-light:hover   { background: var(--warm-200); transform: translateY(-2px); }
.btn-line    { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn-line:hover    { background: rgba(255,255,255,.12); }
.btn-lg { padding: 17px 34px; font-size: 15.5px; }

.linkarrow {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: 14.5px;
  color: var(--navy-800); border-bottom: 2px solid currentColor; padding-bottom: 2px;
  transition: gap 180ms var(--ease);
}
.linkarrow:hover { gap: 11px; color: var(--pink-700); }
.dark .linkarrow { color: #fff; }
.dark .linkarrow:hover { color: var(--lime-300); }

/* ── Section header ─────────────────────────────── */
.shead { display: flex; flex-direction: column; gap: 12px; max-width: 680px; margin-bottom: 48px; }
.shead.center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }
.shead h2 { font-size: clamp(30px,4vw,46px); }
.shead p { font-size: 18px; color: var(--ink-100); line-height: 1.6; }

/* ── Stat row ───────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.stat .n { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px,5vw,60px); color: var(--navy-800); line-height: 1; letter-spacing: -.02em; }
.stat .n em { color: var(--pink-500); font-style: normal; }
.dark .stat .n { color: #fff; }
.dark .stat .n em { color: var(--lime-300); font-style: normal; }
.stat .t { font-size: 14.5px; color: var(--ink-100); margin-top: 10px; font-weight: 600; }
.dark .stat .t { color: #9AA5CC; }

/* ── Cards ──────────────────────────────────────── */
.cards3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line-1); border-radius: var(--radius-md);
  padding: 32px; transition: all 280ms var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); border-color: var(--navy-200); }
.card .ic {
  width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; color: #fff;
}
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p  { font-size: 15px; color: var(--ink-100); line-height: 1.6; }
.ic.navy { background: var(--navy-800); }
.ic.pink { background: var(--pink-500); }
.ic.lime { background: var(--lime-500); color: var(--navy-900); }
.card .ic svg { width: 26px; height: 26px; }

/* ── Pills ──────────────────────────────────────── */
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 999px; background: var(--navy-50); color: var(--navy-700); }
.pill.pink { background: var(--pink-50); color: var(--pink-700); }
.pill.lime { background: var(--lime-50); color: var(--lime-700); }

/* ── CTA Band ───────────────────────────────────── */
.band { border-radius: var(--radius-lg); padding: 64px; position: relative; overflow: hidden; }
.band.navy { background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: #fff; }
.band.lime { background: linear-gradient(135deg, var(--lime-500), var(--lime-700)); color: var(--navy-900); }
.band.navy h2, .band.lime h2 { color: inherit; }
.band::after { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: rgba(255,255,255,.08); bottom: -160px; right: -100px; }

/* ── Image placeholders (substituídos por <img> no WP) ── */
.ph {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; background: var(--cream-200);
  background-image: repeating-linear-gradient(135deg, rgba(20,30,71,.05) 0 12px, transparent 12px 24px);
  display: flex; align-items: center; justify-content: center; color: var(--navy-500);
}
.ph.pink  { background-color: var(--pink-50); background-image: repeating-linear-gradient(135deg, rgba(184,58,92,.07) 0 12px, transparent 12px 24px); }
.ph.lime  { background-color: var(--lime-50); background-image: repeating-linear-gradient(135deg, rgba(111,144,21,.08) 0 12px, transparent 12px 24px); }
.ph.navy  { background-color: var(--navy-800); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 12px, transparent 12px 24px); }

/* ── Imagens reais ──────────────────────────────── */
.ma-img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

/* ==========================================================================
   TOP STRIP + HEADER
   ========================================================================== */
.top { background: var(--navy-900); color: #C7D0EA; font-size: 13px; padding: 9px 24px; }
.top-in { max-width: var(--container-wide); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-in .l { display: flex; gap: 8px; align-items: center; }
.top strong { color: #fff; font-weight: 800; }
.top .r { display: flex; gap: 20px; align-items: center; }
.top .r a { display: inline-flex; gap: 7px; align-items: center; font-weight: 600; color: #C7D0EA; }
.top .r a:hover { color: #fff; }
.top svg { width: 15px; height: 15px; }

header.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,251,253,.9);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid var(--line-1);
}
.hmain { max-width: var(--container-wide); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 28px; }
.logo { flex-shrink: 0; }
.logo img { height: 52px; width: auto; }
/* ── Navegação principal: reset do <ul>/<li> gerado pelo WordPress ── */
nav.mainnav { display: flex; gap: 6px; margin-left: 8px; align-items: center; }
nav.mainnav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 6px; align-items: center; }
nav.mainnav li { list-style: none; position: relative; }
nav.mainnav li ul { display: none; } /* oculta submenus por ora */
nav.mainnav a { font-size: 15px; font-weight: 700; color: var(--ink-200); padding: 9px 14px; border-radius: 10px; transition: all 160ms var(--ease); white-space: nowrap; display: block; }
nav.mainnav a:hover { color: var(--navy-800); background: var(--cream-200); }
nav.mainnav li.current-menu-item > a,
nav.mainnav li.current_page_item > a,
nav.mainnav li.current-menu-ancestor > a { color: var(--navy-800); background: var(--navy-50); }
.hactions { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.burger { display: none; background: none; border: none; padding: 8px; color: var(--navy-800); }
.burger svg { width: 26px; height: 26px; }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 60; background: rgba(7,14,36,.5); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 240ms var(--ease); }
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(360px,86vw);
  background: var(--cream-100); padding: 24px;
  transform: translateX(100%); transition: transform 320ms var(--ease);
  display: flex; flex-direction: column; gap: 0; overflow-y: auto;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-panel .x { align-self: flex-end; background: none; border: none; color: var(--navy-800); padding: 6px; margin-bottom: 8px; }
.drawer-panel .x svg { width: 26px; height: 26px; }
/* Reset da <ul> gerada pelo wp_nav_menu dentro do drawer */
.drawer-panel ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.drawer-panel li { list-style: none; }
.drawer-panel li ul { display: none; } /* oculta submenus */
.drawer-panel a { font-size: 18px; font-weight: 700; color: var(--navy-800); padding: 14px 12px; border-radius: 12px; border-bottom: 1px solid var(--line-1); display: block; }
.drawer-panel a:hover, .drawer-panel li.current-menu-item > a { background: var(--navy-50); }
.drawer-panel .btn { margin-top: 14px; justify-content: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.ft { background: var(--navy-950); color: #A7B1D4; padding: 72px 0 0; }
.ft-grid {
  max-width: var(--container-wide); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px;
}
.ft-brand .ft-logo { height: 48px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.ft-grid p { font-size: 14px; line-height: 1.7; color: #8C96BC; max-width: 320px; margin: 0 0 20px; }
.ft-grid h4 { color: #fff; font-family: var(--font-sans); font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 16px; }
.ft-grid ul { list-style: none; padding: 0; margin: 0; }
.ft-grid li { list-style: none; }
.ft-grid a { display: block; font-size: 14.5px; color: #A7B1D4; padding: 6px 0; transition: color 160ms var(--ease); }
.ft-grid a:hover { color: #fff; }
.ft-addr { font-size: 14px; line-height: 1.7; color: #8C96BC; }
.ft-addr strong { color: #C7D0EA; }
.socials { display: flex; gap: 8px; margin-top: 4px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy-800);
  border: 1px solid var(--navy-700); display: flex; align-items: center; justify-content: center;
  color: #fff; padding: 0;
}
.socials a:hover { background: var(--pink-500); border-color: var(--pink-500); }
.socials svg { width: 17px; height: 17px; }
.ft-bot {
  max-width: var(--container-wide); margin: 48px auto 0; padding: 22px 24px;
  border-top: 1px solid var(--navy-800); display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: #6E78A0;
}

/* ==========================================================================
   HERO SLIDER (front-page)
   ========================================================================== */
.cine {
  position: relative; height: 90vh; min-height: 600px; overflow: hidden;
  background: radial-gradient(ellipse 1100px 700px at 78% 18%, #243466 0%, transparent 60%),
              linear-gradient(160deg,#141E47 0%,#0C1636 55%,#070E24 100%);
}
.cine .stripes { position: absolute; inset: 0; pointer-events: none; background-image: repeating-linear-gradient(135deg,rgba(255,255,255,.045) 0 1px,transparent 1px 16px); }
.cine .glow { position: absolute; top: -12%; right: 4%; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle,rgba(232,92,131,.30) 0%,transparent 70%); filter: blur(8px); z-index: 1; animation: drift 14s ease-in-out infinite alternate; }
.cine .meta-row { position: absolute; top: 0; left: 0; right: 0; z-index: 10; display: flex; justify-content: space-between; max-width: var(--container-wide); margin: 0 auto; padding: 26px 32px; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.slides { position: absolute; inset: 0; z-index: 2; }
.slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity 1.4s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; justify-content: flex-end; }
.slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
.slide-bg { position: absolute; inset: 0; overflow: hidden; }
.slide-bg img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; animation: kenburns 22s ease-in-out infinite alternate; }
.slide-bg .ph { width: 100%; height: 100%; border-radius: 0; animation: kenburns 22s ease-in-out infinite alternate; }
.slide-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg,rgba(7,14,36,.92) 0%,rgba(7,14,36,.62) 52%,rgba(7,14,36,.18) 100%); }
.slide-inner { position: relative; z-index: 3; align-self: center; width: 100%; max-width: var(--container-wide); padding: 0 32px 108px; }
.slide .ed-label,.slide h1,.slide .sub,.slide .row { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.slide.is-active .ed-label { opacity: 1; transform: none; transition-delay: .1s; }
.slide.is-active h1 { opacity: 1; transform: none; transition-delay: .3s; }
.slide.is-active .sub { opacity: 1; transform: none; transition-delay: .55s; }
.slide.is-active .row { opacity: 1; transform: none; transition-delay: .75s; }
.slide .ed-label { color: rgba(255,255,255,.82); }
.slide h1 { color: #fff; font-size: clamp(44px,5.4vw,88px); line-height: .98; letter-spacing: -.02em; margin: 18px 0 0; max-width: 14ch; font-variation-settings: "opsz" 144; }
.slide h1 em { font-style: italic; font-weight: 400; }
.slide .sub { color: rgba(255,255,255,.86); font-size: clamp(16px,1.5vw,20px); line-height: 1.55; max-width: 480px; margin: 26px 0 32px; font-weight: 500; }
.slide .row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.particles { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.particles span { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: radial-gradient(circle at 35% 35%,#fff,rgba(255,255,255,.35)); box-shadow: 0 0 10px rgba(255,255,255,.5); opacity: .6; animation: floatP 9s ease-in-out infinite; }
.particles span:nth-child(1) { left:6%;  top:62%; animation-duration:9s;  animation-delay:-1s; }
.particles span:nth-child(2) { left:18%; top:36%; width:5px; height:5px; animation-name:floatP2; animation-duration:12s; animation-delay:-4s; }
.particles span:nth-child(3) { left:32%; top:74%; animation-name:floatP3; animation-duration:10s; animation-delay:-2.5s; }
.particles span:nth-child(4) { left:46%; top:28%; width:6px; height:6px; animation-name:floatP2; animation-duration:14s; animation-delay:-6s; }
.particles span:nth-child(5) { left:55%; top:82%; width:4px; height:4px; opacity:.5; animation-name:floatP3; animation-duration:8s; animation-delay:-3s; }
.particles span:nth-child(6) { left:65%; top:50%; width:5px; height:5px; animation-name:floatP; animation-duration:13s; animation-delay:-5s; }
.particles span:nth-child(7) { left:74%; top:34%; animation-name:floatP3; animation-duration:11s; animation-delay:-7s; }
.particles span:nth-child(8) { left:83%; top:68%; width:5px; height:5px; animation-name:floatP2; animation-duration:9s; animation-delay:-2s; }
.particles span:nth-child(9) { left:91%; top:44%; width:6px; height:6px; opacity:.5; animation-name:floatP; animation-duration:16s; animation-delay:-9s; }
.particles span:nth-child(10){ left:26%; top:54%; width:4px; height:4px; animation-name:floatP3; animation-duration:10s; animation-delay:-4s; }
.sdots { position: absolute; bottom: 40px; right: 32px; z-index: 10; display: flex; gap: 10px; align-items: center; }
.sdot { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.4); border: none; cursor: pointer; padding: 0; transition: all .3s ease; }
.sdot.active { width: 26px; background: #fff; }

/* ==========================================================================
   HOME — restantes seções
   ========================================================================== */
.cur-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 36px; }
.cur-head h2 { font-size: clamp(32px,4vw,52px); letter-spacing: -.02em; }
.cur { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; }
.cur .stack { display: grid; gap: 18px; }
.feat-card, .mini-card { position: relative; overflow: hidden; border-radius: var(--radius-sm); display: block; }
.feat-card { height: 560px; }
.mini-card { height: 271px; }
.feat-card .ph, .mini-card .ph,
.feat-card img, .mini-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform 700ms var(--ease); }
.feat-card:hover .ph, .mini-card:hover .ph,
.feat-card:hover img, .mini-card:hover img { transform: scale(1.05); }
.feat-card::after, .mini-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 40%,rgba(7,14,36,.72)); pointer-events: none; }
.cardtext { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 32px; color: #fff; }
.mini-card .cardtext { padding: 24px; }
.cardtext .n { font-family: var(--font-sans); font-size: 11px; font-weight: 800; letter-spacing: .2em; opacity: .85; }
.cardtext h3 { color: #fff; font-size: clamp(22px,2.4vw,32px); margin: 8px 0 0; letter-spacing: -.01em; }
.cardtext .go { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-weight: 800; font-size: 13.5px; color: #fff; }

/* Essay section */
.essay { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.essay .imgwrap { position: relative; }
.essay .ph, .essay .imgwrap img { height: 560px; border-radius: var(--radius-sm); width: 100%; object-fit: cover; }
.essay .tagfloat { position: absolute; bottom: -22px; left: -22px; background: var(--warm-100); border-radius: var(--radius-sm); padding: 18px 24px; box-shadow: var(--shadow-3); }
.essay .tagfloat b { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--navy-800); display: block; line-height: 1; }
.essay .tagfloat span { font-size: 12px; color: var(--ink-100); letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.essay h2 { font-size: clamp(30px,3.6vw,46px); letter-spacing: -.02em; line-height: 1.08; margin: 16px 0 20px; }
.essay h2 em { font-style: italic; font-weight: 500; color: var(--pink-700); }
.essay p { font-size: 17px; color: var(--ink-200); line-height: 1.8; margin-bottom: 18px; }
.essay .nums { display: flex; gap: 48px; margin: 28px 0 0; padding-top: 24px; border-top: 1px solid var(--line-1); }
.essay .nums b { font-family: var(--font-display); font-weight: 600; font-size: 38px; color: var(--navy-800); line-height: 1; display: block; }
.essay .nums span { font-size: 12.5px; color: var(--ink-100); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; margin-top: 8px; display: block; }

/* Famílias olfativas */
.fam { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.16); }
.fam .col { padding: 36px 24px 40px; border-right: 1px solid rgba(255,255,255,.16); transition: background 300ms var(--ease); }
.fam .col:last-child { border-right: none; }
.fam .col:hover { background: rgba(255,255,255,.04); }
.fam .col .idx { font-family: var(--font-display); font-size: 14px; color: var(--lime-300); }
.fam .col h3 { color: #fff; font-size: 24px; margin: 18px 0 12px; letter-spacing: -.01em; }
.fam .col p { color: #9AA5CC; font-size: 14px; line-height: 1.6; }

/* Journal / Blog */
.journal { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.jpost { display: block; }
.jpost .ph, .jpost .post-thumb img { height: 280px; border-radius: var(--radius-sm); margin-bottom: 20px; overflow: hidden; transition: transform 600ms var(--ease); width: 100%; object-fit: cover; }
.jpost:hover .ph, .jpost:hover .post-thumb img { transform: scale(1.02); }
.jpost .n { font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--pink-700); }
.jpost h3 { font-size: 23px; margin: 12px 0 8px; letter-spacing: -.01em; line-height: 1.18; }
.jpost p { font-size: 14.5px; color: var(--ink-100); line-height: 1.6; }

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.pghero {
  position: relative; overflow: hidden; padding: 120px 0 100px;
  background: radial-gradient(ellipse 900px 600px at 70% 20%,#243466 0%,transparent 60%),
              linear-gradient(160deg,#141E47 0%,#0C1636 55%,#070E24 100%);
}
.pghero .stripes { position: absolute; inset: 0; pointer-events: none; background-image: repeating-linear-gradient(135deg,rgba(255,255,255,.045) 0 1px,transparent 1px 16px); }
.pghero .glow { position: absolute; top: -10%; right: 8%; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle,rgba(232,92,131,.25) 0%,transparent 70%); filter: blur(8px); }
.pghero .inner { position: relative; z-index: 2; }
.pghero .crumb { font-size: 13px; color: #8C96BC; font-weight: 600; margin-bottom: 14px; }
.pghero .crumb a { color: #8C96BC; }
.pghero .crumb a:hover { color: #fff; }
.pghero h1 { color: #fff; font-size: clamp(42px,5.2vw,76px); line-height: .98; margin: 0 0 24px; font-variation-settings: "opsz" 144; max-width: 16ch; letter-spacing: -.02em; }
.pghero h1 em { font-style: italic; font-weight: 400; color: var(--pink-300); }
.pghero .lead { color: #AFBADB; font-size: 19px; line-height: 1.6; max-width: 600px; font-weight: 500; }
.pghero.lime-glow .glow { background: radial-gradient(circle,rgba(168,206,46,.22) 0%,transparent 70%); }
.pghero.lime-glow h1 em { color: var(--lime-300); }

/* ==========================================================================
   QUEM SOMOS
   ========================================================================== */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story .imgwrap { position: relative; }
.story .ph, .story .imgwrap img { height: 500px; border-radius: var(--radius-sm); width: 100%; object-fit: cover; }
.story .tagfloat { position: absolute; bottom: -22px; right: -22px; background: var(--warm-100); border-radius: var(--radius-sm); padding: 18px 24px; box-shadow: var(--shadow-3); }
.story .tagfloat b { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--navy-800); display: block; line-height: 1; }
.story .tagfloat span { font-size: 12px; color: var(--ink-100); letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.story h2 { font-size: clamp(28px,3.6vw,44px); letter-spacing: -.02em; line-height: 1.08; margin: 16px 0 20px; }
.story h2 em { font-style: italic; font-weight: 500; color: var(--pink-700); }
.story p { font-size: 17px; color: var(--ink-200); line-height: 1.8; margin-bottom: 16px; }
.nums { display: flex; gap: 48px; margin: 32px 0 0; padding-top: 24px; border-top: 1px solid var(--line-1); }
.nums b { font-family: var(--font-display); font-weight: 600; font-size: 38px; color: var(--navy-800); line-height: 1; display: block; }
.nums span { font-size: 12.5px; color: var(--ink-100); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; margin-top: 8px; display: block; }
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.16); }
.tl { padding: 36px 24px 40px; border-right: 1px solid rgba(255,255,255,.16); transition: background 300ms var(--ease); }
.tl:last-child { border-right: none; }
.tl:hover { background: rgba(255,255,255,.04); }
.tl .yr { font-family: var(--font-display); font-size: 14px; color: var(--lime-300); }
.tl h4 { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 24px; margin: 18px 0 12px; letter-spacing: -.01em; }
.tl p { color: #9AA5CC; font-size: 14px; line-height: 1.6; }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.quote { max-width: 880px; margin: 0 auto; text-align: center; }
.quote p { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: clamp(26px,3.4vw,40px); line-height: 1.3; color: #fff; }
.quote .who { margin-top: 28px; font-family: var(--font-sans); font-style: normal; font-size: 15px; color: var(--lime-300); font-weight: 700; }

/* ==========================================================================
   PRODUTOS
   ========================================================================== */
.catnav { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.catnav a { font-size: 14px; font-weight: 700; padding: 10px 20px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.20); color: rgba(255,255,255,.85); transition: all 180ms var(--ease); }
.catnav a:hover, .catnav a.active { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.4); }
.catsec { scroll-margin-top: 90px; }
.cattop { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 36px; }
.cattop h2 { font-size: clamp(28px,3.4vw,42px); letter-spacing: -.02em; }
.cattop h2 em { font-style: italic; font-weight: 500; color: var(--pink-700); }
.cattop p { font-size: 16px; color: var(--ink-100); max-width: 560px; margin-top: 10px; line-height: 1.55; }
.pgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.prod { background: #fff; border: 1px solid var(--line-1); border-radius: var(--radius-md); overflow: hidden; transition: all 280ms var(--ease); }
.prod:hover { transform: translateY(-5px); box-shadow: var(--shadow-3); border-color: var(--navy-200); }
.prod .thumb { height: 170px; overflow: hidden; }
.prod .thumb .ph, .prod .thumb img { border-radius: 0; height: 100%; width: 100%; object-fit: cover; }
.prod .info { padding: 20px 18px 22px; }
.prod .info .sz { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--navy-500); }
.prod .info h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 8px 0 6px; line-height: 1.2; }
.prod .info p { font-size: 13px; color: var(--ink-100); line-height: 1.5; min-height: 38px; }
.prod .info .buy { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-weight: 800; font-size: 13px; color: var(--pink-700); }
.prod .info .buy:hover { color: var(--navy-800); }
.altbg { background: var(--cream-100); }

/* ==========================================================================
   BLOG
   ========================================================================== */
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.chip { font-size: 14px; font-weight: 700; padding: 10px 20px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.20); color: rgba(255,255,255,.85); cursor: pointer; transition: all 180ms var(--ease); }
.chip.active, .chip:hover { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.4); }
.feat-post { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; align-items: stretch; background: #fff; border: 1px solid var(--line-1); border-radius: var(--radius-sm); overflow: hidden; }
.feat-post .ph, .feat-post .feat-img { min-height: 400px; border-radius: 0; width: 100%; object-fit: cover; }
.feat-post .ct { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.feat-post .meta { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--pink-700); }
.feat-post h2 { font-size: clamp(26px,3vw,38px); margin: 14px 0 14px; line-height: 1.1; }
.feat-post h2 em { font-style: italic; font-weight: 500; color: var(--pink-700); }
.feat-post p { font-size: 16px; color: var(--ink-200); line-height: 1.65; margin-bottom: 24px; }
.grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post-card { display: block; background: #fff; border: 1px solid var(--line-1); border-radius: var(--radius-sm); overflow: hidden; transition: all 260ms var(--ease); }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-3); border-color: var(--navy-200); }
.post-card .ph, .post-card .post-img { height: 200px; border-radius: 0; width: 100%; object-fit: cover; }
.post-card .ct { padding: 24px; }
.post-card .meta { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--pink-700); }
.post-card h3 { font-size: 20px; margin: 10px 0 8px; line-height: 1.22; }
.post-card p { font-size: 14px; color: var(--ink-100); line-height: 1.6; }
.post-card .date { font-size: 12.5px; color: var(--ink-100); margin-top: 14px; font-weight: 600; }
.nl-band { position: relative; overflow: hidden; }
.nl-band .inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; position: relative; z-index: 2; }
.nl-band h2 { color: #fff; font-size: clamp(28px,3.4vw,40px); }
.nl-band h2 em { font-style: italic; color: var(--pink-300); font-weight: 500; }
.nl-band p { color: #AFBADB; font-size: 16px; margin-top: 12px; }
.nl-form { display: flex; gap: 10px; background: #fff; border-radius: 999px; padding: 6px 6px 6px 20px; }
.nl-form input { border: none; outline: none; flex: 1; font-size: 15px; font-family: inherit; color: var(--ink-400); background: transparent; }

/* Single post */
.post-content { max-width: 760px; margin: 0 auto; }
.post-content h1 { font-size: clamp(32px,4vw,52px); line-height: 1.05; margin-bottom: 24px; }
.post-content .post-meta { display: flex; gap: 16px; align-items: center; color: var(--ink-100); font-size: 14px; font-weight: 600; margin-bottom: 36px; border-bottom: 1px solid var(--line-1); padding-bottom: 24px; }
.post-content .post-hero { height: 480px; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 48px; }
.post-content .post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-body h2 { font-size: 28px; margin: 40px 0 16px; }
.post-body h3 { font-size: 22px; margin: 32px 0 12px; }
.post-body p { font-size: 17px; line-height: 1.8; color: var(--ink-200); margin-bottom: 20px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 20px; }
.post-body li { font-size: 17px; line-height: 1.7; color: var(--ink-200); margin-bottom: 8px; }
.post-body img { border-radius: var(--radius-sm); margin: 32px 0; }
.post-body blockquote { border-left: 4px solid var(--pink-500); padding: 16px 24px; margin: 32px 0; background: var(--pink-50); border-radius: 0 8px 8px 0; }
.post-body blockquote p { font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--navy-800); }

/* ==========================================================================
   DISTRIBUIDOR
   ========================================================================== */
.dhero { position: relative; overflow: hidden; padding: 100px 0 80px; background: radial-gradient(ellipse 900px 600px at 20% 80%,rgba(168,206,46,.18) 0%,transparent 60%), linear-gradient(160deg,#141E47 0%,#0C1636 55%,#070E24 100%); }
.dhero .stripes { position: absolute; inset: 0; pointer-events: none; background-image: repeating-linear-gradient(135deg,rgba(255,255,255,.045) 0 1px,transparent 1px 16px); }
.dhero .glow { position: absolute; bottom: -15%; left: 5%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle,rgba(168,206,46,.22) 0%,transparent 70%); filter: blur(8px); }
.dhero-in { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 460px; gap: 56px; align-items: start; }
.dhero .crumb { font-size: 13px; color: #8C96BC; font-weight: 600; }
.dhero .crumb a { color: #8C96BC; }
.dhero .crumb a:hover { color: #fff; }
.dhero h1 { color: #fff; font-size: clamp(38px,4.8vw,66px); line-height: .98; margin: 20px 0 24px; font-variation-settings: "opsz" 144; max-width: 14ch; letter-spacing: -.02em; }
.dhero h1 em { font-style: italic; font-weight: 400; color: var(--lime-300); }
.dhero .lead { color: #AFBADB; max-width: 520px; margin-bottom: 32px; font-size: 19px; line-height: 1.6; font-weight: 500; }
.dhero ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.dhero li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: #E4E8F5; font-weight: 600; }
.dhero li svg { width: 22px; height: 22px; color: var(--lime-300); flex-shrink: 0; margin-top: 1px; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.16); }
.step { padding: 36px 24px 40px; border-right: 1px solid rgba(255,255,255,.16); transition: background 300ms var(--ease); }
.step:last-child { border-right: none; }
.step:hover { background: rgba(255,255,255,.04); }
.step .n { font-family: var(--font-display); font-size: 14px; color: var(--lime-300); }
.step h4 { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 24px; margin: 18px 0 12px; letter-spacing: -.01em; }
.step p { color: #9AA5CC; font-size: 14px; line-height: 1.6; }
.faq { max-width: 780px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--line-1); padding: 22px 0; }
.qa h4 { font-family: var(--font-sans); font-weight: 800; font-size: 17.5px; color: var(--navy-800); margin-bottom: 8px; }
.qa p { font-size: 15px; color: var(--ink-100); line-height: 1.65; }

/* ==========================================================================
   CONTATO + FORMULÁRIOS
   ========================================================================== */
.cwrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-box { background: #fff; border: 1px solid var(--line-1); border-radius: var(--radius-sm); padding: 40px; box-shadow: var(--shadow-2); }
.form-box h3 { font-size: 24px; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--navy-700); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--cream-300); border-radius: 8px;
  padding: 13px 14px; font-size: 15px; font-family: inherit; color: var(--ink-400);
  background: #fff; transition: all 160ms var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-500); box-shadow: 0 0 0 4px rgba(47,67,131,.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-box .btn { width: 100%; justify-content: center; margin-top: 4px; }
.ok { display: none; background: var(--lime-50); border: 1px solid var(--lime-300); border-radius: 14px; padding: 18px; color: var(--lime-700); font-weight: 700; font-size: 15px; text-align: center; margin-bottom: 16px; }
.ok.show { display: block; }
.error-msg { color: #b91c1c; font-size: 13px; margin-top: 4px; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b91c1c; }
.field.has-error .error-msg { display: block; }
.info-boxes { display: grid; gap: 16px; }
.ibox { background: #fff; border: 1px solid var(--line-1); border-radius: var(--radius-sm); padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.ibox .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--navy-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy-700); }
.ibox .ic svg { width: 22px; height: 22px; }
.ibox h4 { font-family: var(--font-sans); font-weight: 800; font-size: 16px; color: var(--navy-800); margin-bottom: 4px; }
.ibox p { font-size: 14.5px; color: var(--ink-100); line-height: 1.6; }
.ibox a { color: var(--navy-700); font-weight: 700; }
.ibox a:hover { color: var(--pink-700); }
.map-embed { margin-top: 20px; border-radius: var(--radius-sm); overflow: hidden; }
.map-embed iframe { width: 100%; height: 220px; border: none; display: block; }

/* Distribuidor form */
.dist-form { background: #fff; border-radius: var(--radius-sm); padding: 36px; box-shadow: var(--shadow-4); }
.dist-form h3 { font-size: 24px; margin-bottom: 6px; }
.dist-form .sub { font-size: 14px; color: var(--ink-100); margin-bottom: 24px; }

/* ==========================================================================
   PÁGINA GENÉRICA (page.php)
   ========================================================================== */
.page-content { max-width: 860px; margin: 0 auto; padding: 80px 24px; }
.page-content h1 { font-size: clamp(32px,4vw,52px); margin-bottom: 24px; }
.page-body { font-size: 17px; color: var(--ink-200); line-height: 1.8; }
.page-body h2 { font-size: 28px; margin: 40px 0 16px; }
.page-body p { margin-bottom: 20px; }
.page-body ul, .page-body ol { padding-left: 24px; margin-bottom: 20px; }
.page-body li { margin-bottom: 8px; }

/* ==========================================================================
   PAGINAÇÃO
   ========================================================================== */
.pagination { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 48px; }
.page-numbers { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; border: 1.5px solid var(--line-2); color: var(--navy-800); transition: all 160ms var(--ease); }
.page-numbers.current { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.page-numbers:hover { background: var(--navy-50); border-color: var(--navy-300); }
.page-numbers.prev, .page-numbers.next { width: auto; padding: 0 18px; border-radius: 999px; }

/* ==========================================================================
   404
   ========================================================================== */
.pg404 { padding: 120px 0; text-align: center; }
.pg404 .num { font-family: var(--font-display); font-size: clamp(80px,12vw,160px); color: var(--navy-800); line-height: 1; font-weight: 700; }
.pg404 h1 { font-size: clamp(24px,3vw,36px); margin: 16px 0 12px; }
.pg404 p { font-size: 17px; color: var(--ink-100); margin-bottom: 32px; }

/* ==========================================================================
   SEARCH
   ========================================================================== */
.search-form { display: flex; gap: 10px; max-width: 600px; margin: 0 auto 48px; }
.search-form input { flex: 1; border: 1.5px solid var(--cream-300); border-radius: 12px; padding: 14px 18px; font-size: 15px; font-family: inherit; color: var(--ink-400); }
.search-form input:focus { outline: none; border-color: var(--navy-500); }
.search-results-title { font-size: clamp(24px,3vw,36px); margin-bottom: 32px; text-align: center; }

/* ==========================================================================
   ANIMAÇÕES
   ========================================================================== */
@keyframes kenburns { from { transform: scale(1.04) translate(0,0); } to { transform: scale(1.12) translate(-2%,-2%); } }
@keyframes drift { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-40px,30px) scale(1.15); } }
@keyframes floatP  { 0%{ transform:translate(0,0); opacity:.55; } 30%{ transform:translate(9px,-14px); opacity:.85; } 60%{ transform:translate(-7px,-24px); opacity:.6; } 100%{ transform:translate(0,0); opacity:.55; } }
@keyframes floatP2 { 0%{ transform:translate(0,0); opacity:.5; } 50%{ transform:translate(-13px,-20px); opacity:.8; } 100%{ transform:translate(0,0); opacity:.5; } }
@keyframes floatP3 { 0%{ transform:translate(0,0); opacity:.6; } 40%{ transform:translate(11px,-10px); opacity:.4; } 75%{ transform:translate(5px,-26px); opacity:.8; } 100%{ transform:translate(0,0); opacity:.6; } }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .pgrid { grid-template-columns: repeat(3,1fr); }
  .fam  { grid-template-columns: repeat(3,1fr); }
  .dhero-in { grid-template-columns: 1fr; gap: 36px; }
  .dist-form { max-width: 560px; }
}

@media (max-width: 980px) {
  nav.mainnav { display: none; }
  .hactions .btn-store { display: none; }
  .burger { display: inline-flex; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .cards3 { grid-template-columns: 1fr; }
  .band { padding: 40px 28px; }
  .section { padding: 64px 0; }
  .cine { height: auto; min-height: 560px; }
  .slide-inner { padding: 0 24px 80px; }
  .sdots { right: 24px; bottom: 24px; }
  .cur { grid-template-columns: 1fr; }
  .feat-card { height: 420px; }
  .mini-card { height: 280px; }
  .essay { grid-template-columns: 1fr; gap: 48px; }
  .essay .ph, .essay .imgwrap img { height: 380px; order: -1; }
  .fam { grid-template-columns: 1fr 1fr; }
  .fam .col { border-bottom: 1px solid rgba(255,255,255,.16); }
  .journal { grid-template-columns: 1fr; }
  .cur-head { flex-direction: column; align-items: flex-start; }
  .story { grid-template-columns: 1fr; gap: 40px; }
  .story .ph, .story .imgwrap img { height: 320px; order: -1; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .tl { border-bottom: 1px solid rgba(255,255,255,.16); }
  .values { grid-template-columns: 1fr; }
  .nums { gap: 28px; }
  .cwrap { grid-template-columns: 1fr; gap: 32px; }
  .feat-post { grid-template-columns: 1fr; }
  .feat-post .ph, .feat-post .feat-img { height: 280px; min-height: auto; }
  .feat-post .ct { padding: 32px; }
  .grid3 { grid-template-columns: 1fr; }
  .nl-band .inner { grid-template-columns: 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid rgba(255,255,255,.16); }
  .pgrid { grid-template-columns: repeat(2,1fr); }
  .cattop { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .top .r { display: none; }
  .ft-grid { grid-template-columns: 1fr; }
  .fam { grid-template-columns: 1fr; }
  .essay .nums { gap: 28px; }
  .nums { flex-direction: column; gap: 20px; }
  .timeline { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
  .pgrid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cine .glow { width: 380px; height: 380px; }
}

/* WordPress alignment helpers */
.alignleft  { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--ink-100); text-align: center; margin-top: 8px; }
