/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

html { scroll-behavior: smooth; }

:root {
  --background: #ffffff;
  --foreground: #1d1d1b;
  --red: #e1251b;
  --red-dark: #b71c14;
  --red-soft: #fdeceb;
  --orange: #f58220;
  --yellow: #ffc907;
  --yellow-soft: #fff4c2;
  --cream: #faf6ef;
  --green: #22c55e;
  --muted-foreground: #6f6a61;
  --border: #eae4d8;

  --gradient-brand: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 50%, var(--red) 100%);
  --gradient-red: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);

  --shadow-sm: 0 2px 8px rgba(29, 29, 27, 0.06);
  --shadow-md: 0 4px 16px rgba(29, 29, 27, 0.1);
  --shadow-lg: 0 12px 32px rgba(29, 29, 27, 0.16);
  --shadow-red: 0 8px 24px rgba(225, 37, 27, 0.3);

  --radius: 0.75rem;
  --whatsapp: #25d366;
  --whatsapp-hover: #20ba5a;

  --header-height: 84px;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
}

section { scroll-margin-top: var(--header-height); }

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

.text-red { color: var(--red); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 16px 0 12px;
}

.section-header p { color: var(--muted-foreground); font-size: 1.02rem; }

.badge-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--foreground);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.icon { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ===== Buttons ===== */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.btn:hover::after { left: 130%; }

.btn-red {
  background: var(--red);
  color: #ffffff;
  box-shadow: var(--shadow-red);
}

.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-light {
  background: #ffffff;
  color: var(--foreground);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

.btn-yellow {
  background: var(--yellow);
  color: var(--foreground);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn-yellow:hover { background: #ffd83d; transform: translateY(-2px); }

.btn-lg { padding: 16px 34px; font-size: 0.98rem; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo img { height: 66px; width: auto; transition: transform 0.25s ease; }
.logo:hover img { transform: scale(1.05); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--foreground);
  transition: color 0.15s ease;
}

.nav-desktop a:hover { color: var(--red); }

.nav-desktop a:not(.btn) { position: relative; }

.nav-desktop a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-desktop a:not(.btn):hover::after { transform: scaleX(1); }

.nav-desktop .btn-red:hover { color: #ffffff; }

.nav-toggle {
  display: none;
  padding: 8px;
  color: var(--foreground);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 12px 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.nav-mobile .btn { margin-top: 12px; width: 100%; border-bottom: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 48px) 0 72px;
  background-image: url('assets/hero-bg-cesta.jpg');
  background-size: cover;
  background-position: center right;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250,246,239,0.96) 0%, rgba(250,246,239,0.55) 14%, rgba(250,246,239,0) 34%),
    linear-gradient(100deg, rgba(250,246,239,0.96) 0%, rgba(250,246,239,0.88) 42%, rgba(250,246,239,0.3) 100%);
}

.hero .container { position: relative; z-index: 1; }

.hero-content { max-width: 640px; }

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 20px 0 16px;
}

.hero-content > p {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.hero-note .icon { color: var(--red); width: 20px; height: 20px; }
.hero-note strong { color: var(--red); font-weight: 800; }

/* ===== Sobre ===== */
.sobre { padding: 96px 0; background: #ffffff; }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.sobre-media { position: relative; }

.sobre-media img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  object-position: top;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sobre-media:hover img { transform: scale(1.02); }

.sobre-selo {
  position: absolute;
  bottom: -20px;
  right: -12px;
  background: var(--gradient-red);
  color: #ffffff;
  border-radius: var(--radius);
  padding: 18px 22px;
  max-width: 200px;
  box-shadow: var(--shadow-red);
}

.sobre-selo strong { display: block; font-size: 1.8rem; font-weight: 800; line-height: 1.1; }
.sobre-selo span { font-size: 0.82rem; opacity: 0.95; line-height: 1.3; display: block; }

.sobre-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 16px 0 16px;
}

.sobre-content > p { color: var(--muted-foreground); margin-bottom: 16px; }

.sobre-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }

.sobre-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.98rem;
}

.sobre-list .icon {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--foreground);
  stroke-width: 3;
}

/* ===== Cestas ===== */
.cestas { padding: 96px 0; background: var(--cream); }

.cestas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 88px;
}

.cesta-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cesta-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.cesta-card-destaque { border: 2px solid var(--yellow); }

.cesta-image { position: relative; height: 190px; overflow: hidden; }

.cesta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cesta-card:hover .cesta-image img { transform: scale(1.06); }

.cesta-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--foreground);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cesta-card:hover .cesta-tag { transform: translateY(-2px) rotate(-2deg); }

.cesta-tag-destaque {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--red);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.cesta-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.cesta-body h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 2px; }

.cesta-preco {
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cesta-preco-consulta { font-size: 1.15rem; }

.cesta-body > p:not(.cesta-preco) { color: var(--muted-foreground); font-size: 0.92rem; margin-bottom: 16px; flex: 1; }

.cesta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0;
  transition: gap 0.2s ease;
}

.cesta-link:hover { gap: 12px; }

.cesta-card-cta {
  background: var(--gradient-red);
  color: #ffffff;
  border: none;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.cesta-card-cta .cesta-body { align-items: center; justify-content: center; }
.cesta-cta-icon { width: 44px; height: 44px; margin-bottom: 16px; }
.cesta-card-cta h3 { font-size: 1.25rem; font-weight: 800; }
.cesta-card-cta p { color: rgba(255,255,255,0.92) !important; }

/* ===== Catálogo ===== */
.catalog-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  max-width: 860px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-sm);
}

.catalog-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 8px;
  border-radius: calc(var(--radius) - 4px);
  color: var(--foreground);
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.catalog-tab strong { font-size: 0.85rem; }

.catalog-tab:hover { background: var(--cream); }

.catalog-tab.active {
  background: var(--red);
  color: #ffffff;
  box-shadow: var(--shadow-red);
}

.catalog-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px;
  max-width: 860px;
  margin: 0 auto;
  animation: panelIn 0.4s ease;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.catalog-panel h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.catalog-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.catalog-panel h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.catalog-list-continued { margin-top: 38px; }

.catalog-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.94rem;
}

.catalog-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--green);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
}

.catalog-bonus {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 24px;
  background: var(--yellow-soft);
  border: 1px solid #f5dd7a;
  border-radius: var(--radius);
  padding: 20px 28px 20px 20px;
  max-width: 860px;
  margin: 24px auto 0;
  overflow: hidden;
}

.bonus-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: calc(var(--radius) - 4px);
  box-shadow: var(--shadow-sm);
}

.catalog-bonus h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8a6d00;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.catalog-bonus .icon { color: #8a6d00; width: 22px; height: 22px; }
.catalog-bonus p { font-size: 0.95rem; color: #6b5500; }
.catalog-bonus .bonus-obs { font-size: 0.85rem; opacity: 0.85; margin-top: 4px; }

.catalog-avisos {
  background: var(--red-soft);
  border: 1px solid #f5c1bd;
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 860px;
  margin: 16px auto 0;
}

.catalog-avisos h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red-dark);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.catalog-avisos ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.catalog-avisos li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #8a2620;
}

.catalog-avisos li .icon { color: var(--red); }

/* ===== Vantagens ===== */
.vantagens { padding: 96px 0; background: #ffffff; }

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vantagem-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vantagem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.vantagem-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); background: #ffffff; }

.vantagem-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--gradient-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vantagem-card:hover .vantagem-icon { transform: scale(1.1) rotate(-5deg); }

.vantagem-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.vantagem-card p { color: var(--muted-foreground); font-size: 0.92rem; }

/* ===== CTA band ===== */
.cta-band { background: var(--gradient-red); padding: 64px 0; }

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #ffffff;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
  max-width: 640px;
}

.cta-band p { color: rgba(255,255,255,0.9); }

/* ===== Contato ===== */
.contato { padding: 96px 0; background: var(--cream); }

.contato-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 24px;
}

.contato-card {
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  color: #ffffff;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contato-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.contato-card-whatsapp { background: var(--whatsapp); }
.contato-card-phone { background: var(--yellow); color: var(--foreground); }
.contato-card-email { background: #1d1d1b; }

.contato-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.contato-card-phone .contato-card-icon { background: rgba(0,0,0,0.1); }

.contato-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.contato-card p { font-size: 0.9rem; opacity: 0.9; margin-bottom: 18px; }

.btn-contato-card {
  background: #ffffff;
  color: var(--foreground);
  font-size: 0.82rem;
  padding: 10px 18px;
  width: 100%;
  box-shadow: var(--shadow-sm);
  text-transform: none;
  letter-spacing: 0;
}

.btn-contato-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.contato-extra {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.contato-extra-item { display: flex; gap: 14px; align-items: center; }

.contato-extra-item .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.contato-extra-item h4 { font-size: 0.98rem; font-weight: 700; }
.contato-extra-item p { color: var(--muted-foreground); font-size: 0.92rem; }

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 600;
  font-size: 0.95rem;
}

.instagram-link:hover { text-decoration: underline; }

/* ===== Footer ===== */
.site-footer { background: #1d1d1b; color: #d6d1c7; padding: 64px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: inline-block;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 10px 16px;
  margin-bottom: 16px;
}

.footer-logo img { height: 64px; width: auto; }

.footer-brand p { font-size: 0.9rem; opacity: 0.75; max-width: 280px; }

.site-footer h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.site-footer ul li { margin-bottom: 10px; font-size: 0.9rem; opacity: 0.85; }
.site-footer ul li a { transition: color 0.2s ease, padding-left 0.2s ease; }
.site-footer ul li a:hover { color: var(--yellow); opacity: 1; padding-left: 5px; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-bottom p { margin-bottom: 4px; }

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.whatsapp-float:hover { background: var(--whatsapp-hover); transform: scale(1.05); }
.whatsapp-float .icon { width: 28px; height: 28px; }

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  z-index: -1;
  animation: waPulse 2.4s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.55; }
  70% { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* ===== Barra de ações mobile ===== */
.mobile-actions {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #ffffff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

.mobile-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  font-size: 0.88rem;
  font-weight: 600;
}

.mobile-action-whatsapp { background: var(--whatsapp); color: #ffffff; }
.mobile-action-phone { background: var(--yellow); color: var(--foreground); }
.mobile-action-email { background: #1d1d1b; color: #ffffff; }

/* ===== Efeitos ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.hero .badge-yellow, .hero h1, .hero-content > p, .hero-actions, .hero-badges {
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero h1 { animation-delay: 0.1s; }
.hero-content > p { animation-delay: 0.2s; }
.hero-actions { animation-delay: 0.3s; }
.hero-badges { animation-delay: 0.4s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.visible { opacity: 1; transform: none; }

.whatsapp-float { animation: fadeUp 0.5s ease 0.9s both; }

.mobile-actions { animation: slideUp 0.45s ease 0.7s both; }

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: none; }
}

@media (min-width: 1024px) {
  .hero { background-attachment: fixed; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero .badge-yellow, .hero h1, .hero-content > p, .hero-actions, .hero-badges { animation: none; }
  .whatsapp-float { animation: none; }
  .whatsapp-float::before { animation: none; opacity: 0; }
  .mobile-actions { animation: none; }
  .catalog-panel { animation: none; }
  .btn::after { display: none; }
  .hero { background-attachment: scroll; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav-desktop { gap: 18px; }
  .nav-desktop a { font-size: 0.8rem; }
}

@media (max-width: 900px) {
  .cestas-grid, .vantagens-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 0; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-media { max-width: 520px; }
  .contato-cards { grid-template-columns: 1fr; }
  .contato-extra { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { justify-content: center; text-align: center; }
  .catalog-columns { grid-template-columns: 1fr; gap: 8px; }
  .catalog-list-continued { margin-top: 0; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .logo img { height: 52px; }
  :root { --header-height: 72px; }
  .cestas-grid, .vantagens-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-logo { margin: 0 auto 16px; }
  .hero-actions .btn { width: 100%; }
  .sobre-selo { right: 8px; }
  .catalog-tabs { grid-template-columns: repeat(2, 1fr); }
  .catalog-panel { padding: 24px; }
  .catalog-bonus { grid-template-columns: 1fr; padding: 16px; }
  .bonus-media img { height: 220px; object-position: center 15%; }
  .catalog-avisos ul { flex-direction: column; }
  .mobile-actions { display: flex; }
  body { padding-bottom: 52px; }
  .whatsapp-float { bottom: 72px; }
}
