:root {
  --color-primary: #f5c400;
  --color-primary-dark: #d9ad00;
  --color-text: #111111;
  --color-muted: #5b6168;
  --color-background: #ffffff;
  --color-soft: #f4f5f6;
  --color-border: #dde1e5;
  --color-success: #16794a;
  --color-warning: #b56a00;
  --color-danger: #b42318;
  --color-whatsapp: #1f9d55;
  --font-heading: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 10px 24px rgba(17, 17, 17, 0.08);
  --shadow-md: 0 18px 44px rgba(17, 17, 17, 0.14);
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-background);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid #1473e6;
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.15rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.section--soft {
  background: var(--color-soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: #6f5700;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--color-primary);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #111111;
  background: var(--color-primary);
}

.button--primary:hover {
  background: var(--color-primary-dark);
}

.button--dark {
  color: #ffffff;
  background: #111111;
}

.button--dark:hover {
  background: #2b2b2b;
}

.button--outline-dark {
  border-color: #111111;
  color: #111111;
  background: transparent;
}

.button--outline-dark:hover {
  background: rgba(17, 17, 17, 0.06);
}

.button--disabled {
  color: #6b6f74;
  background: #e8eaec;
  cursor: not-allowed;
}

.button--disabled:hover {
  transform: none;
}

.announcement {
  background: #111111;
  color: #ffffff;
  font-size: 0.78rem;
}

.announcement__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--color-border);
  backdrop-filter: blur(12px);
}

.header__main {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px 10px 3px;
  color: #111111;
  background: var(--color-primary);
  font-size: 1.25rem;
  transform: skew(-5deg);
}

.brand__name {
  font-size: 1.15rem;
}

.header-search {
  display: flex;
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  overflow: hidden;
}

.header-search:focus-within {
  border-color: #1473e6;
  box-shadow: 0 0 0 3px rgba(20, 115, 230, 0.18);
}

.header-search input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0.65rem 0.9rem;
  border: 0;
  outline: 0;
}

.header-search button {
  width: 48px;
  color: #111111;
  background: var(--color-primary);
  cursor: pointer;
  font-size: 1.3rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-link,
.quote-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.header-link--whatsapp {
  color: #ffffff;
  background: var(--color-whatsapp);
}

.quote-trigger {
  color: #ffffff;
  background: #111111;
}

.quote-count {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  margin-left: 0.45rem;
  place-items: center;
  border-radius: 999px;
  color: #111111;
  background: var(--color-primary);
  font-size: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: #111111;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #ffffff;
}

.main-nav {
  border-top: 1px solid var(--color-border);
}

.main-nav__inner {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding-block: 0.8rem;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--color-primary);
  content: "";
  transition: transform var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(245, 196, 0, 0.24), transparent 28%),
    linear-gradient(180deg, #ffffff, #fafafa);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -120px;
  width: 320px;
  height: 320px;
  border: 56px solid rgba(245, 196, 0, 0.14);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 1.8rem;
  color: var(--color-muted);
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  color: #393d42;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero__checks li::before,
.check-list li::before {
  margin-right: 0.45rem;
  color: var(--color-success);
  content: "✓";
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  padding: 1.25rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: #111111;
  box-shadow: var(--shadow-md);
}

.hero-visual::before {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--color-primary);
  content: "";
}

.hero-visual__grid {
  position: relative;
  z-index: 1;
  display: grid;
  height: 390px;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.visual-card {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  border-radius: 18px;
  color: #ffffff;
  background:
    linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.8)),
    linear-gradient(135deg, #4b4f54, #1f2022);
  overflow: hidden;
}

.visual-card:nth-child(2),
.visual-card:nth-child(3) {
  transform: translateY(22px);
}

.visual-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 0.7rem;
  place-items: center;
  border-radius: 50%;
  color: #111111;
  background: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
}

.visual-card strong {
  font-family: var(--font-heading);
}

.hero-visual__note {
  position: absolute;
  right: 1.25rem;
  bottom: 0.85rem;
  left: 1.25rem;
  z-index: 2;
  margin: 0;
  color: #c7c7c7;
  font-size: 0.72rem;
  text-align: center;
}

.section-heading {
  display: grid;
  margin-bottom: 2.4rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 2rem;
}

.section-heading > p {
  max-width: 600px;
  margin-bottom: 0.3rem;
  color: var(--color-muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.category-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: #b9bdc1;
  box-shadow: var(--shadow-sm);
}

.category-card__visual {
  display: grid;
  min-height: 180px;
  place-items: center;
  color: #111111;
  background:
    linear-gradient(135deg, rgba(245, 196, 0, 0.96), rgba(245, 196, 0, 0.55)),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(17, 17, 17, 0.05) 12px, rgba(17, 17, 17, 0.05) 24px);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
}

.category-card__visual--epp {
  background:
    linear-gradient(135deg, #222222, #545454),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(245, 196, 0, 0.1) 12px, rgba(245, 196, 0, 0.1) 24px);
  color: var(--color-primary);
}

.category-card__visual--tools {
  background:
    linear-gradient(135deg, #f4f5f6, #cfd4d8),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(17, 17, 17, 0.05) 12px, rgba(17, 17, 17, 0.05) 24px);
}

.category-card__visual--build {
  background:
    linear-gradient(135deg, #d8d3c7, #9c9587),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(17, 17, 17, 0.05) 12px, rgba(17, 17, 17, 0.05) 24px);
}

.category-card__body {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 1.25rem;
}

.category-card__body h3 {
  margin-bottom: 0.65rem;
}

.category-card__body p {
  margin-bottom: 1rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.category-card__body span {
  margin-top: auto;
  color: #7a6000;
  font-weight: 800;
}

.benefits {
  padding-block: 2rem;
  color: #ffffff;
  background: #111111;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefits article {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border-right: 1px solid #353535;
}

.benefits article:last-child {
  border-right: 0;
}

.benefits article > span {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
}

.benefits h2 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.benefits p {
  margin-bottom: 0;
  color: #bfc2c5;
  font-size: 0.82rem;
}

.section-heading--catalog {
  margin-bottom: 1.8rem;
}

.catalog-toolbar {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-pill {
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 700;
}

.filter-pill.is-active {
  border-color: #111111;
  color: #ffffff;
  background: #111111;
}

.catalog-status {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
}

.product-card[hidden] {
  display: none;
}

.product-card__image {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: #777d82;
  background:
    linear-gradient(135deg, #f2f3f4, #e2e5e7);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card__body {
  padding: 1.15rem;
}

.product-card__category {
  margin-bottom: 0.35rem;
  color: #7a6000;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-card__body h3 {
  min-height: 2.7em;
  margin-bottom: 0.4rem;
}

.product-card__meta {
  margin-bottom: 0.85rem;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.product-card__price {
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
}

.stock {
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.stock--pending {
  color: var(--color-warning);
}

.product-card .button {
  width: 100%;
}

.catalog-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #ffffff;
  color: var(--color-muted);
}

.catalog-note strong {
  color: var(--color-text);
}

.steps {
  color: #ffffff;
  background: #111111;
}

.steps__heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.steps__heading > p:last-child {
  color: #bfc2c5;
}

.steps__grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
}

.steps__grid li {
  padding: 1.5rem;
  border: 1px solid #343434;
  border-radius: var(--radius-md);
  background: #191919;
}

.steps__grid li > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 2rem;
  place-items: center;
  border-radius: 50%;
  color: #111111;
  background: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 800;
}

.steps__grid h3 {
  margin-bottom: 0.6rem;
}

.steps__grid p {
  margin-bottom: 0;
  color: #bfc2c5;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.audience-grid article {
  padding: 1.35rem;
  border-top: 4px solid var(--color-primary);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--color-soft);
}

.audience-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 1.2rem;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: #111111;
  font-family: var(--font-heading);
  font-weight: 800;
}

.audience-grid p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.delivery {
  background: linear-gradient(180deg, #ffffff, #fff9db);
}

.delivery__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.delivery__visual {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  border-radius: 24px;
  color: #ffffff;
  background:
    linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.92)),
    repeating-linear-gradient(135deg, #404348 0 22px, #36393d 22px 44px);
  box-shadow: var(--shadow-md);
}

.delivery__visual span {
  margin-bottom: 0.4rem;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.delivery__visual strong {
  max-width: 360px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.delivery__grid > div:last-child > p {
  color: var(--color-muted);
}

.check-list {
  margin: 1.4rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin-bottom: 0.6rem;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(2rem, 7vw, 6rem);
}

.faq__grid > div:first-child > p:last-child {
  color: var(--color-muted);
}

.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__item:first-child {
  border-top: 1px solid var(--color-border);
}

.accordion h3 {
  margin: 0;
}

.accordion button {
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.accordion button span {
  color: #7a6000;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  transition: transform var(--transition);
}

.accordion button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.accordion__panel {
  padding: 0 2rem 1rem 0;
  color: var(--color-muted);
}

.final-cta {
  padding-block: 3rem;
  background: var(--color-primary);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.final-cta__inner > div:first-child {
  max-width: 750px;
}

.final-cta h2 {
  margin-bottom: 0.65rem;
}

.final-cta p {
  margin-bottom: 0;
}

.final-cta__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.75rem;
}

.site-footer {
  padding-top: 4rem;
  color: #ffffff;
  background: #111111;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2rem;
}

.brand--footer {
  margin-bottom: 1rem;
}

.footer__grid > div:first-child p {
  max-width: 400px;
  color: #bfc2c5;
}

.footer__grid h2 {
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer__grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__grid li {
  margin-bottom: 0.55rem;
}

.footer__grid a:hover {
  color: var(--color-primary);
}

.footer__grid address {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: #bfc2c5;
  font-style: normal;
}

.footer__bottom {
  display: flex;
  margin-top: 3rem;
  padding-block: 1.25rem 5.5rem;
  border-top: 1px solid #323232;
  justify-content: space-between;
  gap: 1.5rem;
  color: #9ba0a5;
  font-size: 0.78rem;
}

.footer__bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 1.1rem;
  bottom: 1.1rem;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: var(--color-whatsapp);
  box-shadow: var(--shadow-md);
  font-weight: 800;
}

.drawer-backdrop {
  position: fixed;
  z-index: 299;
  inset: 0;
  background: rgba(17, 17, 17, 0.62);
}

.quote-drawer {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100dvh;
  transform: translateX(105%);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease;
}

.quote-drawer.is-open {
  transform: translateX(0);
}

.quote-drawer__header {
  display: flex;
  padding: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  justify-content: space-between;
}

.quote-drawer__header h2 {
  margin: 0;
  font-size: 1.45rem;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-soft);
  cursor: pointer;
  font-size: 1.6rem;
}

.quote-drawer__body {
  height: calc(100dvh - 96px);
  padding: 1.25rem;
  overflow-y: auto;
}

.quote-empty {
  margin-bottom: 1.3rem;
  padding: 1rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-soft);
}

.quote-empty p {
  margin: 0.4rem 0 0;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.quote-drawer form {
  display: grid;
  gap: 0.45rem;
}

.quote-drawer label {
  margin-top: 0.55rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.quote-drawer label span {
  color: var(--color-muted);
  font-weight: 400;
}

.quote-drawer input,
.quote-drawer select {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
}

.quote-drawer form .button {
  margin-top: 1rem;
}

.form-note {
  color: var(--color-muted);
  font-size: 0.76rem;
}

.mobile-bar {
  display: none;
}

@media (max-width: 1100px) {
  .header__main {
    grid-template-columns: auto 1fr auto;
  }

  .header-link--whatsapp {
    display: none;
  }

  .category-grid,
  .product-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits article:nth-child(2) {
    border-right: 0;
  }

  .benefits article:nth-child(-n + 2) {
    border-bottom: 1px solid #353535;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 90px;
  }

  .announcement {
    display: none;
  }

  .header__main {
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
    gap: 0.7rem;
  }

  .header-search {
    position: absolute;
    top: 76px;
    right: 1rem;
    left: 1rem;
    display: none;
    box-shadow: var(--shadow-md);
  }

  .header-search.is-open {
    display: flex;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .quote-trigger {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    border-top: 1px solid var(--color-border);
    background: #ffffff;
    box-shadow: var(--shadow-md);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav__inner {
    display: grid;
    min-height: auto;
    gap: 0;
    padding-block: 0.5rem 1rem;
  }

  .main-nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero__grid,
  .delivery__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-visual__grid {
    height: 340px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .steps__grid {
    grid-template-columns: 1fr;
  }

  .steps__grid li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
  }

  .steps__grid li > span {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-bar {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 62px;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -6px 24px rgba(17, 17, 17, 0.1);
  }

  .mobile-bar a,
  .mobile-bar button {
    display: grid;
    place-items: center;
    background: transparent;
    color: #111111;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 74px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .section {
    padding-block: 4.2rem;
  }

  .brand__name {
    font-size: 1rem;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .hero__actions,
  .final-cta__actions {
    display: grid;
    width: 100%;
  }

  .hero__actions .button,
  .final-cta__actions .button {
    width: 100%;
  }

  .hero__checks {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 350px;
    padding: 0.9rem;
    border-radius: 20px;
  }

  .hero-visual__grid {
    height: 290px;
    gap: 0.6rem;
  }

  .visual-card {
    min-height: 120px;
    padding: 0.8rem;
  }

  .visual-card__icon {
    width: 40px;
    height: 40px;
  }

  .category-grid,
  .product-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .category-card__visual {
    min-height: 128px;
    font-size: 1.4rem;
  }

  .category-card__body,
  .product-card__body,
  .audience-grid article {
    padding: 0.85rem;
  }

  .category-card__body p {
    display: none;
  }

  .category-card__body h3,
  .product-card__body h3 {
    font-size: 0.98rem;
  }

  .product-card__image {
    min-height: 150px;
    padding: 1rem;
    text-align: center;
  }

  .product-card__price {
    font-size: 1.1rem;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefits article {
    border-right: 0;
    border-bottom: 1px solid #353535;
  }

  .benefits article:last-child {
    border-bottom: 0;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-pills {
    width: 100%;
    flex-wrap: nowrap;
    padding-bottom: 0.35rem;
    overflow-x: auto;
  }

  .filter-pill {
    flex: 0 0 auto;
  }

  .delivery__visual {
    min-height: 300px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .brand__name {
    display: none;
  }

  .category-grid,
  .product-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .category-card__body p {
    display: block;
  }
}

@media (min-width: 1600px) {
  :root {
    --container: 1320px;
  }

  .hero__grid {
    min-height: 630px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* === HERO V2: video de fondo + slider de productos calados === */
.hero--video {
  position: relative;
  overflow: hidden;
  min-height: clamp(680px, 90vh, 920px);
  padding-block: clamp(5rem, 8vw, 7rem);
  color: #ffffff;
  background: #111111;
}

.hero-media,
.hero-media__video,
.hero-media__overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-media__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background:
    linear-gradient(135deg, #35393d, #17191b);
}

.hero-media__overlay {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.84) 0%, rgba(17, 17, 17, 0.68) 40%, rgba(17, 17, 17, 0.55) 100%),
    radial-gradient(circle at 85% 20%, rgba(245, 196, 0, 0.32), transparent 22%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.55));
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(760px, 100%);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.eyebrow--hero {
  color: var(--color-primary);
}

.hero--video h1,
.hero--video h2,
.hero--video h3 {
  color: #ffffff;
}

.hero--video .hero__lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.36);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero__checks--light {
  color: rgba(255, 255, 255, 0.88);
}

.hero__checks--light li::before {
  color: var(--color-primary);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero-badges span {
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-slider-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.34);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.hero-slider-panel::before {
  position: absolute;
  top: -18px;
  right: 28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(245, 196, 0, 0.18);
  content: "";
  filter: blur(6px);
}

.hero-slider-panel__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.hero-slider-panel__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slider-panel__top h2 {
  margin: 0;
  font-size: 1.4rem;
}

.hero-slider__controls {
  display: flex;
  gap: 0.5rem;
}

.hero-slider__button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: background var(--transition), transform var(--transition);
}

.hero-slider__button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.hero-slider {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.9rem;
  padding-bottom: 0.3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hero-slider::-webkit-scrollbar {
  display: none;
}

.hero-product-card {
  flex: 0 0 100%;
  display: grid;
  min-height: 430px;
  align-content: start;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  scroll-snap-align: start;
}

.hero-product-card__image {
  display: grid;
  min-height: 250px;
  place-items: center;
  padding: 0.5rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.hero-product-card__image img {
  width: min(100%, 220px);
  height: auto;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.38));
}

.hero-product-card__content {
  padding-top: 0.65rem;
}

.hero-product-card__tag {
  margin-bottom: 0.4rem;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-product-card__content h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.hero-product-card__content p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.hero-slider-panel__note {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

@media (max-width: 860px) {
  .hero--video {
    min-height: auto;
    padding-top: 6rem;
  }

  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero-slider-panel {
    padding: 1rem;
  }

  .hero-product-card {
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  .hero--video {
    padding-block: 4.5rem 4rem;
  }

  .hero-badges {
    gap: 0.45rem;
  }

  .hero-badges span {
    padding: 0.42rem 0.72rem;
    font-size: 0.76rem;
  }

  .hero-slider-panel__top {
    align-items: start;
    flex-direction: column;
  }

  .hero-slider__controls {
    align-self: flex-end;
  }

  .hero-product-card {
    min-height: 350px;
    padding: 0.85rem;
  }

  .hero-product-card__image {
    min-height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media__video {
    animation: none !important;
  }
}


/* === Ajustes V3 con recursos suministrados === */
.hero-media__video {
  filter: saturate(0.9) contrast(1.04);
}

.hero-product-card--featured .hero-product-card__image {
  min-height: 285px;
}

.hero-product-card--featured .hero-product-card__image img {
  width: min(100%, 290px);
  max-height: 285px;
  object-fit: contain;
}

@media (max-width: 620px) {
  .hero-product-card--featured .hero-product-card__image {
    min-height: 225px;
  }

  .hero-product-card--featured .hero-product-card__image img {
    width: min(100%, 230px);
    max-height: 225px;
  }
}
