/* ============================================================
   BE BUYER — Premium Marketplace  |  Design System 10/10
   Skill ui-ux-pro-max → Marketplace pattern, DM Sans,
   paleta preto + dourado sutil sobre off-white. Clean & premium.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;1,9..144,500&display=swap');

:root {
  /* Cores (skill: premium black + gold, WCAG-safe) */
  --ink:        #0C0A09;   /* texto/primário */
  --ink-2:      #44403C;   /* texto secundário */
  --muted:      #78716C;   /* texto terciário */
  --bg:         #FAFAF9;   /* fundo geral off-white */
  --surface:    #FFFFFF;   /* cards */
  --surface-2:  #F5F4F1;   /* blocos suaves */
  --line:       #E7E5E1;   /* bordas */
  --line-2:     #D6D3D1;
  --gold:       #A16207;   /* acento dourado (selos, detalhes) */
  --gold-soft:  #FBF3E4;
  --brand:      #0E8E4C;   /* verde Be Buyer (marca) */
  --brand-d:    #0A6E3A;
  --brand-soft: #E7F3EC;
  --danger:     #DC2626;
  --star:       #E8A93B;

  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --serif: 'Fraunces', Georgia, serif;

  --r-sm: 10px; --r: 16px; --r-lg: 24px; --r-pill: 999px;
  --sh-sm: 0 1px 2px rgba(12,10,9,.04), 0 1px 3px rgba(12,10,9,.06);
  --sh: 0 4px 16px rgba(12,10,9,.06), 0 2px 6px rgba(12,10,9,.04);
  --sh-lg: 0 24px 60px -12px rgba(12,10,9,.16);
  --ease: cubic-bezier(.4,0,.2,1);
  --t: .25s var(--ease);
  --container: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 6px; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); background: var(--bg); color: var(--ink);
  font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.1; letter-spacing: -.01em; color: var(--ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section--surface { background: var(--surface); }
.section--soft { background: var(--surface-2); }

.eyebrow { font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.section__head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.section__title { font-size: clamp(30px, 4vw, 46px); margin: 14px 0 14px; }
.section__sub { font-size: 18px; color: var(--ink-2); }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; text-align: left; max-width: none; gap: 24px; }
.section__head--row .section__title { margin-bottom: 0; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 15px; letter-spacing: .2px;
  padding: 14px 28px; border: none; cursor: pointer; border-radius: var(--r-pill);
  background: var(--ink); color: #fff; transition: var(--t);
}
.btn:hover:not(:disabled) { background: var(--brand); transform: translateY(-2px); box-shadow: var(--sh); }
.btn:active:not(:disabled) { transform: translateY(0); }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn--lg { padding: 17px 38px; font-size: 16px; }
.btn--full { width: 100%; }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn--ghost:hover:not(:disabled) { border-color: var(--ink); background: transparent; color: var(--ink); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(250,250,249,.85); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.logo { font-family: var(--serif); font-weight: 600; font-size: 26px; letter-spacing: -.5px; color: var(--ink); display: flex; align-items: baseline; flex-shrink: 0; }
.logo span { color: var(--brand); }
.nav { display: flex; gap: 30px; margin-left: 8px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--ink-2); transition: var(--t); }
.nav a:hover { color: var(--ink); }
.header__search { flex: 1; max-width: 360px; margin: 0 auto; position: relative; }
.header__search input { width: 100%; height: 42px; border: 1px solid var(--line-2); border-radius: var(--r-pill); padding: 0 16px 0 42px; font-family: var(--sans); font-size: 14px; background: var(--surface); color: var(--ink); transition: var(--t); }
.header__search input:focus { outline: none; border-color: var(--ink); }
.header__search svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; stroke: var(--muted); }
.header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.cur-select { border: 1px solid var(--line-2); background: var(--surface); padding: 9px 12px; border-radius: var(--r-pill); font-family: var(--sans); font-size: 13px; font-weight: 600; cursor: pointer; color: var(--ink); }
.cart-btn { position: relative; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line-2); background: var(--surface); border-radius: var(--r-pill); cursor: pointer; transition: var(--t); }
.cart-btn:hover { border-color: var(--ink); }
.cart-btn svg { width: 21px; height: 21px; stroke: var(--ink); }
.cart-count { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; border-radius: var(--r-pill); display: flex; align-items: center; justify-content: center; padding: 0 5px; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 80px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero__title { font-size: clamp(40px, 5.4vw, 70px); line-height: 1.02; margin: 18px 0 22px; }
.hero__title em { font-style: italic; color: var(--brand); }
.hero__sub { font-size: 19px; color: var(--ink-2); max-width: 480px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta { display: flex; gap: 40px; margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero__meta strong { font-family: var(--serif); font-size: 26px; display: block; }
.hero__meta span { font-size: 13px; color: var(--muted); }
.hero__media { position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; background: var(--surface-2); box-shadow: var(--sh-lg); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__chip { position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); border-radius: var(--r-pill); padding: 9px 16px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 7px; box-shadow: var(--sh-sm); }
.hero__chip svg { width: 16px; height: 16px; fill: var(--star); }

/* ---------- Benefícios ---------- */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.benefit { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; transition: var(--t); }
.benefit:hover { box-shadow: var(--sh); transform: translateY(-4px); }
.benefit__icon { width: 50px; height: 50px; border-radius: var(--r-sm); background: var(--brand-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.benefit__icon svg { width: 26px; height: 26px; stroke: var(--brand); }
.benefit h3 { font-family: var(--sans); font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.benefit p { font-size: 15px; color: var(--ink-2); }

/* ---------- Cards de produto ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 28px; }
.product-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: var(--t); }
.product-card:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); }
.product-card__img { aspect-ratio: 1; background: var(--surface-2); overflow: hidden; position: relative; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__tag { position: absolute; top: 14px; left: 14px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill); }
.product-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-card__cat { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.product-card__name { font-family: var(--sans); font-weight: 700; font-size: 17px; margin-bottom: 6px; line-height: 1.3; }
.product-card__desc { font-size: 14px; color: var(--muted); margin-bottom: 16px; flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-card__price { display: flex; align-items: baseline; gap: 8px; }
.product-card__price b { font-family: var(--serif); font-weight: 600; font-size: 21px; }
.product-card__price s { font-size: 14px; color: var(--muted); }
.product-card .stars { margin-bottom: 10px; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 15px; height: 15px; fill: var(--star); }
.add-mini { width: 40px; height: 40px; border-radius: var(--r-pill); background: var(--ink); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--t); flex-shrink: 0; }
.add-mini:hover { background: var(--brand); transform: scale(1.08); }
.add-mini svg { width: 18px; height: 18px; stroke: #fff; }

/* ---------- Categorias ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.cat-card { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--surface-2); border: 1px solid var(--line); display: flex; align-items: flex-end; padding: 22px; transition: var(--t); }
.cat-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.cat-card__icon { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: var(--r-sm); background: rgba(255,255,255,.7); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; }
.cat-card__icon svg { width: 24px; height: 24px; stroke: var(--ink); }
.cat-card h3 { font-family: var(--sans); font-weight: 700; font-size: 18px; }
.cat-card span { font-size: 13px; color: var(--ink-2); font-weight: 500; }

/* ---------- Why / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { aspect-ratio: 5/4; border-radius: var(--r-lg); overflow: hidden; background: var(--surface-2); box-shadow: var(--sh); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(28px, 3.6vw, 42px); margin: 14px 0 18px; }
.split p { font-size: 18px; color: var(--ink-2); margin-bottom: 28px; }

/* ---------- Trust strip ---------- */
.trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.trust__item { background: var(--surface); padding: 30px 26px; display: flex; gap: 14px; align-items: flex-start; }
.trust__item svg { width: 26px; height: 26px; stroke: var(--brand); flex-shrink: 0; }
.trust__item h4 { font-family: var(--sans); font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.trust__item p { font-size: 14px; color: var(--muted); }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 64px 48px; text-align: center; }
.newsletter .eyebrow { color: var(--star); }
.newsletter h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); margin: 14px 0 12px; }
.newsletter p { color: rgba(255,255,255,.7); font-size: 17px; margin-bottom: 28px; }
.newsletter__form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter__form input { flex: 1; height: 52px; border: none; border-radius: var(--r-pill); padding: 0 22px; font-family: var(--sans); font-size: 15px; }
.newsletter__form input:focus { outline: 2px solid var(--brand); }
.newsletter__form .btn { background: var(--brand); white-space: nowrap; }
.newsletter__form .btn:hover { background: var(--brand-d); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #fff; padding: 72px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer__brand .logo { color: #fff; margin-bottom: 16px; }
.footer__brand p { color: rgba(255,255,255,.55); font-size: 15px; max-width: 290px; }
.footer h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; color: rgba(255,255,255,.5); font-family: var(--sans); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer a { color: rgba(255,255,255,.8); font-size: 15px; transition: var(--t); }
.footer a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 14px; color: rgba(255,255,255,.45); }

/* ============================================================
   PÁGINA DE PRODUTO (PDP)
   ============================================================ */
.pdp { padding: 36px 0 90px; }
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 30px; }
.breadcrumb a:hover { color: var(--brand); }
.pdp__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
.gallery__main { aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden; background: var(--surface-2); margin-bottom: 14px; position: sticky; top: 94px; box-shadow: var(--sh); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery__thumb { aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; background: var(--surface-2); cursor: pointer; border: 2px solid transparent; transition: var(--t); }
.gallery__thumb.active { border-color: var(--ink); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__info { padding-top: 4px; }
.pdp__cat { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.pdp__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.pdp__rating span { font-size: 14px; color: var(--muted); }
.pdp__title { font-family: var(--serif); font-size: clamp(30px, 4vw, 46px); line-height: 1.06; margin-bottom: 10px; }
.pdp__headline { font-size: 19px; color: var(--ink-2); margin-bottom: 22px; }
.pdp__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.pdp__price b { font-family: var(--serif); font-weight: 600; font-size: 34px; }
.pdp__price s { font-size: 20px; color: var(--muted); }
.pdp__price .off { background: var(--gold-soft); color: var(--gold); font-weight: 700; font-size: 13px; padding: 4px 11px; border-radius: var(--r-pill); }
.pdp__desc { font-size: 17px; color: var(--ink-2); margin-bottom: 28px; line-height: 1.7; }
.pdp__buy { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.pdp__qtyrow { display: flex; gap: 12px; }
.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line-2); border-radius: var(--r-pill); overflow: hidden; }
.qty-stepper button { width: 46px; height: 52px; background: var(--surface); border: none; font-size: 20px; cursor: pointer; color: var(--ink); transition: var(--t); }
.qty-stepper button:hover { background: var(--surface-2); }
.qty-stepper span { width: 46px; text-align: center; font-weight: 700; }
.pdp__buy .btn { flex: 1; }
.pdp__assurances { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.pdp__assurances div { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); }
.pdp__assurances svg { width: 22px; height: 22px; stroke: var(--brand); flex-shrink: 0; }
.pdp__block { max-width: 760px; margin: 0 auto; }
.pdp__list { list-style: none; display: grid; gap: 12px; }
.pdp__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.pdp__list svg { width: 22px; height: 22px; stroke: var(--brand); flex-shrink: 0; margin-top: 2px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.feature-grid li { padding: 14px 0; border-bottom: 1px solid var(--line); }

.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 12px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; transform: translateY(110%); transition: transform .3s var(--ease); box-shadow: 0 -6px 24px rgba(0,0,0,.06); }
.sticky-buy.show { transform: translateY(0); }
.sticky-buy__name { font-family: var(--sans); font-weight: 700; font-size: 15px; }
.sticky-buy__price { font-size: 14px; color: var(--muted); }
.sticky-buy .btn { flex-shrink: 0; }

/* ---------- Depoimentos ---------- */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; }
.testimonial__stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial__stars svg { width: 17px; height: 17px; fill: var(--star); }
.testimonial__text { font-size: 16px; line-height: 1.65; margin-bottom: 22px; color: var(--ink-2); }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-soft); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--brand); }
.testimonial__name { font-weight: 700; font-size: 15px; }
.testimonial__role { font-size: 12px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--sans); font-weight: 600; font-size: 18px; color: var(--ink); }
.faq__q svg { width: 22px; height: 22px; stroke: var(--brand); flex-shrink: 0; transition: var(--t); }
.faq__item.open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 0 24px; color: var(--ink-2); font-size: 16px; }

/* ---------- Carrinho drawer ---------- */
.cart-overlay { position: fixed; inset: 0; background: rgba(12,10,9,.45); opacity: 0; visibility: hidden; transition: var(--t); z-index: 110; }
.cart-overlay.show { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; width: 420px; max-width: 92vw; height: 100%; background: var(--surface); box-shadow: var(--sh-lg); transform: translateX(100%); transition: transform .35s var(--ease); z-index: 120; display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--line); }
.cart-drawer__head h3 { font-family: var(--serif); font-size: 22px; }
.cart-drawer__close { background: none; border: none; font-size: 28px; line-height: 1; cursor: pointer; color: var(--muted); }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 24px; }
.cart-empty { text-align: center; color: var(--muted); margin-top: 48px; }
.cart-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 70px; height: 70px; border-radius: var(--r-sm); object-fit: cover; background: var(--surface-2); }
.cart-item__info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.cart-item__info strong { font-weight: 700; font-size: 15px; }
.cart-item__info .price { font-size: 13px; color: var(--muted); }
.cart-item__sub { font-weight: 700; }
.qty { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.qty button { width: 28px; height: 28px; border: 1px solid var(--line-2); background: var(--surface); border-radius: 7px; cursor: pointer; font-size: 15px; transition: var(--t); }
.qty button:hover { background: var(--surface-2); }
.cart-drawer__foot { padding: 24px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.cart-total span { font-size: 15px; color: var(--muted); }
.cart-total strong { font-family: var(--serif); font-size: 26px; }
.cart-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 12px; }

/* ---------- Status ---------- */
.status-page { min-height: 72vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; }
.status-card { max-width: 480px; }
.status-icon { width: 80px; height: 80px; margin: 0 auto 26px; border-radius: 50%; background: var(--brand-soft); display: flex; align-items: center; justify-content: center; }
.status-icon svg { width: 40px; height: 40px; stroke: var(--brand); }
.status-card h1 { font-family: var(--serif); font-size: 36px; margin-bottom: 14px; }
.status-card p { color: var(--ink-2); margin-bottom: 32px; font-size: 17px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero__grid, .pdp__grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 480px; margin: 0 auto; }
  .gallery__main { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav, .header__search { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 56px; }
  .hero__meta { gap: 26px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .newsletter { padding: 48px 24px; }
  .newsletter__form { flex-direction: column; }
  .pdp__assurances { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, html { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
