:root {
  --purple: #4b005b;
  --purple-2: #6d0879;
  --pink: #e90070;
  --orange: #ff5a18;
  --yellow: #ffca05;
  --blue: #00aeea;
  --ink: #27152d;
  --muted: #6f6173;
  --line: #eadfea;
  --paper: #fffaf5;
  --white: #ffffff;
  --green: #1fae58;
  --shadow: 0 18px 50px rgba(75, 0, 91, .12);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Archivo", sans-serif; font-size: 16px; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
.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; }

.site-header { position: sticky; top: 0; z-index: 30; height: 80px; padding: 10px clamp(18px, 5vw, 72px); display: flex; align-items: center; gap: 34px; background: rgba(255,250,245,.94); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(75,0,91,.09); }
.brand { width: 80px; height: 62px; display: grid; place-items: center; flex: 0 0 auto; }
.brand img { max-width: 100%; max-height: 100%; object-fit: contain; }
nav { display: flex; gap: 28px; margin-right: auto; }
nav a { font-weight: 700; font-size: .92rem; }
nav a:hover { color: var(--pink); }
.cart-button { border: 0; border-radius: 999px; background: var(--purple); color: white; padding: 11px 14px 11px 18px; display: flex; align-items: center; gap: 9px; cursor: pointer; font-weight: 800; }
.cart-count { min-width: 26px; height: 26px; display: grid; place-items: center; border-radius: 999px; background: var(--yellow); color: var(--purple); font-size: .78rem; }

.hero { min-height: 500px; padding: 64px clamp(20px, 6vw, 88px); display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); gap: 56px; align-items: center; overflow: hidden; background: var(--purple); color: white; position: relative; isolation: isolate; }
.hero::before { content: ""; position: absolute; z-index: -1; width: 520px; height: 520px; border-radius: 50%; right: -120px; top: -210px; background: var(--pink); opacity: .84; }
.hero::after { content: ""; position: absolute; z-index: -1; width: 320px; height: 320px; border-radius: 50%; right: 25%; bottom: -245px; background: var(--yellow); }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .09em; font-weight: 900; font-size: .77rem; color: var(--yellow); margin-bottom: 12px; }
.eyebrow.purple { color: var(--purple); }
.hero h1 { max-width: 760px; margin: 0 0 18px; font-size: clamp(2.7rem, 5.5vw, 5.4rem); line-height: .96; letter-spacing: -.06em; }
.hero-copy > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.primary-cta, .secondary-cta { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; padding: 0 22px; font-weight: 900; }
.primary-cta { background: var(--yellow); color: var(--purple); }
.secondary-cta { border: 1px solid rgba(255,255,255,.35); }
.trust-row { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 18px; font-weight: 600; font-size: .9rem; color: rgba(255,255,255,.82); }
.hero-showcase { height: 360px; position: relative; display: grid; place-items: center; }
.showcase-card { width: min(100%, 390px); min-height: 255px; border-radius: 34px; padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(145deg, var(--orange), #ff8c15); box-shadow: 0 34px 80px rgba(0,0,0,.25); transform: rotate(3deg); border: 2px solid rgba(255,255,255,.25); }
.showcase-card::before { content: "&"; position: absolute; font-size: 10rem; font-weight: 900; opacity: .12; top: -16px; right: 25px; }
.showcase-card span { width: fit-content; padding: 7px 10px; border-radius: 8px; background: var(--yellow); color: var(--purple); font-weight: 900; font-size: .72rem; text-transform: uppercase; }
.showcase-card strong { margin-top: 34px; font-size: 2rem; line-height: 1.05; max-width: 320px; }
.showcase-card small { margin-top: 12px; font-weight: 700; }
.showcase-bubble { position: absolute; border-radius: 999px; padding: 12px 16px; color: var(--purple); font-weight: 900; font-size: .82rem; box-shadow: var(--shadow); }
.bubble-one { top: 18px; left: 0; background: white; transform: rotate(-7deg); }
.bubble-two { right: 0; bottom: 22px; background: var(--yellow); transform: rotate(5deg); }

.catalog-section { padding: 82px clamp(18px, 5vw, 72px) 96px; max-width: 1500px; margin: 0 auto; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading h2, .how-section h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1; letter-spacing: -.045em; }
.section-heading p { margin: 13px 0 0; color: var(--muted); line-height: 1.5; }
.search-box { width: min(100%, 330px); min-height: 50px; display: flex; align-items: center; gap: 10px; padding: 0 15px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: 0 8px 24px rgba(75,0,91,.05); }
.search-box span { color: var(--purple); font-weight: 900; font-size: 1.35rem; }
.search-box input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; }
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0 30px; }
.filter { min-height: 42px; padding: 0 17px; border-radius: 999px; border: 1px solid var(--line); color: var(--purple); background: white; font-weight: 800; cursor: pointer; }
.filter.active { color: white; background: var(--purple); border-color: var(--purple); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 23px; background: white; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-image { height: 225px; position: relative; background-color: #fff; background-repeat: no-repeat; background-size: 135% auto; overflow: hidden; border-bottom: 1px solid #f1e9f1; }
.product-image-empty { display: grid; place-items: center; background: linear-gradient(145deg, #fff6cb, #f7dff0); }
.product-placeholder { color: var(--purple); font-size: .82rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.product-category { position: absolute; z-index: 2; left: 13px; top: 13px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--purple); font-size: .7rem; text-transform: uppercase; font-weight: 900; letter-spacing: .05em; }
.product-content { padding: 19px; }
.product-content h3 { margin: 0 0 6px; font-size: 1.07rem; line-height: 1.25; }
.product-meta { color: var(--muted); font-size: .84rem; }
.variant-field { margin-top: 13px; display: grid; gap: 6px; color: var(--ink); font-size: .75rem; font-weight: 800; }
.variant-field select { width: 100%; min-height: 42px; padding: 0 11px; border: 1px solid var(--line); border-radius: 11px; background: white; color: var(--ink); font: inherit; font-weight: 700; cursor: pointer; outline: 0; }
.variant-field select:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(233,0,112,.1); }
.price-row { display: flex; align-items: end; justify-content: space-between; gap: 10px; margin: 18px 0 15px; }
.price-label { display: block; color: var(--muted); font-size: .73rem; margin-bottom: 3px; }
.price { color: var(--purple); font-size: 1.52rem; font-weight: 900; letter-spacing: -.04em; }
.price small { font-size: .72rem; letter-spacing: 0; }
.tier-note { text-align: right; font-size: .72rem; color: var(--pink); font-weight: 800; max-width: 96px; line-height: 1.25; }
.quantity-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 9px; }
.quantity-control { min-height: 46px; display: grid; grid-template-columns: 35px 1fr 35px; align-items: center; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.quantity-control button { height: 100%; border: 0; background: #faf5fa; color: var(--purple); font-weight: 900; cursor: pointer; }
.quantity-control input { width: 100%; border: 0; outline: 0; text-align: center; font-weight: 800; color: var(--ink); -moz-appearance: textfield; }
.quantity-control input::-webkit-outer-spin-button, .quantity-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.add-button { min-height: 46px; border: 0; border-radius: 12px; background: var(--pink); color: white; font-weight: 900; cursor: pointer; }
.add-button:hover { background: #c90060; }
.empty-state { padding: 50px; text-align: center; color: var(--muted); }

.terms-section { margin: 0 clamp(18px, 5vw, 72px) 28px; padding: 50px; border-radius: 30px; background: var(--purple); color: white; }
.terms-heading { max-width: 720px; }
.terms-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.045em; }
.terms-heading p { margin: 14px 0 0; color: rgba(255,255,255,.72); }
.terms-grid { margin-top: 32px; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 14px; }
.term-card { min-height: 190px; padding: 24px; display: flex; gap: 18px; align-items: flex-start; border-radius: 20px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.13); }
.term-card.payment-card { background: var(--yellow); color: var(--purple); border-color: var(--yellow); }
.term-card.delivery-card { background: var(--pink); }
.term-icon { width: 58px; height: 58px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 16px; background: white; color: var(--purple); font-weight: 900; font-size: 1rem; }
.term-icon svg { width: 30px; height: 30px; }
.term-card h3 { margin: 3px 0 11px; font-size: 1.05rem; }
.term-card p { margin: 0; color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.55; }
.payment-card p { color: rgba(75,0,91,.8); }
.term-card p strong { color: inherit; }
.term-card div > span { display: inline-block; margin-top: 13px; font-size: .82rem; font-weight: 900; }
.term-card .free-art-badge { margin: 0 0 10px; padding: 6px 9px; border-radius: 7px; background: var(--yellow); color: var(--purple); font-size: .7rem; letter-spacing: .06em; }

.how-section { margin: 0 clamp(18px, 5vw, 72px) 90px; padding: 54px; border-radius: 30px; background: var(--orange); color: white; display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.steps { list-style: none; display: grid; gap: 14px; margin: 0; padding: 0; }
.steps li { display: flex; gap: 15px; align-items: center; padding: 16px; border-radius: 16px; background: rgba(255,255,255,.12); }
.steps li > span { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); color: var(--purple); font-weight: 900; flex: 0 0 auto; }
.steps strong { font-size: 1rem; }
.steps p { margin: 4px 0 0; color: rgba(255,255,255,.78); font-size: .87rem; }

.site-footer { min-height: 260px; padding: 48px clamp(18px, 5vw, 72px) 28px; display: grid; grid-template-columns: 1.25fr 1fr .8fr 1fr; gap: 38px; align-items: start; background: var(--purple); color: white; }
.site-footer .footer-brand, .site-footer .footer-column { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.site-footer .footer-brand img { width: 94px; height: 76px; object-fit: contain; margin-bottom: 4px; }
.site-footer .footer-brand p { max-width: 270px; margin: 0; color: rgba(255,255,255,.72); font-size: .86rem; line-height: 1.55; }
.site-footer .footer-column strong { margin-bottom: 5px; color: var(--yellow); font-size: .92rem; letter-spacing: .02em; }
.site-footer .footer-column span, .site-footer .footer-column a { color: rgba(255,255,255,.8); font-size: .82rem; line-height: 1.45; }
.site-footer .footer-column a { font-weight: 700; overflow-wrap: anywhere; }
.site-footer .footer-column a:hover { color: var(--yellow); }
.site-footer .footer-services { gap: 12px; }
.site-footer .payment-logos { width: min(100%, 230px); height: auto; object-fit: contain; }
.site-footer .fulfillment-options { display: flex; flex-flow: row wrap; gap: 8px; }
.site-footer .fulfillment-options span { padding: 7px 10px; display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.08); color: white; font-weight: 700; }
.site-footer .fulfillment-options b { font-size: 1rem; }
.site-footer .footer-legal { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); display: flex; flex-wrap: wrap; gap: 8px 18px; color: rgba(255,255,255,.58); font-size: .74rem; }
.site-footer .footer-legal strong { color: rgba(255,255,255,.82); }
.floating-whatsapp { position: fixed; z-index: 45; right: 22px; bottom: 24px; display: flex; align-items: center; gap: 10px; color: white; filter: drop-shadow(0 10px 18px rgba(0,0,0,.22)); }
.floating-whatsapp-label { padding: 10px 14px; border-radius: 999px; background: #1f2937; font-size: .78rem; font-weight: 900; white-space: nowrap; }
.floating-whatsapp-icon { position: relative; width: 58px; height: 58px; display: grid; place-items: center; border: 3px solid white; border-radius: 50%; background: #25d366; color: white; font-size: 1.65rem; font-weight: 900; }
.floating-whatsapp-icon::after { content: ""; position: absolute; right: 2px; bottom: 0; width: 13px; height: 13px; background: #25d366; clip-path: polygon(0 0, 100% 100%, 10% 78%); transform: rotate(8deg); }

.overlay { position: fixed; z-index: 50; inset: 0; background: rgba(25,5,29,.58); backdrop-filter: blur(3px); }
.cart-drawer { position: fixed; z-index: 60; top: 0; right: 0; width: min(100%, 470px); height: 100dvh; padding: 25px; display: flex; flex-direction: column; background: white; transform: translateX(105%); transition: transform .25s ease; box-shadow: -20px 0 60px rgba(0,0,0,.15); }
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: start; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.cart-header h2 { margin: 0; font-size: 2rem; }
.icon-button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--purple); font-size: 1.8rem; cursor: pointer; }
.cart-items { overflow-y: auto; display: grid; gap: 12px; padding: 16px 2px; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 15px; }
.cart-item h3 { margin: 0; font-size: .92rem; }
.cart-item p { margin: 5px 0 0; color: var(--muted); font-size: .75rem; }
.cart-item-total { color: var(--purple); font-weight: 900; }
.cart-item-actions { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; }
.cart-item-actions .quantity-control { width: 120px; min-height: 38px; grid-template-columns: 31px 1fr 31px; }
.remove-button { border: 0; background: transparent; color: #b33333; font-size: .78rem; font-weight: 700; cursor: pointer; }
.cart-empty { margin: auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.cart-empty > span { font-size: 2.5rem; }
.cart-empty strong { margin-top: 14px; }
.cart-empty p { max-width: 260px; color: var(--muted); line-height: 1.5; }
.cart-empty button { border: 0; border-radius: 12px; padding: 12px 18px; background: var(--purple); color: white; font-weight: 800; cursor: pointer; }
.cart-summary { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.summary-line, .summary-total { display: flex; justify-content: space-between; gap: 15px; }
.summary-line { font-size: .82rem; color: var(--muted); }
.summary-total { align-items: end; margin-top: 8px; }
.summary-total strong { color: var(--purple); font-size: 1.6rem; }
.cart-summary > p { margin: 9px 0 14px; color: var(--muted); font-size: .73rem; line-height: 1.4; }
.cart-terms { margin: 0 0 14px; padding: 10px 12px; border-radius: 10px; background: #fff6cb; color: var(--purple); font-size: .72rem; line-height: 1.4; }
.delivery-options { margin: 0 0 12px; padding: 0; border: 0; }
.delivery-options legend { margin-bottom: 7px; color: var(--ink); font-size: .75rem; font-weight: 800; }
.delivery-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.cart-summary .delivery-choice { position: relative; margin: 0; cursor: pointer; }
.delivery-choice input { position: absolute; opacity: 0; pointer-events: none; }
.delivery-choice-content { min-height: 52px; padding: 9px 12px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 2px solid var(--line); border-radius: 12px; background: white; color: var(--ink); transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.delivery-choice-content > span { font-size: 1.25rem; }
.delivery-choice input:checked + .delivery-choice-content { border-color: var(--purple); background: #fff3bf; color: var(--purple); box-shadow: 0 0 0 2px rgba(75,0,91,.08); }
.delivery-choice input:focus-visible + .delivery-choice-content { outline: 3px solid rgba(233,0,112,.25); outline-offset: 2px; }
.delivery-choice:hover .delivery-choice-content { transform: translateY(-1px); }
.cart-summary label { display: block; margin-top: 9px; color: var(--ink); font-size: .75rem; font-weight: 800; }
.cart-summary > label > input { width: 100%; min-height: 43px; margin-top: 5px; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; outline: 0; }
.cart-summary > label > input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(233,0,112,.1); }
.whatsapp-button { width: 100%; min-height: 52px; margin-top: 14px; border: 0; border-radius: 13px; background: var(--green); color: white; font-weight: 900; cursor: pointer; }
.toast { position: fixed; z-index: 80; left: 50%; bottom: 24px; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; padding: 12px 18px; border-radius: 999px; background: var(--purple); color: white; font-weight: 800; font-size: .85rem; transition: .2s ease; box-shadow: var(--shadow); }
.toast.visible { transform: translate(-50%, 0); opacity: 1; }
body.cart-open { overflow: hidden; }

.quote-page { min-height: 100vh; background: linear-gradient(145deg, var(--purple) 0 31%, var(--paper) 31% 100%); }
.quote-header { min-height: 82px; padding: 10px clamp(18px, 5vw, 72px); display: flex; align-items: center; justify-content: space-between; background: var(--purple); color: white; }
.quote-header .brand { width: 80px; }
.back-link { font-size: .9rem; font-weight: 800; }
.quote-shell { width: min(1240px, calc(100% - 36px)); margin: 0 auto; padding: 52px 0 90px; }
.quote-intro { max-width: 790px; color: white; }
.quote-intro h1 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.055em; }
.quote-intro > p { max-width: 650px; margin: 18px 0 0; color: rgba(255,255,255,.78); line-height: 1.6; }
.free-art-callout { width: fit-content; max-width: 720px; margin-top: 25px; padding: 17px 19px; display: flex; gap: 16px; align-items: center; border-radius: 16px; background: var(--yellow); color: var(--purple); box-shadow: var(--shadow); }
.free-art-callout strong { flex: 0 0 auto; font-size: 1.05rem; }
.free-art-callout span { padding-left: 16px; border-left: 1px solid rgba(75,0,91,.25); font-size: .84rem; line-height: 1.45; }
.quote-layout { margin-top: 42px; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr); gap: 24px; align-items: start; }
.form-card, .order-card { border: 1px solid var(--line); border-radius: 25px; background: white; box-shadow: var(--shadow); }
.form-card { padding: clamp(24px, 4vw, 42px); }
.order-card { position: sticky; top: 20px; padding: 28px; }
.form-step { color: var(--pink); font-size: .76rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.form-card h2, .order-card h2 { margin: 7px 0 0; color: var(--purple); font-size: clamp(1.55rem, 3vw, 2.25rem); letter-spacing: -.035em; }
.form-helper { margin: 10px 0 25px; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.hubspot-form { min-height: 320px; }
.form-loading { padding: 30px; border-radius: 14px; background: #faf5fa; color: var(--muted); text-align: center; }
#landing-hubspot-form [class*="virality"],
#landing-hubspot-form [class*="powered-by"],
#landing-hubspot-form a[href*="hubspot.com/products/marketing/forms"] { display: none !important; }
.form-success { margin-top: 22px; padding: 16px; display: flex; gap: 13px; align-items: center; border-radius: 14px; background: #ebfaef; color: #166a35; }
.form-success[hidden] { display: none; }
.form-success p { margin: 3px 0 0; font-size: .84rem; }
.success-icon { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-weight: 900; }
.final-button { margin-top: 14px; display: flex; align-items: center; justify-content: center; text-align: center; }
.final-button[hidden] { display: none; }
.form-fallback { padding: 18px; border-radius: 13px; background: #fff6cb; color: var(--purple); line-height: 1.5; }
.form-fallback a { color: var(--pink); font-weight: 900; text-decoration: underline; }
.order-heading { display: flex; align-items: center; justify-content: space-between; }
.order-heading a { color: var(--pink); font-size: .8rem; font-weight: 800; }
.order-items { display: grid; gap: 12px; margin-top: 24px; }
.order-item { padding-bottom: 12px; display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); }
.order-item div { display: flex; flex-direction: column; gap: 4px; }
.order-item strong { font-size: .88rem; }
.order-item span { color: var(--muted); font-size: .76rem; }
.order-item b { color: var(--purple); font-size: .87rem; }
.order-total { margin-top: 18px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.order-total span { color: var(--muted); font-size: .8rem; }
.order-total strong { color: var(--purple); font-size: 1.65rem; }
.order-note { margin: 13px 0 18px; color: var(--muted); font-size: .75rem; line-height: 1.45; }
.order-empty { margin-top: 22px; padding: 17px; border-radius: 13px; background: #faf5fa; color: var(--muted); font-size: .85rem; }
.order-empty a { color: var(--pink); font-weight: 800; }
.quote-conditions { margin: 0; padding: 18px 0 0; display: grid; gap: 9px; border-top: 1px solid var(--line); list-style: none; color: var(--muted); font-size: .8rem; line-height: 1.4; }
.quote-conditions strong { color: var(--ink); }

@media (max-width: 1120px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero { grid-template-columns: 1fr .8fr; }
}
@media (max-width: 850px) {
  nav { display: none; }
  .site-header { height: 72px; }
  .brand { width: 66px; height: 52px; margin-right: auto; }
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-showcase { height: 300px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .how-section { grid-template-columns: 1fr; padding: 36px; }
  .terms-grid { grid-template-columns: 1fr; }
  footer { flex-wrap: wrap; }
  .quote-page { background: linear-gradient(145deg, var(--purple) 0 25%, var(--paper) 25% 100%); }
  .quote-layout { grid-template-columns: 1fr; }
  .order-card { position: static; grid-row: 1; }
}
@media (max-width: 600px) {
  .cart-button > span:nth-child(2) { display: none; }
  .hero { min-height: auto; gap: 20px; }
  .hero h1 { font-size: 3rem; }
  .hero-showcase { height: 260px; }
  .showcase-card { min-height: 220px; padding: 26px; }
  .showcase-card strong { font-size: 1.6rem; }
  .section-heading { align-items: stretch; flex-direction: column; }
  .search-box { width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image { height: 260px; background-size: 135% auto; }
  .catalog-section { padding-top: 60px; }
  .terms-section { padding: 32px 20px; }
  .how-section { padding: 28px 20px; margin-bottom: 40px; }
  footer { align-items: flex-start; flex-direction: column; }
  footer div { margin-right: 0; }
  .cart-drawer { padding: 20px; }
  .quote-shell { padding-top: 34px; }
  .quote-intro h1 { font-size: 2.65rem; }
  .free-art-callout { align-items: flex-start; flex-direction: column; gap: 8px; }
  .free-art-callout span { padding: 0; border: 0; }
  .form-card, .order-card { padding: 22px; border-radius: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Landing page de captação */
.landing-page { min-height: 100vh; overflow-x: hidden; background: #fffaf0; color: var(--ink); }
.landing-header { min-height: 92px; padding: 10px clamp(20px, 6vw, 90px); display: flex; align-items: center; justify-content: space-between; background: var(--purple); }
.landing-header > img { width: 92px; height: 72px; object-fit: contain; }
.landing-header > a { min-height: 46px; padding: 0 20px; display: inline-flex; align-items: center; border: 2px solid var(--yellow); border-radius: 999px; color: var(--yellow); font-weight: 900; }
.landing-hero { min-height: 690px; padding: 66px clamp(20px, 6vw, 90px) 72px; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(34px, 6vw, 96px); align-items: center; background: radial-gradient(circle at 85% 10%, rgba(255,202,5,.28), transparent 31%), linear-gradient(135deg, #fffaf0 0 57%, #f8e8f4 57% 100%); }
.landing-copy { max-width: 720px; }
.landing-kicker { display: inline-block; color: var(--pink); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.landing-copy h1 { max-width: 700px; margin: 17px 0 22px; font-size: clamp(3.1rem, 6.3vw, 6.7rem); line-height: .88; letter-spacing: -.07em; color: var(--purple); }
.landing-copy h1 em { display: block; color: var(--pink); font-style: normal; }
.landing-copy > p { max-width: 620px; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.landing-benefits { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 10px; }
.landing-benefits span { padding: 9px 12px; border-radius: 999px; background: white; color: var(--purple); font-size: .77rem; font-weight: 800; box-shadow: 0 7px 22px rgba(75,0,91,.07); }
.landing-primary { width: fit-content; min-height: 58px; margin-top: 30px; padding: 0 22px; display: inline-flex; align-items: center; gap: 16px; border-radius: 14px; background: var(--purple); color: white; font-weight: 900; box-shadow: 0 16px 35px rgba(75,0,91,.22); }
.landing-primary span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--purple); }
.landing-showcase { min-height: 520px; position: relative; display: grid; place-items: center; }
.showcase-orbit { position: absolute; width: min(430px, 84vw); aspect-ratio: 1; border-radius: 50%; background: var(--yellow); box-shadow: 0 28px 60px rgba(75,0,91,.15); }
.showcase-orbit::before, .showcase-orbit::after { content: ""; position: absolute; border-radius: 50%; border: 2px solid rgba(75,0,91,.17); }
.showcase-orbit::before { inset: 25px; }
.showcase-orbit::after { inset: 55px; }
.showcase-product { position: absolute; z-index: 2; object-fit: contain; filter: drop-shadow(0 24px 22px rgba(35,0,42,.23)); }
.showcase-product-main { width: 220px; height: 390px; z-index: 3; }
.showcase-product-left { width: 230px; height: 250px; left: 0; bottom: 18px; transform: rotate(-8deg); }
.showcase-product-right { width: 200px; height: 320px; right: 0; bottom: 2px; transform: rotate(7deg); }
.showcase-sticker { position: absolute; z-index: 4; right: 4%; top: 2%; width: 155px; height: 155px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--pink); color: white; font-size: .8rem; line-height: 1.25; transform: rotate(9deg); box-shadow: 0 15px 30px rgba(233,0,112,.25); }
.showcase-sticker strong { color: var(--yellow); font-size: .95rem; }
.landing-proof { padding: 26px clamp(20px, 6vw, 90px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--purple); }
.landing-proof article { min-height: 108px; padding: 18px clamp(16px, 3vw, 38px); display: flex; align-items: center; gap: 17px; border-right: 1px solid rgba(255,255,255,.18); color: white; }
.landing-proof article:last-child { border-right: 0; }
.landing-proof article > span { color: var(--yellow); font-size: 1.8rem; font-weight: 900; }
.landing-proof strong { font-size: 1rem; }
.landing-proof p { margin: 4px 0 0; color: rgba(255,255,255,.68); font-size: .82rem; line-height: 1.4; }
.landing-form-section { padding: 100px clamp(20px, 7vw, 110px); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(42px, 7vw, 110px); align-items: start; background: var(--orange); }
.landing-form-copy { position: sticky; top: 40px; color: white; }
.landing-form-copy .landing-kicker { color: var(--yellow); }
.landing-form-copy h2 { max-width: 620px; margin: 16px 0 20px; font-size: clamp(2.5rem, 5vw, 5rem); line-height: .96; letter-spacing: -.055em; }
.landing-form-copy > p { max-width: 580px; color: rgba(255,255,255,.78); line-height: 1.65; }
.landing-contact-note { max-width: 520px; margin-top: 28px; padding: 15px; display: flex; gap: 12px; align-items: center; border-radius: 14px; background: rgba(255,255,255,.12); }
.landing-contact-note p { margin: 0; color: white; font-size: .8rem; line-height: 1.45; }
.landing-form-card { min-height: 390px; padding: clamp(24px, 4vw, 44px); border-radius: 26px; background: white; box-shadow: 0 28px 65px rgba(89,26,0,.2); }
.landing-form-card .hs-form-field { margin-bottom: 14px; }
.landing-form-card .hs-form-field > label { display: block; margin-bottom: 6px; color: var(--ink); font-size: .8rem; font-weight: 800; }
.landing-form-card .hs-input { width: 100% !important; min-height: 48px; padding: 0 13px; border: 1px solid var(--line); border-radius: 11px; font: inherit; }
.landing-form-card textarea.hs-input { min-height: 95px; padding-top: 12px; }
.landing-form-card .hs-button { width: 100%; min-height: 54px; border: 0; border-radius: 12px; background: var(--pink); color: white; font: inherit; font-weight: 900; cursor: pointer; }
.landing-form-card .inputs-list { margin: 0; padding: 0; list-style: none; }
.landing-form-card .hs-error-msgs { margin: 5px 0; padding: 0; list-style: none; color: #b33333; font-size: .72rem; }
.landing-form-card .field-validation-error { display: block; margin: 6px 0 0; color: #b33333; font-size: .72rem; font-weight: 700; }
.landing-form-card .hs-input.input-invalid { border-color: #b33333; box-shadow: 0 0 0 3px rgba(179,51,51,.1); }
.landing-form-success { text-align: center; padding: 34px 12px; }
.landing-form-success > span { width: 70px; height: 70px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: #19b85b; color: white; font-size: 2rem; font-weight: 900; }
.landing-form-success h3 { margin: 0; color: var(--purple); font-size: 1.7rem; }
.landing-form-success p { color: var(--muted); }
.landing-form-success a { min-height: 50px; padding: 0 20px; display: inline-flex; align-items: center; border-radius: 12px; background: var(--purple); color: white; font-weight: 900; }
.landing-form-fallback { padding: 22px; border-radius: 14px; background: #fff6cb; color: var(--purple); line-height: 1.55; }
.landing-form-fallback a { text-decoration: underline; font-weight: 900; }
.landing-footer { background: #26002e; }
@media (max-width: 980px) {
  .landing-hero { grid-template-columns: 1fr; padding-top: 50px; }
  .landing-copy { max-width: 790px; }
  .landing-showcase { min-height: 480px; }
  .landing-form-section { grid-template-columns: 1fr; }
  .landing-form-copy { position: static; }
}
@media (max-width: 680px) {
  .landing-header { min-height: 78px; }
  .landing-header > img { width: 72px; height: 58px; }
  .landing-header > a { min-height: 40px; padding: 0 13px; font-size: .72rem; }
  .landing-hero { min-height: auto; padding: 42px 20px 56px; }
  .landing-copy h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .landing-showcase { min-height: 390px; }
  .showcase-orbit { width: 320px; }
  .showcase-product-main { width: 150px; height: 300px; }
  .showcase-product-left { width: 145px; height: 180px; left: -8px; }
  .showcase-product-right { width: 130px; height: 230px; right: -5px; }
  .showcase-sticker { width: 112px; height: 112px; right: 0; font-size: .65rem; }
  .showcase-sticker strong { font-size: .72rem; }
  .landing-proof { grid-template-columns: 1fr; padding-top: 14px; padding-bottom: 14px; }
  .landing-proof article { min-height: 86px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .landing-proof article:last-child { border-bottom: 0; }
  .landing-form-section { padding: 70px 20px; }
  .landing-form-card { padding: 22px; border-radius: 20px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

/* Página de links para bio */
.links-page { min-height: 100dvh; background: radial-gradient(circle at 18% 10%, rgba(255,202,5,.35), transparent 28%), radial-gradient(circle at 88% 85%, rgba(233,0,112,.32), transparent 31%), linear-gradient(145deg, #35003f, #65006e 58%, #3b0048); color: white; }
.links-page::before { content: ""; position: fixed; inset: 0; pointer-events: none; opacity: .12; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 22px 22px; }
.links-shell { position: relative; z-index: 1; min-height: 100dvh; padding: 34px 18px; display: grid; place-items: center; }
.links-card { width: min(100%, 570px); padding: 34px 34px 26px; text-align: center; border: 1px solid rgba(255,255,255,.18); border-radius: 32px; background: rgba(33,0,40,.64); box-shadow: 0 28px 70px rgba(15,0,19,.38); backdrop-filter: blur(18px); }
.links-logo-wrap { width: 126px; height: 126px; margin: 0 auto 10px; display: grid; place-items: center; border: 4px solid white; border-radius: 50%; background: white; box-shadow: 0 12px 32px rgba(0,0,0,.24); overflow: hidden; }
.links-logo-wrap img { width: 116px; height: 116px; object-fit: contain; }
.links-handle { margin: 12px 0 14px; color: var(--yellow); font-size: .88rem; font-weight: 800; letter-spacing: .05em; }
.links-card h1 { margin: 0 auto 28px; font-size: clamp(1.65rem, 5vw, 2.35rem); line-height: 1.08; letter-spacing: -.035em; }
.links-actions { display: grid; gap: 14px; }
.link-action { min-height: 82px; padding: 14px 18px; display: grid; grid-template-columns: 48px 1fr 20px; gap: 14px; align-items: center; text-align: left; border: 2px solid transparent; border-radius: 19px; transition: transform .18s ease, box-shadow .18s ease; }
.link-action:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,.2); }
.link-action:focus-visible { outline: 3px solid white; outline-offset: 3px; }
.catalog-link { background: var(--yellow); color: var(--purple); }
.whatsapp-link { background: #25d366; color: #092e18; }
.link-action-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.7); }
.link-action-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-link .link-action-icon svg path:last-child { fill: currentColor; stroke: none; }
.link-action > span:nth-child(2) { display: flex; flex-direction: column; gap: 4px; }
.link-action strong { font-size: .98rem; letter-spacing: .015em; }
.link-action small { font-size: .77rem; opacity: .72; }
.link-action > b { font-size: 1.7rem; }
.links-hours { margin: 24px 0 17px; color: rgba(255,255,255,.74); font-size: .79rem; }
.links-legal { padding-top: 17px; display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 14px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.52); font-size: .67rem; }
@media (max-width: 520px) {
  .links-shell { padding: 18px 12px; }
  .links-card { padding: 28px 16px 22px; border-radius: 25px; }
  .links-logo-wrap { width: 108px; height: 108px; }
  .links-logo-wrap img { width: 99px; height: 99px; }
  .link-action { min-height: 78px; padding: 12px; grid-template-columns: 44px 1fr 18px; gap: 11px; }
  .link-action-icon { width: 44px; height: 44px; }
}
@media (max-width: 680px) {
  .site-footer { grid-template-columns: 1fr; gap: 28px; padding-top: 38px; padding-bottom: 110px; }
  .site-footer .footer-legal { grid-column: 1; flex-direction: column; }
  .floating-whatsapp { right: 15px; bottom: 16px; }
  .floating-whatsapp-label { display: none; }
  .floating-whatsapp-icon { width: 56px; height: 56px; }
}

.promo-offer { margin: 0 0 14px; padding: 12px; border-radius: 12px; background: var(--purple); color: #fff; font-size: .875rem; line-height: 1.4; }
.promo-offer strong, .promo-offer span { display: block; }
