.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand--logo .brand__image {
  width: min(220px, 54vw);
  height: auto;
}

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

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-red), var(--color-blue));
  font-size: 1rem;
  letter-spacing: 0;
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__name {
  font-size: 0.98rem;
}

.brand__tagline {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.button--primary {
  color: #ffffff;
  background: var(--color-blue);
  box-shadow: 0 12px 24px rgba(0, 63, 130, 0.22);
}

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

.button--ghost {
  color: var(--color-blue);
  background: #ffffff;
  border-color: var(--color-line);
}

.button--red {
  color: #ffffff;
  background: var(--color-red);
}

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

.button--whatsapp {
  color: #ffffff;
  background: #1fa855;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  background: #ffffff;
}

.icon-button span {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.icon-button span::before,
.icon-button span::after {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.icon-button span::before {
  top: -7px;
}

.icon-button span::after {
  top: 7px;
}

.search-box {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: #ffffff;
}

.search-box::before {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 2px solid var(--color-blue);
  border-radius: 50%;
  box-shadow: 6px 6px 0 -4px var(--color-blue);
  content: "";
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--color-ink);
}

.category-card,
.product-card,
.benefit-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.category-card {
  padding: 18px;
}

.category-card__kicker,
.eyebrow {
  color: var(--color-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-card h3,
.product-card h3,
.benefit-card h3 {
  margin: 8px 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.category-card p,
.product-card p,
.benefit-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.product-card {
  display: grid;
  overflow: hidden;
}

.product-card__image {
  display: grid;
  min-height: 180px;
  place-items: center;
  color: var(--color-blue);
  background: linear-gradient(135deg, var(--color-blue-soft), #ffffff 48%, #ffecec);
  font-weight: 900;
}

.product-card__body {
  padding: 16px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0;
}

.price strong {
  color: var(--color-blue);
  font-size: 1.28rem;
}

.price span {
  color: var(--color-muted);
  font-size: 0.86rem;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #ffffff;
  background: #1fa855;
  box-shadow: 0 18px 34px rgba(31, 168, 85, 0.33);
  font-size: 1.35rem;
  font-weight: 900;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.icon-mark {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.social-links svg {
  width: 22px;
  height: 22px;
}

.product-card__meta,
.product-card__features {
  display: grid;
  gap: 6px;
  margin: 10px 0;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.product-card__features {
  padding-left: 18px;
}

.product-card__actions {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

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

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: var(--radius-sm);
  color: var(--color-blue);
  background: var(--color-blue-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.mega-item {
  position: relative;
}

.mega-trigger {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0 12px;
  color: var(--color-muted);
  background: transparent;
  font-weight: 900;
}

.mega-trigger:hover,
.mega-item.is-open .mega-trigger {
  color: var(--color-blue);
  background: var(--color-blue-soft);
}

.mega-panel {
  display: none;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.mega-item.is-open .mega-panel,
.mega-item:focus-within .mega-panel,
.mega-item:hover .mega-panel {
  display: grid;
}

.mega-link {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 230px;
  padding: 8px;
  border-radius: var(--radius-sm);
  font-weight: 900;
}

.mega-link:hover {
  background: var(--color-surface-soft);
}

.mega-link__image {
  display: grid;
  height: 52px;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--color-blue);
  background: linear-gradient(135deg, var(--color-blue-soft), #ffffff 50%, #ffecec);
  font-size: 0.72rem;
}
