:root {
  --red: #ff003d;
  --red-2: #f40038;
  --red-dark: #c90031;
  --black: #07080b;
  --black-2: #101116;
  --black-3: #17181d;
  --ink: #14151a;
  --muted: #6f707a;
  --line: #e7e8ed;
  --soft: #f7f7f9;
  --green: #0caf52;
  --shadow: 0 18px 45px rgba(21, 10, 14, .12);
  --shadow-strong: 0 34px 80px rgba(0, 0, 0, .42);
  --radius: 20px;
  --font-ui: "Inter", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --action-button-font-size: 17px;
  --action-button-height: 58px;
  --action-button-text-color: #ffffff;
  --action-primary-color: #ff003d;
  --action-primary-color-end: #ff004a;
  --action-whatsapp-color: #099c47;
  --action-whatsapp-color-end: #10b657;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img, video { max-width: 100%; display: block; }
svg { display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hidden { display: none !important; }

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  height: 92px;
  color: #fff;
}
.navbar {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 132px; height: 72px; object-fit: contain; object-position: left center; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 13px;
  font-weight: 720;
}
.nav-links a {
  position: relative;
  padding: 10px 0;
  color: rgba(255,255,255,.8);
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
}
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 8px;
  border-radius: 12px;
  background: transparent;
}
.mobile-toggle span {
  display: block;
  width: 27px;
  height: 3px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 690px;
  padding: 118px 0 82px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7,8,11,.05), rgba(7,8,11,.35)),
    #08090d;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255,0,61,.035));
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}
.hero-orb-left {
  width: 570px;
  height: 570px;
  left: -265px;
  bottom: -305px;
  background: radial-gradient(circle, rgba(255,0,61,.42), rgba(115,0,29,.13) 48%, transparent 72%);
}
.hero-orb-right {
  width: 560px;
  height: 560px;
  right: -220px;
  top: -210px;
  opacity: .62;
  background: radial-gradient(circle, rgba(255,0,61,.28), rgba(115,0,29,.09) 48%, transparent 72%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .7fr 1.45fr;
  gap: 55px;
  align-items: center;
}
.hero-copy { padding-top: 18px; }
.eyebrow {
  display: none;
  margin: 0 0 14px;
  color: rgba(255,255,255,.54);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-copy h1 {
  margin: 0;
  max-width: 390px;
  font-size: clamp(47px, 4.5vw, 66px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero-copy h1 span {
  display: block;
  margin-top: 8px;
  color: var(--red);
}
.hero-copy > p:last-child {
  max-width: 345px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.73);
  font-size: 17px;
  line-height: 1.55;
}
.accent-line {
  width: 225px;
  height: 15px;
  margin-top: 12px;
  border-top: 3px solid var(--red);
  border-radius: 50%;
  transform: rotate(-2deg);
}

/* Main action card */
.action-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background: linear-gradient(180deg, #21080f 0%, #0b0c10 72%);
  box-shadow: var(--shadow-strong);
}
.action-media {
  position: relative;
  aspect-ratio: 16 / 7.35;
  overflow: hidden;
  background: #17070b;
}
.action-media img,
.action-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.media-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,8,11,.08), transparent 42%, rgba(7,8,11,.04)),
    linear-gradient(180deg, transparent 35%, rgba(8,9,12,.35) 63%, rgba(8,9,12,.98) 100%);
}
.badge {
  position: absolute;
  top: 19px;
  left: 19px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(255,0,61,.22);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.badge span { font-size: 13px; }
.action-content {
  position: relative;
  z-index: 3;
  margin-top: -108px;
  padding: 22px 22px 18px;
}
.action-content h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.action-content .subtitle {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}

.date-row {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.8);
  font-size: 14px;
}

.date-row svg,
.btn svg,
.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.date-row svg { color: var(--red); flex: 0 0 20px; }
.date-row strong { color: var(--red); font-weight: 850; }
.countdown {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 9px;
  align-items: center;
  padding: 12px 0 13px;
}

.count-box {
  min-width: 0;
  padding: 11px 6px 10px;
  border: 1px solid rgba(255,255,255,.035);
  border-radius: 10px;
  text-align: center;
  background: linear-gradient(180deg, #29292c, #1b1b1e);
  box-shadow: inset 0 1px rgba(255,255,255,.03);
}

.count-box strong {
  display: block;
  color: #fff;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -.04em;
}

.count-box span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.65);
  font-size: 9px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.count-separator {
  color: rgba(255,255,255,.42);
  font-size: 24px;
  font-weight: 800;
}

.count-reached {
  grid-column: 1 / -1;
  padding: 16px;
  border-radius: 11px;
  text-align: center;
  background: rgba(255,255,255,.07);
}
.count-reached strong { display: block; color: #fff; }
.count-reached span { display: block; margin-top: 4px; color: rgba(255,255,255,.62); font-size: 12px; }
.action-buttons { display: grid; gap: 9px; }
.btn {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 820;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.hero .action-buttons .btn,
.action-card .action-buttons .btn,
.detail-action-buttons .btn {
  min-height: var(--action-button-height);
  padding: 14px 24px;
  border-radius: 12px;
  gap: 12px;
  font-size: var(--action-button-font-size);
  font-weight: 780;
}
.hero .action-buttons .btn svg,
.action-card .action-buttons .btn svg,
.detail-action-buttons .btn svg {
  width: 20px;
  height: 20px;
}
.action-buttons .btn-primary,
.detail-action-buttons .btn-primary {
  color: var(--action-button-text-color);
  background: linear-gradient(90deg, var(--action-primary-color), var(--action-primary-color-end));
}
.action-buttons .btn-whatsapp,
.detail-action-buttons .btn-whatsapp {
  color: var(--action-button-text-color);
  background: linear-gradient(90deg, var(--action-whatsapp-color), var(--action-whatsapp-color-end));
}
.action-buttons .btn-dark,
.action-buttons .btn-secondary,
.detail-action-buttons .btn-dark,
.detail-action-buttons .btn-secondary {
  color: var(--action-button-text-color);
}
.btn-primary {
  width: 100%;
  color: #fff;
  background: linear-gradient(90deg, var(--red), #ff004a);
  box-shadow: 0 12px 26px rgba(255,0,61,.18);
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-outline {
  min-height: 46px;
  color: var(--red);
  background: #fff;
  border: 1px solid var(--red);
}
.btn-dark { color: #fff; background: var(--ink); }
.btn-whatsapp {
  width: 100%;
  min-height: 45px;
  color: #fff;
  background: linear-gradient(90deg, #099c47, #10b657);
  box-shadow: 0 12px 25px rgba(16,174,81,.14);
}
.btn-whatsapp svg { width: 21px; height: 21px; }
.empty-action { padding: 74px 30px; text-align: center; }
.empty-action h2 { margin: 0; color: #fff; }
.empty-action p { margin: 10px auto 0; max-width: 430px; color: rgba(255,255,255,.65); }

/* Trust */
.trust-wrap {
  position: relative;
  z-index: 8;
  margin-top: -49px;
}
.trust-bar {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(20,21,26,.06);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow);
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-width: 0;
  padding: 20px 34px;
}
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.icon-disc {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 23px rgba(255,0,61,.18);
}
.icon-disc svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-item strong { display: block; font-size: 17px; line-height: 1.1; }
.trust-item span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }

/* Deliveries */
.section { padding: 58px 0 60px; }
.deliveries-section { background: #fff; }
.section-soft { background: #fafafa; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 21px;
}
.section-kicker {
  display: none;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.section-head h2 { margin: 0; font-size: 27px; letter-spacing: -.035em; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--red);
  font-size: 14px;
  font-weight: 850;
}
.text-link svg { width: 18px; height: 18px; }
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.delivery-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 11px 25px rgba(20,20,30,.065);
  transition: transform .22s ease, box-shadow .22s ease;
}
.delivery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(20,20,30,.1);
}
.delivery-media {
  position: relative;
  aspect-ratio: 16 / 8.7;
  overflow: hidden;
  background: #ececf0;
}
.delivery-media img,
.delivery-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.status-tag {
  position: absolute;
  top: 13px;
  left: 13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: 6px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  font-size: 10px;
  font-weight: 850;
}
.status-tag svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.delivery-content { padding: 15px 16px 16px; }
.delivery-content h3 { margin: 0 0 9px; font-size: 16px; letter-spacing: -.02em; }
.meta-list { display: grid; gap: 7px; color: #474850; font-size: 12px; }
.meta-list span { min-width: 0; display: flex; align-items: center; gap: 7px; line-height: 1.2; }
.meta-list svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: #686974;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.meta-list .item-line { color: #26272d; font-weight: 680; }
.meta-list .item-line svg { stroke: var(--red); }
.empty-deliveries { grid-column: 1/-1; padding: 40px; border: 1px dashed var(--line); border-radius: 14px; text-align: center; color: var(--muted); }





/* Footer */
.site-footer {
  padding: 45px 0 19px;
  color: rgba(255,255,255,.68);
  background: linear-gradient(180deg, #111217, #0d0e12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 42px;
}
.footer-brand img { width: 130px; height: 70px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 280px; margin: 13px 0; font-size: 13px; line-height: 1.55; }
.social-row { display: flex; gap: 9px; }
.social-row a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}
.footer-col h4 { margin: 7px 0 14px; color: #fff; font-size: 13px; }
.footer-col a,
.footer-col span { display: block; margin: 8px 0; font-size: 12px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 31px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  text-align: center;
  font-size: 11px;
}

/* Secondary pages */
.page-hero {
  padding: 145px 0 70px;
  color: #fff;
  background: radial-gradient(circle at 20% 80%, rgba(255,0,61,.22), transparent 30%), #090a0e;
}
.page-hero h1 { margin: 0; font-size: 50px; }
.page-hero p { max-width: 650px; color: rgba(255,255,255,.7); }
.detail-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 34px; }
.detail-panel { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.detail-media { border-radius: 18px; overflow: hidden; background: #111; }
.detail-media img, .detail-media video { width: 100%; min-height: 420px; object-fit: cover; }

/* Admin */
.admin-body { min-height: 100vh; background: #f4f5f8; }
.admin-login { min-height: 100vh; display: grid; place-items: center; padding: 20px; background: radial-gradient(circle at 30% 80%, rgba(255,0,61,.22), transparent 34%), #090a0e; }
.login-card { width: min(420px, 100%); padding: 32px; border-radius: 24px; background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.login-card img { width: 160px; margin: 0 auto 20px; background: var(--red); border-radius: 14px; }
.login-card h1 { margin: 0 0 8px; text-align: center; }
.login-card p { margin: 0 0 24px; text-align: center; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 750; color: #363740; }
input, textarea, select { width: 100%; border: 1px solid #dfe0e6; border-radius: 11px; padding: 12px 13px; outline: none; background: #fff; }
input:focus, textarea:focus, select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,0,61,.08); }
textarea { min-height: 110px; resize: vertical; }
.checkbox-row { display: flex; flex-wrap: wrap; gap: 18px; }
.checkbox-row label { display: flex; align-items: center; gap: 8px; }
.checkbox-row input { width: auto; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 250px 1fr; }
.admin-sidebar { position: sticky; top: 0; height: 100vh; padding: 26px 18px; color: #fff; background: #101116; }
.admin-sidebar img { width: 150px; margin: 0 auto 30px; }
.admin-nav { display: grid; gap: 8px; }
.admin-nav button { width: 100%; border: 0; border-radius: 10px; padding: 13px 14px; text-align: left; background: transparent; color: rgba(255,255,255,.7); font-weight: 750; }
.admin-nav button.active, .admin-nav button:hover { background: rgba(255,0,61,.14); color: #fff; }
.admin-main { padding: 34px; }
.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.admin-top h1 { margin: 0; }
.dashboard-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dashboard-card { padding: 22px; border-radius: 16px; background: #fff; box-shadow: 0 10px 28px rgba(30,30,45,.06); }
.dashboard-card strong { display: block; font-size: 30px; margin-top: 8px; }
.panel { margin-top: 20px; padding: 24px; border-radius: 18px; background: #fff; box-shadow: 0 10px 28px rgba(30,30,45,.05); }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.panel h2 { margin: 0; }
.admin-list { display: grid; gap: 12px; }
.admin-item { display: grid; grid-template-columns: 74px 1fr auto; gap: 16px; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 13px; }
.admin-item img, .admin-item video { width: 74px; height: 58px; border-radius: 9px; object-fit: cover; background: #eee; }
.admin-item h3 { margin: 0 0 4px; font-size: 15px; }
.admin-item p { margin: 0; color: var(--muted); font-size: 12px; }
.item-actions { display: flex; gap: 8px; }
.small-btn { border: 1px solid var(--line); border-radius: 9px; padding: 9px 11px; background: #fff; font-weight: 750; }
.small-btn.danger { color: #c81d3d; }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 100; padding: 14px 18px; border-radius: 12px; color: #fff; background: #17181d; box-shadow: 0 16px 44px rgba(0,0,0,.22); }

@media (max-width: 960px) {
  .site-header { position: absolute; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    background: rgba(16,17,22,.98);
    box-shadow: 0 22px 48px rgba(0,0,0,.4);
  }
  .nav-links.open { display: grid; gap: 2px; }
  .nav-links a { padding: 12px 10px; }
  .nav-links a.active::after { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding-top: 116px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 31px; }
  .hero-copy { text-align: center; padding-top: 0; }
  .hero-copy h1, .hero-copy > p:last-child { margin-inline: auto; }
  .accent-line { margin-inline: auto; }
  .action-card { width: min(760px, 100%); margin-inline: auto; }
  .delivery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; height: auto; }
  .admin-nav { grid-template-columns: repeat(4, 1fr); }
  .admin-nav button { text-align: center; }
  .dashboard-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 26px, 1120px); }
  .site-header {
    height: 86px;
    background: linear-gradient(135deg, #ff003d, #ef0038 72%, #d60033);
  }
  .navbar { height: 86px; }
  .brand img { width: 128px; height: 67px; }
  .mobile-toggle { background: rgba(255,255,255,.06); }
  .nav-links { top: 76px; }
  .hero {
    padding: 124px 0 57px;
    background: #08090d;
  }
  .hero-orb-left { width: 380px; height: 380px; left: -240px; bottom: -190px; }
  .hero-orb-right { display: none; }
  .hero-grid { gap: 26px; }
  .eyebrow { display: none; }
  .hero-copy h1 { max-width: 330px; font-size: 43px; }
  .hero-copy h1 span { margin-top: 4px; }
  .hero-copy > p:last-child { display: none; }
  .accent-line { width: 155px; height: 12px; margin-top: 8px; }
  .action-card { border-radius: 17px; }
  .action-media { aspect-ratio: 16 / 9.5; }
  .action-media img, .action-media video { object-position: center 22%; }
  .badge { top: 14px; left: 14px; padding: 8px 11px; font-size: 10px; }
  .action-content { margin-top: -48px; padding: 16px 15px 15px; }
  .action-content h2 { font-size: 24px; }
  .action-content .subtitle { font-size: 13px; }
  .date-row { min-height: 40px; padding: 9px 0 10px; font-size: 13px; }
  .countdown { gap: 5px; padding: 11px 0 12px; }
  .count-box { padding: 10px 2px 9px; }
  .count-box strong { font-size: 21px; }
  .count-box span { font-size: 8px; }
  .count-separator { font-size: 18px; }
  .btn { min-height: 47px; font-size: 14px; }
  .btn-whatsapp { min-height: 44px; }
  .trust-wrap { margin-top: -25px; }
  .trust-bar { min-height: 82px; grid-template-columns: 1fr 1fr; border-radius: 15px; }
  .trust-item { gap: 10px; padding: 14px 11px; }
  .trust-item + .trust-item { border-left: 1px solid var(--line); border-top: 0; }
  .icon-disc { width: 41px; height: 41px; flex-basis: 41px; }
  .icon-disc svg { width: 20px; height: 20px; }
  .trust-item strong { font-size: 13px; }
  .trust-item span { margin-top: 3px; font-size: 10px; line-height: 1.2; }
  .section { padding: 42px 0 45px; }
  .section-head { margin-bottom: 17px; }
  .section-head h2 { font-size: 23px; }
  .section-kicker { display: none; }
  .text-link { font-size: 13px; }
  .delivery-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(245px, 78vw);
    gap: 13px;
    overflow-x: auto;
    padding: 2px 1px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .delivery-grid::-webkit-scrollbar { display: none; }
  .delivery-card { scroll-snap-align: start; }
  .delivery-content { padding: 14px; }
  
  
  
  
  
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer { padding-bottom: 28px; }
  .footer-col { display: none; }
  .footer-brand { text-align: center; }
  .footer-brand img { margin-inline: auto; object-position: center; }
  .footer-brand p { margin-inline: auto; }
  .social-row { justify-content: center; }
  .page-hero h1 { font-size: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .dashboard-cards { grid-template-columns: 1fr; }
  .admin-main { padding: 20px 14px; }
  .admin-top { align-items: flex-start; }
  .admin-nav { grid-template-columns: 1fr 1fr; }
  .admin-item { grid-template-columns: 58px 1fr; }
  .admin-item img, .admin-item video { width: 58px; height: 54px; }
  .item-actions { grid-column: 1 / -1; }
}

/* Dynamic buttons and editable links */
.btn-secondary {
  width: 100%;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
}
.action-buttons .btn-outline {
  width: 100%;
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.34);
}
.action-buttons .btn-dark { width: 100%; }
.action-buttons .btn svg,
.detail-action-buttons .btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.detail-action-buttons {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.detail-action-buttons .btn { width: 100%; }
.delivery-card-anchor {
  display: block;
  color: inherit;
  text-decoration: none;
  scroll-snap-align: start;
}
.delivery-card-anchor .delivery-card { height: 100%; }
.delivery-card.has-link { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.delivery-card-anchor:hover .delivery-card {
  transform: translateY(-3px);
  border-color: rgba(255,0,61,.22);
  box-shadow: 0 18px 38px rgba(24,24,29,.12);
}
.delivery-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 13px;
  color: var(--red);
  font-size: 12px;
  font-weight: 820;
}
.delivery-card-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dashboard button manager */
.panel-subtitle { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.action-buttons-admin {
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.field-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.field-heading > div { display: grid; gap: 5px; }
.field-heading label { font-size: 16px; }
.field-heading small { max-width: 700px; color: var(--muted); line-height: 1.45; }
.token-help {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid #f1d7df;
  border-radius: 10px;
  color: #6f394a;
  background: #fff7f9;
  font-size: 12px;
}
.token-help code {
  padding: 2px 5px;
  border-radius: 5px;
  color: #b00032;
  background: #ffe9ef;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.button-editor-list { display: grid; gap: 12px; margin-top: 14px; }
.button-editor-empty {
  padding: 18px;
  border: 1px dashed #d7d8df;
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
  background: #fafafd;
}
.button-editor-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfbfd;
}
.button-editor-number {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 850;
}
.button-editor-fields {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1.7fr .9fr .8fr 1fr;
  gap: 10px;
  align-items: end;
}
.button-editor-fields .form-group { min-width: 0; }
.button-editor-fields input,
.button-editor-fields select { padding: 10px 11px; font-size: 12px; }
.button-editor-fields label { font-size: 11px; }
.button-editor-checks {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 2px;
}
.button-editor-checks label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}
.button-editor-checks input { width: auto; }
.button-editor-actions { display: grid; gap: 6px; }
.icon-admin-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #4b4d57;
  background: #fff;
  font-size: 16px;
  font-weight: 800;
}
.icon-admin-btn:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.icon-admin-btn:disabled { cursor: not-allowed; opacity: .35; }
.icon-admin-btn.danger { color: #c81d3d; }

@media (max-width: 1180px) {
  .button-editor-fields { grid-template-columns: 1fr 1.5fr 1fr; }
}

@media (max-width: 720px) {
  .field-heading { display: grid; }
  .field-heading .small-btn { width: 100%; }
  .button-editor-row { grid-template-columns: 30px 1fr; }
  .button-editor-fields { grid-template-columns: 1fr; }
  .button-editor-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }
  .icon-admin-btn { width: 100%; }
}

/* Dashboard editability and save feedback */
.admin-health {
  margin: -10px 0 22px;
  padding: 11px 14px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 700;
}
.admin-health.success { color: #146c43; border-color: #b8e2ca; background: #ecf8f1; }
.admin-health.error { color: #9c1c32; border-color: #efc1cb; background: #fff0f3; }
.field-heading-actions { display: flex !important; grid-auto-flow: column; align-items: center; gap: 8px; }
.form-message {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}
.form-message.info { color: #28517d; border-color: #c9dcef; background: #f2f8ff; }
.form-message.warning { color: #7a5315; border-color: #ecd9ad; background: #fff9e9; }
.form-message.success { color: #146c43; border-color: #b8e2ca; background: #ecf8f1; }
.form-message.error { color: #9c1c32; border-color: #efc1cb; background: #fff0f3; }
.button-editor-row,
.button-editor-fields,
.button-editor-fields .form-group,
.button-editor-fields input,
.button-editor-fields select,
.button-editor-checks,
.button-editor-checks label { position: relative; z-index: 1; pointer-events: auto; }
.button-editor-fields input:not(:disabled),
.button-editor-fields select:not(:disabled) { cursor: text; background: #fff; }
.button-editor-fields select:not(:disabled) { cursor: pointer; }
.small-btn:disabled { cursor: not-allowed; opacity: .55; }

@media (max-width: 720px) {
  .field-heading-actions { display: grid !important; grid-auto-flow: row; width: 100%; }
}

/* v2.5 — refinamento visual institucional com Sora */
:root {
  --content-max: 1380px;
}

body {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -.006em;
}

.container { width: min(var(--content-max), calc(100% - 56px)); }
.nav-links { font-size: 14px; font-weight: 650; letter-spacing: -.01em; }
.hero-grid { grid-template-columns: .72fr 1.55fr; gap: 72px; }
.hero-copy h1 {
  max-width: 460px;
  font-size: clamp(50px, 4.25vw, 68px);
  font-weight: 760;
  line-height: 1.01;
  letter-spacing: -.035em;
}
.hero-copy > p:last-child { font-size: 18px; line-height: 1.55; font-weight: 400; }
.action-card { border-radius: 22px; }
.action-content h2 { font-size: 32px; font-weight: 700; line-height: 1.12; letter-spacing: -.025em; }
.action-content .subtitle { font-size: 15px; line-height: 1.45; font-weight: 400; }
.date-row { font-size: 15px; font-weight: 430; }
.date-row strong { font-weight: 720; }
.count-box strong { font-size: 28px; font-weight: 760; }
.count-box span { font-size: 10px; font-weight: 500; letter-spacing: .035em; }
.btn { font-size: 15px; font-weight: 700; letter-spacing: -.012em; }
.trust-item strong { font-size: 18px; font-weight: 720; letter-spacing: -.02em; }
.trust-item span { font-size: 14px; line-height: 1.3; }
.section-head h2 { font-size: 30px; font-weight: 700; line-height: 1.18; letter-spacing: -.025em; }
.text-link { font-size: 14px; font-weight: 680; }
.delivery-content h3 { font-size: 17px; font-weight: 700; line-height: 1.25; letter-spacing: -.018em; }
.meta-list { font-size: 13px; line-height: 1.35; }
.meta-list .item-line { font-weight: 620; }


@media (min-width: 1181px) {
  .delivery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
  .hero { min-height: 720px; padding-top: 124px; }
  .action-media { aspect-ratio: 16 / 7.05; }
}

/* Cards com Reels incorporado */
.delivery-card-trigger {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  font: inherit;
  scroll-snap-align: start;
}
.delivery-card-trigger .delivery-card { height: 100%; }
.delivery-card-trigger:hover .delivery-card,
.delivery-card-trigger:focus-visible .delivery-card {
  transform: translateY(-3px);
  border-color: rgba(255,0,61,.24);
  box-shadow: 0 18px 38px rgba(24,24,29,.12);
}
.delivery-card-trigger:focus-visible { outline: 3px solid rgba(255,0,61,.2); outline-offset: 4px; border-radius: 16px; }
.reel-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  color: #fff;
  background: rgba(8,9,12,.64);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, background .2s ease;
}
.reel-play svg { width: 25px; height: 25px; fill: currentColor; stroke: currentColor; stroke-width: 1.5; }
.delivery-card-trigger:hover .reel-play { transform: translate(-50%, -50%) scale(1.06); background: var(--red); }

body.modal-open { overflow: hidden; }
.reel-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 24px; }
.reel-modal-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(5,6,9,.82); backdrop-filter: blur(10px); }
.reel-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  color: #fff;
  background: #101116;
  box-shadow: 0 35px 90px rgba(0,0,0,.55);
}
.reel-modal-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 18px; }
.reel-modal-head div { display: grid; gap: 2px; min-width: 0; }
.reel-modal-head span { color: rgba(255,255,255,.55); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.reel-modal-head strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 15px; font-weight: 700; }
.reel-modal-close { width: 38px; height: 38px; flex: 0 0 38px; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; color: #fff; background: rgba(255,255,255,.06); font-size: 26px; line-height: 1; }
.reel-modal-frame { min-height: 560px; background: #000; }
.reel-modal-frame iframe { width: 100%; height: min(70vh, 660px); min-height: 560px; border: 0; display: block; background: #fff; }
.reel-original-link { min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; color: #fff; font-size: 13px; font-weight: 650; }
.reel-original-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* Identidade editável no dashboard */
.logo-preview-wrap { margin-top: -2px; }
.logo-preview {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px dashed #d8dae2;
  border-radius: 14px;
  background: linear-gradient(135deg, #121319, #242630);
}
.logo-preview img { max-width: 260px; max-height: 90px; object-fit: contain; }

@media (max-width: 1180px) {
  .container { width: min(100% - 40px, var(--content-max)); }
  .hero-grid { gap: 42px; }
  .delivery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 26px, var(--content-max)); }
  .site-header {
    height: 88px;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }
  .navbar { height: 88px; }
  .brand img { width: 142px; height: 70px; }
  .hero { padding-top: 106px; background: #08090d; }
  .hero-copy h1 { font-size: clamp(39px, 11vw, 50px); font-weight: 700; line-height: 1.05; letter-spacing: -.032em; }
  .action-content h2 { font-size: 25px; font-weight: 700; }
  .action-content .subtitle { font-size: 14px; }
  .date-row { font-size: 13px; }
  .count-box strong { font-size: 22px; }
  .section-head h2 { font-size: 24px; }
  .delivery-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 79vw);
  }
  .delivery-content h3 { font-size: 16px; }
  .meta-list { font-size: 12px; }
  .reel-modal { padding: 10px; align-items: end; }
  .reel-modal-dialog { width: 100%; max-height: calc(100vh - 20px); border-radius: 22px 22px 16px 16px; }
  .reel-modal-frame, .reel-modal-frame iframe { min-height: 520px; height: 68vh; }
}

/* v2.6 — correções de reprodução, alinhamento e consistência responsiva */
.hero-copy h1 {
  max-width: 430px;
  font-size: clamp(42px, 3.65vw, 58px);
  line-height: 1.04;
}
.hero-copy h1 .hero-title-main { display: block; color: #fff; }
.hero-copy h1 #hero-title-accent { display: block; margin-top: 6px; color: var(--red); }

/* Evita que a regra genérica de span desalinhe os discos dos indicadores. */
.trust-item { display: grid; grid-template-columns: 52px minmax(0, 1fr); justify-content: center; }
.trust-item .icon-disc {
  display: grid;
  margin-top: 0;
  color: #fff;
  align-self: center;
}
.trust-item > div { min-width: 0; align-self: center; }
.trust-item > div > span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }

.instagram-media-frame {
  display: block;
  width: 100%;
  border: 0;
  background: #fff;
}
.action-media .instagram-media-frame {
  height: 100%;
  min-height: 440px;
}
.detail-media .instagram-media-frame {
  width: 100%;
  min-height: 720px;
}
.load-more-wrap { margin-top: 30px; text-align: center; }
.footer-col span:empty { display: none; }

@media (max-width: 960px) {
  .hero-copy h1 { max-width: 560px; }
  .nav-links { max-height: calc(100vh - 104px); overflow-y: auto; }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    max-width: 315px;
    font-size: clamp(34px, 9.5vw, 42px);
    line-height: 1.06;
  }
  .hero-copy h1 #hero-title-accent { margin-top: 3px; }

  .trust-item {
    grid-template-columns: 41px minmax(0, 1fr);
    justify-content: stretch;
    gap: 9px;
    padding: 13px 10px;
  }
  .trust-item .icon-disc { width: 41px; height: 41px; }
  .trust-item > div > span { margin-top: 3px; font-size: 10px; line-height: 1.25; }

  .page-hero { padding: 118px 0 50px; }
  .page-hero h1 { font-size: clamp(32px, 10vw, 42px); line-height: 1.08; }
  .page-hero p { font-size: 14px; line-height: 1.55; }
  .detail-panel { padding: 20px; }
  .detail-media img,
  .detail-media video { min-height: 260px; }
  .detail-media .instagram-media-frame { min-height: 590px; }
  .action-media .instagram-media-frame { min-height: 520px; }

  /* Na página completa de entregas os cards ficam em lista, não em carrossel cortado. */
  body[data-page="deliveries"] .delivery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow: visible;
    padding: 0;
    gap: 16px;
  }
  body[data-page="deliveries"] .delivery-card,
  body[data-page="deliveries"] .delivery-card-trigger,
  body[data-page="deliveries"] .delivery-card-anchor { width: 100%; }

  /* O rodapé mantém todas as funções também no celular. */
  .footer-grid { gap: 28px; }
  .footer-col { display: block; text-align: center; }
  .footer-col h4 { margin-top: 0; }
  .footer-col a,
  .footer-col span { margin: 10px 0; font-size: 13px; }
  .site-footer { padding-bottom: 34px; }
}
.delivery-media .instagram-media-frame { width: 100%; height: 100%; min-height: 100%; }
.delivery-card.has-instagram-media .delivery-media { aspect-ratio: 9 / 16; background: #000; }
.action-media.instagram-embed { aspect-ratio: 9 / 11; min-height: 620px; background: #000; }
.action-media.instagram-embed .media-shade { display: none; }
.detail-media.instagram-embed { background: #000; }
@media (max-width: 640px) {
  .action-media.instagram-embed { aspect-ratio: auto; min-height: 590px; }
}
.action-media.instagram-embed + .action-content { margin-top: 0; }
@media (max-width: 480px) {
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { min-height: 72px; padding-inline: 18px; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
}

/* v1.4.1 — título principal mais compacto */
.hero-copy h1 {
  max-width: 390px;
  font-size: clamp(30px, 2.75vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.hero-copy h1 #hero-title-accent { margin-top: 2px; }

@media (max-width: 960px) {
  .hero-copy h1 { max-width: 430px; }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    max-width: 290px;
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.1;
  }
  .hero-copy h1 #hero-title-accent { margin-top: 1px; }
}

/* v1.4.3 — título com 16 px e no máximo duas linhas */
.hero-copy h1 {
  font-size: 16px;
  line-height: 1.25;
}
.hero-copy h1 .hero-title-main,
.hero-copy h1 #hero-title-accent {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 16px;
  }
}

/* v1.4.4 — título em uma linha e campanha principal mais alta */
.hero-copy h1 {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 1.2;
}
.hero-copy h1 .hero-title-main,
.hero-copy h1 #hero-title-accent {
  display: inline;
  max-width: none;
  margin-top: 0;
  overflow: visible;
  white-space: inherit;
  text-overflow: clip;
}
.hero-copy h1 #hero-title-accent { margin-left: 4px; }

/* Aproxima o card do topo sem alterar o restante da seção. */
.hero-grid .action-card {
  position: relative;
  top: -32px;
}

@media (max-width: 960px) {
  .hero-grid .action-card { top: -20px; }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    width: auto;
    max-width: 100%;
    font-size: 16px;
  }
  .hero-grid { gap: 20px; }
  .hero-grid .action-card { top: -16px; }
}

/* v1.4.5 — título somente no desktop */
.hero-copy h1 {
  font-size: 25px;
  line-height: 1.2;
}

@media (max-width: 640px) {
  /* No celular o bloco textual é removido para o card ocupar o topo da seção. */
  .hero-copy { display: none; }
  .hero-grid { gap: 0; }
}

/* v1.4.6 — tipografia do título mais leve e limpa */
.hero-copy h1 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}
.hero-copy h1 .hero-title-main {
  font-weight: 450;
}
.hero-copy h1 #hero-title-accent {
  font-weight: 550;
  margin-left: 6px;
}

@media (max-width: 640px) {
  .hero-copy { display: none; }
}

/* v1.4.7 — tipografia mais leve e limpa em todo o sistema */
body {
  font-weight: 400;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: -0.015em;
}

strong,
b {
  font-weight: 600;
}

/* Navegação e elementos institucionais */
.nav-links {
  font-weight: 500;
  letter-spacing: 0;
}
.eyebrow,
.section-kicker {
  font-weight: 600;
  letter-spacing: 0.08em;
}
.badge,
.status-tag {
  font-weight: 600;
  letter-spacing: 0;
}

/* Campanha principal */
.hero-copy h1 {
  font-weight: 500;
  letter-spacing: 0;
}
.hero-copy h1 .hero-title-main {
  font-weight: 450;
}
.hero-copy h1 #hero-title-accent {
  font-weight: 500;
}
.action-content h2 {
  font-weight: 600;
  letter-spacing: -0.015em;
}
.action-content .subtitle,
.date-row {
  font-weight: 400;
}
.date-row strong {
  font-weight: 600;
}
.count-box strong {
  font-weight: 600;
  letter-spacing: -0.02em;
}
.count-box span {
  font-weight: 400;
  letter-spacing: 0.025em;
}
.count-separator {
  font-weight: 500;
}

/* Botões e chamadas */
.btn,
.small-btn,
.delivery-card-link,
.text-link,
.reel-original-link {
  font-weight: 600;
  letter-spacing: 0;
}

/* Indicadores, cards e conteúdos */
.trust-item strong {
  font-weight: 600;
  letter-spacing: -0.01em;
}
.trust-item span {
  font-weight: 400;
}
.section-head h2 {
  font-weight: 600;
  letter-spacing: -0.015em;
}
.delivery-content h3,
.meta-list .item-line {
  font-weight: 500;
}

/* Páginas internas, rodapé e modal */
.page-hero h1 {
  font-weight: 600;
  letter-spacing: -0.02em;
}
.footer-col h4 {
  font-weight: 600;
}
.footer-col a,
.footer-col span,
.footer-brand p,
.footer-bottom {
  font-weight: 400;
}
.social-row a {
  font-weight: 500;
}
.reel-modal-head span,
.reel-modal-head strong {
  font-weight: 500;
}

/* Dashboard e formulários */
.login-card h1,
.admin-top h1,
.panel h2,
.admin-item h3,
.field-heading label {
  font-weight: 600;
  letter-spacing: -0.01em;
}
label,
.admin-nav button {
  font-weight: 500;
}
.dashboard-card {
  font-weight: 400;
}
.dashboard-card strong {
  font-weight: 600;
  letter-spacing: -0.02em;
}
.button-editor-number {
  font-weight: 600;
}
.icon-admin-btn,
.admin-health,
.form-message {
  font-weight: 500;
}
input,
textarea,
select {
  font-weight: 400;
}

/* v1.5.0 — tipografia global mais limpa, leve e consistente */
:root {
  --font-ui: "Inter", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.008em;
  font-variant-numeric: tabular-nums;
}

p,
span,
a,
button,
input,
textarea,
select,
label {
  letter-spacing: -0.006em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-ui);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

strong,
b {
  font-weight: 550;
}

/* Navegação */
.nav-links {
  font-size: 14px;
  font-weight: 450;
  letter-spacing: -0.008em;
}
.nav-links a {
  color: rgba(255,255,255,.76);
}

/* Título institucional */
.hero-copy h1 {
  font-size: 25px;
  font-weight: 450;
  line-height: 1.3;
  letter-spacing: -0.012em;
}
.hero-copy h1 .hero-title-main,
.hero-copy h1 #hero-title-accent {
  font-weight: 450;
}
.hero-copy > p:last-child {
  font-size: 17px;
  font-weight: 350;
  line-height: 1.62;
  letter-spacing: -0.008em;
}

/* Selos e textos auxiliares sem excesso de caixa alta */
.eyebrow,
.section-kicker,
.badge,
.status-tag,
.count-box span,
.reel-modal-head span {
  text-transform: none;
  letter-spacing: -0.002em;
}
.eyebrow,
.section-kicker {
  font-weight: 500;
}
.badge,
.status-tag {
  font-weight: 500;
}

/* Campanha principal */
.action-content h2 {
  font-size: 29px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.025em;
}
.action-content .subtitle {
  font-size: 15px;
  font-weight: 350;
  line-height: 1.5;
}
.date-row {
  font-size: 14px;
  font-weight: 350;
  letter-spacing: -0.006em;
}
.date-row strong {
  font-weight: 550;
}
.count-box strong {
  font-size: 27px;
  font-weight: 550;
  letter-spacing: -0.025em;
}
.count-box span {
  font-size: 10px;
  font-weight: 400;
}
.count-separator {
  font-weight: 400;
}

/* Botões e links */
.btn {
  font-size: 14px;
  font-weight: 550;
  letter-spacing: -0.006em;
}
.small-btn,
.delivery-card-link,
.text-link,
.reel-original-link,
.social-row a {
  font-weight: 500;
  letter-spacing: -0.004em;
}

/* Indicadores e cards */
.trust-item strong {
  font-size: 17px;
  font-weight: 550;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.trust-item span {
  font-size: 13px;
  font-weight: 350;
  line-height: 1.4;
}
.section-head h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.delivery-content h3 {
  font-size: 16px;
  font-weight: 550;
  line-height: 1.32;
  letter-spacing: -0.015em;
}
.meta-list {
  font-weight: 350;
  line-height: 1.45;
}
.meta-list .item-line {
  font-weight: 450;
}


/* Páginas internas e rodapé */
.page-hero h1 {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.page-hero p,
.detail-panel p {
  font-weight: 350;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 550;
  letter-spacing: -0.01em;
}
.footer-col a,
.footer-col span,
.footer-brand p,
.footer-bottom {
  font-weight: 350;
  letter-spacing: -0.003em;
}

/* Dashboard e formulários */
.login-card h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.admin-top h1 {
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.panel h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.admin-item h3,
.field-heading label {
  font-weight: 550;
  letter-spacing: -0.012em;
}
label {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.004em;
}
input,
textarea,
select {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.006em;
}
.admin-nav button {
  font-size: 14px;
  font-weight: 450;
  letter-spacing: -0.006em;
}
.admin-top p,
.panel p,
.panel-subtitle,
.admin-item p,
.field-heading small,
.token-help,
.button-editor-empty {
  font-weight: 350;
  line-height: 1.55;
}
.dashboard-card {
  font-size: 14px;
  font-weight: 350;
  letter-spacing: -0.006em;
}
.dashboard-card strong {
  font-size: 29px;
  font-weight: 550;
  letter-spacing: -0.025em;
}
.button-editor-number,
.icon-admin-btn,
.admin-health,
.form-message {
  font-weight: 500;
}
.reel-modal-head strong {
  font-weight: 500;
  letter-spacing: -0.008em;
}

@media (max-width: 640px) {
  .hero-copy { display: none; }
  .action-content h2 { font-size: 24px; }
  .section-head h2 { font-size: 25px; }
  .page-hero h1 { font-size: 38px; }
  .admin-top h1 { font-size: 25px; }
  .panel h2 { font-size: 19px; }
}

/* Página Sobre nós — v1.5.1 */
.about-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 72px;
}
.about-hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -140px;
  bottom: -300px;
  border-radius: 50%;
  background: rgba(203, 25, 40, .22);
  filter: blur(70px);
  pointer-events: none;
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero .section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #ef4555;
}
.about-hero h1 { max-width: 820px; }
.about-hero p { max-width: 700px; }
.about-section {
  position: relative;
  overflow: hidden;
  background: #f6f6f7;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(420px, 1.14fr);
  gap: clamp(54px, 7vw, 104px);
  align-items: center;
}
.about-video-column {
  position: relative;
  display: grid;
  justify-items: center;
}
.about-video-glow {
  position: absolute;
  width: 85%;
  height: 72%;
  top: 12%;
  left: 7.5%;
  border-radius: 50%;
  background: rgba(197, 18, 34, .2);
  filter: blur(58px);
  pointer-events: none;
}
.about-video-shell {
  position: relative;
  width: min(100%, 410px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 26px;
  background: #070707;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 70px rgba(10, 10, 12, .22);
}
.about-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  pointer-events: none;
}
.about-video-shell video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #070707;
}
.about-video-caption {
  position: relative;
  margin: 18px 0 0;
  color: #777b82;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}
.about-copy { max-width: 650px; }
.about-copy .section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #c8182c;
}
.about-copy h2 {
  max-width: 620px;
  margin: 0 0 24px;
  color: #17181b;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 550;
  letter-spacing: -.045em;
}
.about-copy p {
  margin: 0 0 18px;
  color: #62666d;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 350;
}
.about-copy .about-lead {
  color: #35383d;
  font-size: 18px;
  line-height: 1.68;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.about-values div {
  min-height: 132px;
  padding: 20px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e8e8ea;
  box-shadow: 0 12px 30px rgba(17, 18, 20, .045);
}
.about-values strong {
  display: block;
  margin-bottom: 9px;
  color: #1c1d20;
  font-size: 15px;
  font-weight: 550;
}
.about-values span {
  display: block;
  color: #747880;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 350;
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-copy {
    max-width: 760px;
    margin: 0 auto;
  }
  .about-video-shell { width: min(100%, 380px); }
}

@media (max-width: 640px) {
  .about-hero { padding-bottom: 50px; }
  .about-section { padding-top: 58px; padding-bottom: 64px; }
  .about-grid { gap: 46px; }
  .about-video-shell {
    width: min(100%, 340px);
    border-radius: 21px;
  }
  .about-copy h2 {
    font-size: 32px;
    line-height: 1.12;
  }
  .about-copy .about-lead { font-size: 16px; }
  .about-copy p { font-size: 15px; }
  .about-values { grid-template-columns: 1fr; }
  .about-values div { min-height: auto; }
}

/* v1.5.2 — mais respiro entre o cabeçalho e o card principal */
.hero-grid .action-card {
  top: 0;
  margin-top: 22px;
}

@media (max-width: 960px) {
  .hero-grid .action-card {
    top: 0;
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .hero-grid .action-card {
    top: 0;
    margin-top: 14px;
  }
}



/* v1.5.3 — apresentação institucional e Instagram na home */
.home-about-section {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 100px;
  background: #f6f6f7;
}
.home-about-grid {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(52px, 7vw, 104px);
}
.home-about-media {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
}
.home-about-glow {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(198, 18, 39, .2);
  filter: blur(70px);
}
.home-about-video-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 8px solid #16171a;
  border-radius: 28px;
  background: #08090a;
  box-shadow: 0 28px 65px rgba(19, 20, 23, .2);
}
.home-about-video-shell video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #060607;
}
.home-about-copy { max-width: 650px; }
.home-about-copy .section-kicker { color: var(--red); }
.home-about-copy h2 {
  margin: 14px 0 24px;
  color: #17181b;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.07;
  font-weight: 550;
  letter-spacing: -.045em;
}
.home-about-copy p {
  max-width: 620px;
  margin: 0 0 17px;
  color: #62666e;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 350;
}
.home-about-button {
  width: fit-content;
  margin-top: 17px;
}

.home-instagram-section {
  padding: 96px 0;
  background: #fff;
}
.instagram-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  overflow: hidden;
  padding: clamp(38px, 6vw, 72px);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(213, 27, 51, .38), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(134, 13, 30, .28), transparent 32%),
    linear-gradient(135deg, #17181c, #0b0c0f 72%);
  box-shadow: 0 28px 70px rgba(12, 13, 16, .16);
}
.instagram-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: inherit;
}
.instagram-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(2, minmax(130px, 1fr));
  gap: 13px;
  min-height: 390px;
}
.instagram-gallery-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: #222328;
  box-shadow: 0 20px 38px rgba(0,0,0,.22);
}
.instagram-gallery-card-main { grid-row: 1 / 3; }
.instagram-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.instagram-mark {
  position: absolute;
  right: -20px;
  bottom: -22px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 6px solid #111216;
  border-radius: 26px;
  background: linear-gradient(145deg, #f12b4a, #9d0f27);
  box-shadow: 0 18px 35px rgba(0,0,0,.34);
}
.instagram-mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}
.instagram-showcase-copy { position: relative; z-index: 1; }
.instagram-showcase-copy .section-kicker { color: #ff6b7f; }
.instagram-showcase-copy h2 {
  margin: 14px 0 22px;
  max-width: 580px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 550;
  letter-spacing: -.042em;
}
.instagram-showcase-copy p {
  max-width: 570px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.66);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 350;
}
.instagram-handle {
  display: block;
  margin-bottom: 24px;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.instagram-showcase-copy .btn {
  width: fit-content;
  background: #d41730;
  border-color: #d41730;
}
.instagram-showcase-copy .btn:hover { background: #b91228; border-color: #b91228; }

@media (max-width: 960px) {
  .home-about-grid,
  .instagram-showcase {
    grid-template-columns: 1fr;
  }
  .home-about-copy { max-width: 760px; }
  .instagram-showcase { gap: 54px; }
  .instagram-gallery { min-height: 430px; }
}

@media (max-width: 640px) {
  .home-about-section { padding-top: 66px; padding-bottom: 72px; }
  .home-about-grid { gap: 42px; }
  .home-about-video-shell { width: min(100%, 310px); border-width: 6px; border-radius: 23px; }
  .home-about-copy h2 { font-size: 31px; line-height: 1.12; }
  .home-about-copy p { font-size: 15px; line-height: 1.65; }
  .home-about-button { width: 100%; }
  .home-instagram-section { padding: 68px 0; }
  .instagram-showcase { padding: 26px 20px 30px; border-radius: 22px; gap: 40px; }
  .instagram-gallery {
    min-height: 315px;
    grid-template-columns: 1.08fr .92fr;
    grid-template-rows: repeat(2, minmax(105px, 1fr));
    gap: 9px;
  }
  .instagram-gallery-card { border-radius: 13px; }
  .instagram-mark { right: -7px; bottom: -18px; width: 68px; height: 68px; border-width: 5px; border-radius: 20px; }
  .instagram-mark svg { width: 32px; height: 32px; }
  .instagram-showcase-copy h2 { font-size: 31px; line-height: 1.12; }
  .instagram-showcase-copy p { font-size: 15px; line-height: 1.62; }
  .instagram-showcase-copy .btn { width: 100%; }
}

/* v1.5.4 — página institucional ampliada e margem mobile padronizada */
.about-hero-expanded {
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  padding-top: 150px;
  padding-bottom: 78px;
  background:
    radial-gradient(circle at 78% 28%, rgba(215, 22, 48, .26), transparent 30%),
    linear-gradient(135deg, rgba(7, 8, 11, .12), rgba(7, 8, 11, .58)),
    #090a0d;
}
.about-hero-content { width: 100%; }
.about-hero-expanded h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 520;
  line-height: 1.02;
  letter-spacing: -.052em;
}
.about-hero-expanded p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255,255,255,.7);
}
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.about-hero-stats div {
  padding: 24px 24px 0 0;
}
.about-hero-stats div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.about-hero-stats strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 30px;
  font-weight: 520;
  letter-spacing: -.035em;
}
.about-hero-stats span {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 350;
}
.about-section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}
.about-section-heading h2 {
  margin: 13px 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 520;
  letter-spacing: -.043em;
}
.about-section-heading p {
  margin: 0;
  color: #686c73;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 350;
}
.about-journey-section { background: #fff; }
.about-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.about-timeline article {
  min-height: 275px;
  padding: 30px;
  border: 1px solid #e8e9ec;
  border-radius: 22px;
  background: #fafafa;
}
.about-timeline article > span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 14px;
  color: #fff;
  background: #c9182c;
  font-size: 13px;
  font-weight: 500;
}
.about-timeline h3 {
  margin: 0 0 13px;
  color: #1d1e22;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 520;
  letter-spacing: -.025em;
}
.about-timeline p {
  margin: 0;
  color: #71757c;
  font-size: 14px;
  line-height: 1.68;
  font-weight: 350;
}
.about-reach-section {
  padding: 86px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(215, 24, 47, .34), transparent 30%),
    linear-gradient(135deg, #17181c, #090a0d 76%);
}
.about-reach-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
}
.about-reach-grid .section-kicker { color: #ff6d80; }
.about-reach-grid h2 {
  max-width: 600px;
  margin: 13px 0 0;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.05;
  font-weight: 520;
  letter-spacing: -.046em;
}
.about-reach-grid p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 350;
}
.about-gallery-section { background: #f5f5f6; }
.about-gallery-heading { margin-bottom: 38px; }
.about-gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 14px;
}
.about-gallery-grid figure {
  overflow: hidden;
  margin: 0;
  min-width: 0;
  border-radius: 20px;
  background: #ddd;
}
.about-gallery-grid .about-gallery-main { grid-row: 1 / 3; }
.about-gallery-grid figure:last-child { grid-column: 2 / 4; }
.about-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.about-gallery-grid figure:hover img { transform: scale(1.025); }

.home-history-section {
  padding: 96px 0;
  background: #fff;
}
.home-history-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  padding: clamp(38px, 6vw, 72px);
  border-radius: 30px;
  background: #f5f5f6;
  border: 1px solid #e9e9ec;
}
.home-history-gallery {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: repeat(2, minmax(135px, 1fr));
  gap: 12px;
  min-height: 390px;
}
.home-history-gallery figure {
  overflow: hidden;
  min-width: 0;
  margin: 0;
  border-radius: 18px;
  background: #ddd;
}
.home-history-gallery-main { grid-row: 1 / 3; }
.home-history-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-history-copy .section-kicker { color: #c8182c; }
.home-history-copy h2 {
  margin: 14px 0 22px;
  color: #17181b;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 520;
  letter-spacing: -.042em;
}
.home-history-copy > p {
  margin: 0 0 24px;
  color: #666a71;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 350;
}
.home-history-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 28px;
}
.home-history-stats div {
  padding: 15px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e5e5e8;
}
.home-history-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #1b1c20;
  font-size: 20px;
  font-weight: 520;
}
.home-history-stats span {
  color: #777b82;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 350;
}
.home-history-copy .btn { width: fit-content; }

@media (max-width: 960px) {
  .about-timeline { grid-template-columns: 1fr; }
  .about-timeline article { min-height: auto; }
  .about-reach-grid,
  .home-history-showcase { grid-template-columns: 1fr; }
  .about-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 220px 220px;
  }
  .about-gallery-grid .about-gallery-main { grid-column: 1 / 3; grid-row: auto; }
  .about-gallery-grid figure:last-child { grid-column: 1 / 3; }
  .home-history-gallery { min-height: 430px; }
}

@media (max-width: 640px) {
  /* v1.5.5 — fundos em largura total e conteúdo interno com 20px de respiro */
  body:not(.admin-body) {
    overflow-x: hidden;
  }
  body:not(.admin-body) .container {
    width: calc(100% - 40px);
    max-width: none;
    margin-inline: auto;
  }
  body:not(.admin-body) .site-header,
  body:not(.admin-body) main,
  body:not(.admin-body) .site-footer {
    width: 100%;
    margin: 0;
  }
  body:not(.admin-body) .nav-links {
    left: 20px;
    right: 20px;
  }

  .about-hero-expanded {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 54px;
  }
  .about-hero-expanded h1 {
    font-size: 39px;
    line-height: 1.06;
  }
  .about-hero-expanded p {
    font-size: 15px;
    line-height: 1.65;
  }
  .about-hero-stats {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .about-hero-stats div,
  .about-hero-stats div + div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.11);
  }
  .about-hero-stats strong { margin: 0; font-size: 23px; }
  .about-hero-stats span { text-align: right; }
  .about-section-heading { margin-bottom: 30px; }
  .about-section-heading h2,
  .about-reach-grid h2,
  .home-history-copy h2 { font-size: 30px; line-height: 1.12; }
  .about-section-heading p,
  .about-reach-grid p,
  .home-history-copy > p { font-size: 15px; line-height: 1.65; }
  .about-timeline { gap: 12px; }
  .about-timeline article { padding: 24px 22px; border-radius: 18px; }
  .about-timeline article > span { margin-bottom: 24px; }
  .about-reach-section { padding: 62px 0; }
  .about-reach-grid { gap: 28px; }
  .about-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 230px repeat(3, 190px);
    gap: 10px;
  }
  .about-gallery-grid .about-gallery-main,
  .about-gallery-grid figure:last-child { grid-column: auto; grid-row: auto; }
  .about-gallery-grid figure { border-radius: 16px; }
  .home-history-section { padding: 68px 0; }
  .home-history-showcase {
    padding: 0;
    gap: 34px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .home-history-gallery {
    min-height: 315px;
    grid-template-columns: 1.08fr .92fr;
    grid-template-rows: repeat(2, minmax(105px, 1fr));
    gap: 9px;
  }
  .home-history-gallery figure { border-radius: 14px; }
  .home-history-stats { grid-template-columns: 1fr; }
  .home-history-stats div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
  }
  .home-history-stats strong { margin: 0; }
  .home-history-copy .btn { width: 100%; }
}


/* v1.5.9 — alinhamento e cor do ícone do Instagram corrigidos */
.instagram-clean-section {
  padding: 96px 0;
  background: #f6f6f7;
}
.instagram-clean-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}
.instagram-clean-heading .section-kicker { color: var(--red); }
.instagram-clean-heading h2 {
  margin: 12px 0 10px;
  color: #17181b;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.07;
  font-weight: 520;
  letter-spacing: -.045em;
}
.instagram-clean-heading p {
  max-width: 640px;
  margin: 0;
  color: #6c7077;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 350;
}
.instagram-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.instagram-post-card {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.instagram-post-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: #dedfe2;
  box-shadow: 0 12px 34px rgba(22, 24, 29, .08);
}
.instagram-post-media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(7, 8, 10, .72));
  pointer-events: none;
}
.instagram-post-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.instagram-post-card:hover .instagram-post-media img {
  transform: scale(1.025);
  filter: saturate(1.04);
}
.instagram-post-icon {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #833ab4 0%, #c13584 30%, #e1306c 52%, #f56040 74%, #fcaf45 100%);
  box-shadow: 0 8px 22px rgba(193, 53, 132, .28);
}
.instagram-post-icon svg,
.instagram-profile-avatar svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: none;
}

.instagram-glyph-dot {
  fill: currentColor;
  stroke: none;
}
.instagram-post-icon .instagram-glyph,
.instagram-profile-avatar .instagram-glyph {
  margin: 0;
  transform: translateZ(0);
}

.instagram-post-label {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 17px;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -.01em;
}
.instagram-profile-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 20px;
  padding: 20px 22px;
  border: 1px solid #e4e4e7;
  border-radius: 18px;
  background: #fff;
}
.instagram-profile-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.instagram-profile-summary > .instagram-profile-avatar {
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 14px;
  color: #fff;
  line-height: 0;
  background: linear-gradient(135deg, #833ab4 0%, #c13584 30%, #e1306c 52%, #f56040 74%, #fcaf45 100%);
  box-shadow: 0 8px 22px rgba(193, 53, 132, .24);
}
.instagram-profile-summary > .instagram-profile-avatar .instagram-glyph {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0;
  color: #fff;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  transform: none;
}
.instagram-profile-summary > .instagram-profile-avatar .instagram-glyph-dot {
  fill: #fff;
  stroke: none;
}
.instagram-profile-summary strong {
  display: block;
  margin-bottom: 4px;
  color: #1b1c20;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 520;
}
.instagram-profile-summary > div > span {
  display: block;
  color: #777b82;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 350;
}
.instagram-follow-button {
  flex: 0 0 auto;
  width: auto;
  min-width: 205px;
}

@media (max-width: 760px) {
  .instagram-clean-section { padding: 68px 0; }
  .instagram-clean-heading { margin-bottom: 25px; }
  .instagram-clean-heading h2 { font-size: 30px; line-height: 1.12; }
  .instagram-clean-heading p { font-size: 15px; line-height: 1.6; }
  .instagram-posts-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .instagram-posts-grid::-webkit-scrollbar { display: none; }
  .instagram-post-card {
    flex: 0 0 min(78vw, 310px);
    scroll-snap-align: start;
  }
  .instagram-post-media { border-radius: 17px; }
  .instagram-profile-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
    margin-top: 17px;
    padding: 18px;
    border-radius: 17px;
  }
  .instagram-follow-button { width: 100%; min-width: 0; }
}


/* v1.6.0 — gerenciamento das fotos do Instagram no painel */
.instagram-admin-heading {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid #ececf1;
}
.instagram-admin-heading > div {
  display: grid;
  gap: 4px;
}
.instagram-admin-heading strong {
  color: #1d1e24;
  font-size: 15px;
  font-weight: 600;
}
.instagram-admin-heading span {
  color: #737580;
  font-size: 12px;
  line-height: 1.5;
}
.instagram-admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.instagram-admin-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1e2e8;
  border-radius: 16px;
  background: #fafafd;
}
.instagram-admin-preview {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eceef3;
}
.instagram-admin-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.instagram-admin-fields {
  display: grid;
  gap: 8px;
  padding: 14px;
}
.instagram-admin-fields label {
  margin-top: 3px;
  font-size: 11px;
}
.instagram-admin-fields input[type="file"] {
  padding: 9px;
  font-size: 12px;
  background: #fff;
}
@media (max-width: 1100px) {
  .instagram-admin-grid { grid-template-columns: 1fr; }
  .instagram-admin-card {
    display: grid;
    grid-template-columns: minmax(150px, 220px) 1fr;
  }
}
@media (max-width: 640px) {
  .instagram-admin-card { display: block; }
  .instagram-admin-preview { aspect-ratio: 4 / 5; }
}



/* v2.1.0 — aparência editável e biblioteca de imagens institucionais */
.panel-description {
  margin: 5px 0 0;
  color: #737580;
  font-size: 13px;
  line-height: 1.5;
}
.color-field input[type="color"] {
  width: 100%;
  min-height: 48px;
  padding: 5px;
  border: 1px solid #dfe0e6;
  border-radius: 10px;
  background: #fff;
}
.appearance-button-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid #e3e4ea;
  border-radius: 16px;
  background: #17181d;
}
.appearance-button-preview span {
  min-height: var(--preview-button-height, 58px);
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--preview-button-text, #fff);
  font-size: var(--preview-button-font-size, 17px);
  font-weight: 700;
  text-align: center;
}
.appearance-preview-primary {
  background: linear-gradient(90deg, var(--preview-primary-start, #ff003d), var(--preview-primary-end, #ff004a));
}
.appearance-preview-whatsapp {
  background: linear-gradient(90deg, var(--preview-whatsapp-start, #099c47), var(--preview-whatsapp-end, #10b657));
}
.media-admin-heading {
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid #ececf1;
}
.media-admin-heading > div { display: grid; gap: 5px; }
.media-admin-heading strong { color: #1d1e24; font-size: 16px; font-weight: 650; }
.media-admin-heading span { color: #737580; font-size: 12px; line-height: 1.55; }
.admin-subtitle {
  margin: 8px 0 0;
  color: #202127;
  font-size: 15px;
  font-weight: 650;
}
.site-image-admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.site-image-admin-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.site-image-admin-grid-single { grid-template-columns: minmax(0, 520px); }
.site-image-admin-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1e2e8;
  border-radius: 16px;
  background: #fafafd;
}
.site-image-admin-preview {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eceef3;
}
.site-image-poster-preview { aspect-ratio: 16 / 9; }
.site-image-admin-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-image-admin-fields {
  display: grid;
  gap: 8px;
  padding: 14px;
}
.site-image-admin-fields label {
  margin-top: 3px;
  font-size: 11px;
}
.site-image-admin-fields input[type="file"] {
  padding: 9px;
  font-size: 12px;
  background: #fff;
}
@media (max-width: 1200px) {
  .site-image-admin-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .site-image-admin-grid,
  .site-image-admin-grid-four { grid-template-columns: 1fr; }
  .appearance-button-preview { grid-template-columns: 1fr; }
}
