/* ─────────────────────────────────────────────
   UNIFLOW LANDING — style.css
   Stack: HTML / CSS estático (sin framework)
   Figma: KB8PFAdNaRB6tQ7BzLiaTX · node 0:65
───────────────────────────────────────────── */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Tokens ── */
:root {
  --bg:         #E8F4F7;
  --navy:       #0A1F2E;
  --teal:       #1FB5C9;
  --secondary:  #4D667A;
  --muted:      #8CA1B2;
  --border:     #CCDEE5;
  --white:      #FFFFFF;
  --navy-card:  #0F2E42;
  --teal-light: rgba(31,181,201,0.15);

  --ff-serif:  'Newsreader', Georgia, serif;
  --ff-sans:   'Plus Jakarta Sans', system-ui, sans-serif;

  --section-pad: 120px 100px;
  --content-max: 1240px;
}

/* ── Base ── */
body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

/* ── Shared typography helpers ── */
.section-headline { display: flex; flex-direction: column; }
.headline-light   { font-family: var(--ff-serif); font-weight: 400; color: var(--navy); font-size: 64px; line-height: 1.1; letter-spacing: -1.28px; }
.headline-medium  { font-family: var(--ff-serif); font-weight: 500; color: var(--navy); font-size: 64px; line-height: 1.1; letter-spacing: -1.28px; }
.headline-accent  { font-family: var(--ff-serif); font-weight: 500; color: var(--teal);  font-size: 64px; line-height: 1.1; letter-spacing: -1.28px; }
.headline-light.inv   { color: var(--bg); }
.headline-accent       { color: var(--teal); }
.inv .headline-medium  { color: var(--bg); }

.section-header { margin: 0 auto; }
.section-header.center { text-align: center; align-items: center; display: flex; flex-direction: column; gap: 20px; }
.section-sub { font-size: 16px; line-height: 1.6; color: var(--secondary); max-width: 780px; }

/* ── Shared buttons ── */
.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--navy); color: var(--bg);
  font-family: var(--ff-sans); font-weight: 500; font-size: 14px;
  padding: 16px 24px; border-radius: 25px;
  cursor: pointer; transition: opacity .15s;
}
.btn-primary:hover { opacity: .85; }

.btn-ghost {
  display: inline-flex; align-items: center;
  color: var(--navy); font-family: var(--ff-sans); font-weight: 500; font-size: 14px;
  padding: 16px;
}
.btn-ghost:hover { color: var(--teal); }


/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  width: min(1306px, calc(100% - 48px));
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 37px;
  height: 93px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid #F1F5F9;
  border-radius: 81px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.nav-logo {
  font-family: var(--ff-serif); font-weight: 600;
  font-size: 28px; letter-spacing: -1.4px;
  color: var(--navy);
}
.nav-links {
  display: flex; gap: 37px;
}
.nav-links a {
  font-size: 16px; color: var(--navy); font-weight: 400;
  transition: color .15s;
}
.nav-links a:hover { color: var(--teal); }
.btn-nav {
  background: var(--navy); color: #F2F8FA;
  font-size: 16px; font-weight: 400;
  padding: 11.5px 23px; border-radius: 9999px;
  transition: opacity .15s;
}
.btn-nav:hover { opacity: .85; }


/* ════════════════════════════════════════════
   01 — HERO
════════════════════════════════════════════ */
.hero {
  display: flex; flex-direction: column; align-items: center; gap: 60px;
  padding: 200px 100px 100px;
  background: var(--bg);
  overflow: hidden;
}
.hero-title {
  display: flex; flex-direction: column; align-items: center;
  font-size: 80px; line-height: 1.1; letter-spacing: -2.4px; text-align: center;
}
.hero-line-1 {
  font-family: var(--ff-serif); font-weight: 400; color: var(--navy);
}
.hero-line-2 {
  font-family: var(--ff-serif); font-weight: 500; color: var(--teal);
}
.hero-cta {
  display: flex; align-items: center; gap: 24px;
}
.hero-visual {
  width: 100%; max-width: 1200px;
}
.hero-dashboard {
  width: 100%; border-radius: 16px;
  box-shadow: 0 24px 80px rgba(10,31,46,.12);
}
.hero-claims {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 0;
}
.claim {
  flex: 1;
  display: flex; align-items: center; gap: 15px;
  background: var(--white); border-radius: 11px;
  padding: 15px 22px;
  font-family: var(--ff-sans); font-weight: 500; font-size: 13px;
  color: var(--navy); line-height: 1.5;
}
.claim-ico {
  display: flex; align-items: center; justify-content: center;
  width: 45px; height: 45px; flex-shrink: 0;
  background: var(--teal-light); border-radius: 30px;
  color: var(--teal); font-size: 20px;
}


/* ════════════════════════════════════════════
   02 — CÓMO FUNCIONA
════════════════════════════════════════════ */
.como-funciona {
  display: flex; flex-direction: column; align-items: center; gap: 80px;
  padding: var(--section-pad);
  background: var(--bg);
}
.stepper {
  display: flex; flex-direction: column; align-items: center;
  width: 536px;
}
.step {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.step-left  .step-body { grid-column: 1; text-align: right; }
.step-left  .step-num  { grid-column: 2; }
.step-right .step-num  { grid-column: 2; }
.step-right .step-body { grid-column: 3; text-align: left; }
.step-num {
  flex-shrink: 0;
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 100px;
  background: var(--white);
  font-family: var(--ff-sans); font-size: 18px; color: var(--navy);
}
.step-title {
  font-family: var(--ff-serif); font-weight: 500; font-size: 22px; color: var(--navy);
}
.step-desc  {
  font-size: 14px; color: var(--secondary); line-height: 1.5; margin-top: 2px;
}
.step-connector {
  width: 1px; height: 70px;
  background: var(--border);
  margin: 0 auto;
}
.orbital-wrap {
  display: flex; justify-content: center;
}
.orbital-img {
  width: 890px; max-width: 100%;
}


/* ════════════════════════════════════════════
   03 — BENTO
════════════════════════════════════════════ */
.bento {
  padding: var(--section-pad);
  background: var(--bg);
}
.bento-row {
  display: flex; align-items: flex-end; gap: 20px;
  max-width: var(--content-max); margin: 0 auto;
}
.bento-left {
  flex: 1; display: flex; flex-direction: column; gap: 32px;
}
.bento-headline {
  font-family: var(--ff-serif); font-weight: 400;
  font-size: 64px; line-height: 1.1; letter-spacing: -1.28px; color: var(--navy);
  white-space: nowrap;
}
.bento-card {
  border-radius: 24px; padding: 32px;
  display: flex; flex-direction: column; gap: 60px;
}
.bento-portal  { background: var(--white); }
.bento-whatsapp { background: var(--navy); width: 613px; flex-shrink: 0; }

.bento-tag {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 12px; border-radius: 40px; align-self: flex-start;
  font-size: 11px; font-weight: 500; letter-spacing: .3px;
}
.tag-dark { background: var(--navy); color: var(--white); }
.tag-teal { background: var(--teal); color: var(--navy); }

.bento-copy { display: flex; flex-direction: column; gap: 16px; }
.bento-card-title { display: flex; flex-direction: column; }
.card-line-light  { font-family: var(--ff-serif); font-weight: 400; color: var(--navy); font-size: 36px; line-height: 1.15; letter-spacing: -.36px; }
.card-line-accent { font-family: var(--ff-serif); font-weight: 500; color: var(--teal); font-size: 36px; line-height: 1.15; letter-spacing: -.36px; }
.card-line-light-inv { font-family: var(--ff-serif); font-weight: 400; color: var(--bg); font-size: 36px; line-height: 1.15; letter-spacing: -.36px; }
.bento-card-sub { font-size: 15px; line-height: 1.6; color: var(--secondary); }
.bento-card-sub.muted { color: var(--muted); }

.portal-images { display: flex; flex-direction: column; gap: 10px; }
.portal-card-full { width: 100%; border-radius: 8px; }
.portal-kpis { display: flex; gap: 10px; }
.portal-kpis img { flex: 1; border-radius: 8px; }

.whatsapp-img-wrap { display: flex; justify-content: center; }
.whatsapp-img { width: 390px; max-width: 100%; border-radius: 16px; }


/* ════════════════════════════════════════════
   04 — TIENDAS ESPEJO
════════════════════════════════════════════ */
.tiendas {
  background: var(--navy);
  padding: var(--section-pad);
  display: flex; flex-direction: column; gap: 48px;
}
.tiendas-header {
  max-width: var(--content-max); margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; gap: 16px;
}
.tiendas .section-sub { color: var(--muted); }

.clusters-card {
  max-width: var(--content-max); margin: 0 auto; width: 100%;
  background: var(--navy-card); border-radius: 32px;
  padding: 32px 40px;
  display: flex; flex-direction: column; gap: 24px;
}
.clusters-header { display: flex; flex-direction: column; gap: 4px; }
.clusters-label {
  font-size: 11px; font-weight: 500; color: var(--teal);
  letter-spacing: 1.54px; text-transform: uppercase;
}
.clusters-sub { font-size: 13px; color: var(--muted); }

.clusters-img-wrap {
  width: 100%;
}
.clusters-img {
  width: 100%; border-radius: 16px;
}


/* ════════════════════════════════════════════
   05 — SIN TI
════════════════════════════════════════════ */
.sin-ti {
  padding: var(--section-pad);
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; gap: 80px;
}
.sin-ti .section-header { max-width: 654px; }
.sin-ti .section-headline { align-items: center; }
.sin-ti .headline-light, .sin-ti .headline-accent { font-size: 72px; letter-spacing: -2.16px; }

.ti-cards {
  display: flex; align-items: center; gap: 0;
}
.ti-card {
  width: 250px; border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; gap: 24px;
}
.ti-active { background: var(--navy); color: var(--white); }
.ti-next   { background: var(--teal); color: var(--white); }

.ti-status { display: flex; align-items: center; gap: 8px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; flex-shrink: 0; }
.status-label { font-size: 10px; font-weight: 500; letter-spacing: 1px; }
.ti-badge { font-size: 10px; font-weight: 500; letter-spacing: 1px; }

.ti-title { font-family: var(--ff-serif); font-weight: 500; font-size: 28px; }
.ti-desc  { font-size: 12px; line-height: 1.5; opacity: .85; margin-top: 8px; width: 200px; }

.ti-arrow {
  font-size: 24px; color: var(--secondary);
  padding: 0 20px; flex-shrink: 0;
}

.integrations { display: flex; flex-direction: column; align-items: center; gap: 40px; width: 100%; }
.integrations-label { font-size: 10px; font-weight: 500; letter-spacing: 1.2px; color: var(--muted); }

.logos-marquee {
  width: 100%; overflow: hidden; position: relative;
}
.logos-marquee::before,
.logos-marquee::after {
  content: ''; position: absolute; top: 0; height: 100%; width: 120px; z-index: 1;
  pointer-events: none;
}
.logos-marquee::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.logos-marquee::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.logos-track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
.logos-set {
  display: flex; align-items: center; gap: 64px;
  padding-right: 64px; /* trailing spacer = gap → seam perfecto en loop */
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

.logo-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-box {
  width: 60px; height: 60px; border-radius: 34px; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.logo-box img { width: 40px; height: 40px; object-fit: contain; }
.logo-item span { font-size: 12px; color: var(--secondary); }


/* ════════════════════════════════════════════
   06 — RETAIL FEATURES
════════════════════════════════════════════ */
.retail {
  background: var(--teal);
  padding: var(--section-pad);
  display: flex; flex-direction: column; align-items: center; gap: 48px;
}
.retail-headline {
  font-family: var(--ff-serif); font-weight: 500; font-size: 56px;
  line-height: 1.1; letter-spacing: -1.12px;
  color: var(--white); text-align: center;
  max-width: 1000px;
}
.feats-row {
  display: flex; gap: 40px; align-items: flex-start; max-width: var(--content-max);
}
.feat {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 20px; text-align: center;
}
.feat-ico {
  background: rgba(255,255,255,.15); border-radius: 26px;
  padding: 12px 16px; font-size: 24px; color: var(--white);
}
.feat-title { font-family: var(--ff-serif); font-weight: 500; font-size: 22px; color: var(--white); }
.feat-desc  { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.9); }


/* ════════════════════════════════════════════
   07 — NÚMEROS + CTA
════════════════════════════════════════════ */
.numeros {
  background: var(--white);
  padding: var(--section-pad);
  display: flex; flex-direction: column; align-items: center; gap: 120px;
}
.stats-block {
  display: flex; flex-direction: column; align-items: center; gap: 48px;
  width: 100%; max-width: var(--content-max);
}
.stats-headline {
  font-family: var(--ff-serif); font-weight: 500; font-size: 56px;
  letter-spacing: -1.12px; color: var(--navy); text-align: center;
}
.stats-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  width: 100%; text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.stat-num {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: 72px; line-height: 1; letter-spacing: -1.44px; color: var(--teal);
}
.stat-label { font-size: 14px; color: var(--secondary); max-width: 210px; line-height: 1.4; }

.cta-block {
  width: 100%; max-width: 1280px;
  border-radius: 32px; overflow: hidden;
  background: url('assets/cta-bg.png') center/cover no-repeat;
  padding: 60px;
}
.cta-content {
  max-width: 700px;
  display: flex; flex-direction: column; gap: 60px; align-items: flex-start;
}
.cta-headline {
  display: flex; flex-direction: column;
  font-size: 56px; line-height: 1.1; letter-spacing: -1.12px;
}
.cta-headline .headline-light { color: var(--navy); font-size: 56px; letter-spacing: -1.12px; }
.cta-headline .headline-accent { font-size: 56px; letter-spacing: -1.12px; }
.cta-sub { font-size: 15px; color: var(--navy); line-height: 1.6; max-width: 480px; margin-top: -40px; }


/* ════════════════════════════════════════════
   09 — FAQ
════════════════════════════════════════════ */
.faq {
  background: var(--bg);
  padding: var(--section-pad);
  display: flex; flex-direction: column; align-items: center; gap: 60px;
}
.faq .section-header { max-width: 1280px; width: 100%; }
.faq .headline-light,
.faq .headline-medium { font-size: 56px; letter-spacing: -1.12px; }

.faq-grid {
  display: flex; flex-direction: column; gap: 12px;
  max-width: var(--content-max); width: 100%;
}
details.faq-card {
  background: var(--white); border-radius: 40px;
  padding: 0;
  overflow: hidden;
}
details.faq-card summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  font-size: 14px; font-weight: 500; color: var(--navy);
  cursor: pointer; list-style: none;
  gap: 16px;
}
details.faq-card summary::-webkit-details-marker { display: none; }
details.faq-card summary::after {
  content: '↓'; font-size: 16px; color: var(--secondary);
  flex-shrink: 0; transition: transform .2s;
}
details.faq-card[open] summary::after { transform: rotate(180deg); }
details.faq-card > p {
  padding: 0 24px 22px;
  font-size: 14px; line-height: 1.7; color: var(--secondary);
}


/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--teal);
  padding: 80px 100px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  max-width: 1280px; margin: 0 auto;
}
.footer-brand {
  display: flex; flex-direction: column; gap: 12px; max-width: 400px;
}
.footer-logo {
  font-family: var(--ff-serif); font-weight: 600;
  font-size: 60px; letter-spacing: -1.4px; color: var(--white);
  line-height: 1;
}
.footer-tagline { display: flex; flex-direction: column; gap: 4px; color: var(--white); }
.footer-tagline p { font-size: 13px; }
.footer-tagline a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-copy { font-size: 11px; color: var(--white); margin-top: 28px; }

.footer-links { display: flex; gap: 60px; }
.footer-col {
  display: flex; flex-direction: column; gap: 12px;
  width: 140px;
}
.footer-col-title {
  font-size: 10px; font-weight: 800; letter-spacing: .5px; color: var(--white);
  margin-bottom: 2px;
}
.footer-col a { font-size: 12px; color: var(--white); transition: opacity .15s; white-space: nowrap; }
.footer-col a:hover { opacity: .7; }

/* ── Video Modal ── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,31,46,.85);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-box {
  position: relative;
  width: min(900px, 92vw);
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.modal-close {
  position: absolute; top: 12px; right: 14px; z-index: 1;
  background: none; border: none;
  color: var(--white); font-size: 28px; line-height: 1;
  cursor: pointer; opacity: .7;
  transition: opacity .15s;
}
.modal-close:hover { opacity: 1; }
.modal-video {
  position: relative; width: 100%; padding-top: 56.25%;
}
.modal-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* btn-primary as button element */
button.btn-primary {
  cursor: pointer;
  border: none;
  font-family: var(--ff-sans);
}


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

/* ── Tablet ≤ 1024px ── */
@media (max-width: 1024px) {
  :root { --section-pad: 80px 48px; }

  .headline-light, .headline-medium, .headline-accent { font-size: 52px; letter-spacing: -1.04px; }
  .bento-headline { font-size: 48px; }
  .stats-headline, .retail-headline { font-size: 44px; letter-spacing: -.88px; }
  .cta-headline .headline-light,
  .cta-headline .headline-accent { font-size: 44px; letter-spacing: -.88px; }
  .faq .headline-light, .faq .headline-medium { font-size: 44px; letter-spacing: -.88px; }
  .sin-ti .headline-light, .sin-ti .headline-accent { font-size: 56px; }
  .stat-num { font-size: 56px; }

  .hero { padding: 160px 48px 80px; }
  .hero-title { font-size: 64px; letter-spacing: -2px; }
  .hero-claims { flex-wrap: wrap; }
  .claim { flex: 1 1 calc(50% - 6px); }

  .bento-row { flex-direction: column; align-items: stretch; }
  .bento-whatsapp { width: 100%; }


  .feats-row { gap: 24px; }

  .footer { padding: 60px 48px; }
  .footer-logo { font-size: 44px; }
}

/* ── Mobile ≤ 768px ── */
@media (max-width: 768px) {
  :root { --section-pad: 64px 24px; }

  /* Typography */
  .headline-light, .headline-medium, .headline-accent { font-size: 38px; letter-spacing: -.76px; }
  .bento-headline { font-size: 32px; }
  .stats-headline, .retail-headline { font-size: 34px; letter-spacing: -.68px; }
  .cta-headline .headline-light,
  .cta-headline .headline-accent { font-size: 34px; letter-spacing: -.68px; }
  .faq .headline-light, .faq .headline-medium { font-size: 34px; letter-spacing: -.68px; }
  .sin-ti .headline-light, .sin-ti .headline-accent { font-size: 42px; letter-spacing: -1.26px; }
  .stat-num { font-size: 52px; }
  .section-sub { font-size: 15px; }

  /* Nav */
  .navbar { top: 16px; width: calc(100% - 32px); }
  .nav-inner { height: 64px; padding: 0 20px; }
  .nav-links { display: none; }
  .nav-logo { font-size: 22px; }
  .btn-nav { font-size: 13px; padding: 9px 18px; }

  /* Hero */
  .hero { padding: 120px 24px 60px; gap: 36px; }
  .hero-title { font-size: 42px; letter-spacing: -1.4px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-primary, button.btn-primary { justify-content: center; }
  .hero-claims { flex-direction: column; gap: 8px; }
  .claim { flex: 1 1 100%; }

  /* Cómo funciona */
  .como-funciona { gap: 48px; }
  .stepper { width: 100%; max-width: 380px; }
  .step { grid-template-columns: 1fr 60px 1fr; gap: 10px; }

  /* Bento */
  .bento-row { gap: 16px; }
  .bento-card { gap: 28px; }
  .card-line-light, .card-line-accent, .card-line-light-inv { font-size: 28px; }

  /* Clusters */
  .tiendas { padding: 64px 20px; }
  .clusters-card { padding: 24px 16px; }

  /* Sin TI */
  .ti-cards { flex-direction: column; align-items: center; gap: 0; }
  .ti-card { width: 100%; max-width: 300px; }
  .ti-desc { width: auto; }
  .ti-arrow { transform: rotate(90deg); padding: 8px 0; }
  .logos-marquee::before, .logos-marquee::after { width: 60px; }

  /* Retail */
  .retail { padding: 64px 24px; }
  .feats-row { flex-direction: column; align-items: center; gap: 32px; }
  .feat { max-width: 360px; }

  /* Números */
  .numeros { gap: 56px; }
  .stats-row { flex-direction: column; align-items: center; gap: 40px; }
  .cta-block { padding: 36px 24px; border-radius: 24px; }
  .cta-content { gap: 28px; max-width: 100%; }
  .cta-sub { margin-top: -8px; }

  /* FAQ */
  .faq { gap: 40px; }
  .faq-grid { gap: 8px; }

  /* Footer */
  .footer { padding: 48px 24px; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-logo { font-size: 40px; }
  .footer-links { gap: 24px; flex-wrap: wrap; }
  .footer-col { width: auto; min-width: 120px; }
}

/* ── Mobile pequeño ≤ 480px ── */
@media (max-width: 480px) {
  .headline-light, .headline-medium, .headline-accent { font-size: 32px; }
  .hero-title { font-size: 34px; letter-spacing: -1.2px; }
  .sin-ti .headline-light, .sin-ti .headline-accent { font-size: 34px; }
  .stat-num { font-size: 44px; }
  .bento-headline { font-size: 28px; }

}
