:root {
  --wine: #4C1224;
  --wine-dark: #37101C;
  --wine-soft: #7A3047;
  --rose: #D8B4B8;
  --blush: #EFE5E3;
  --sand: #FAF7F5;
  --sand-deep: #F2E9E7;
  --ink: #161315;
  --muted: #666061;
  --white: #FFFFFF;
  --border: rgba(76, 18, 36, .12);
  --shadow: 0 18px 50px rgba(29, 14, 18, .08);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}
body.modal-open,
body.cart-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.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;
}

.topbar {
  background: var(--wine-dark);
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}
.topbar-inner {
  min-height: 36px;
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,245,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(76,18,36,.08);
}
.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
}
.brand-logo img {
  width: auto;
  height: 68px;
  border-radius: 0;
  box-shadow: none;
}
.desktop-nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.desktop-nav a:hover { color: var(--wine); }
.cart-header-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.cart-count {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--wine);
  color: white;
  font-size: 10px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 11px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  margin: 6px 0;
}
.mobile-menu { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 78px;
  background:
    radial-gradient(circle at 84% 12%, rgba(216,180,184,.24), transparent 22%),
    linear-gradient(180deg, #FBF8F6 0%, #F6F0EE 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251,248,246,.98) 0%, rgba(251,248,246,.95) 36%, rgba(251,248,246,.76) 56%, rgba(251,248,246,.48) 100%),
    url("assets/hero-modelo-rose.webp") right center / clamp(360px, 38vw, 560px) auto no-repeat;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow-light { color: rgba(255,255,255,.72); }
.hero h1,
.section h2,
.modal-content h2,
.cart-header h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.03em;
}
.hero h1 {
  max-width: 700px;
  font-size: clamp(42px, 5vw, 68px);
}
.hero-copy > p {
  max-width: 580px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 15px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.btn:disabled { cursor: not-allowed; opacity: .45; }
.btn-primary { background: var(--wine); color: white; }
.btn-primary:hover:not(:disabled) { background: var(--wine-dark); }
.btn-secondary { background: rgba(255,255,255,.76); border-color: var(--border); }
.btn.full { width: 100%; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.hero-meta div {
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.hero-meta strong {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wine);
}
.hero-meta span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.hero-visual { position: relative; min-height: 640px; }
.hero-image-frame {
  position: absolute;
  inset: 0 30px 0 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--sand-deep);
  box-shadow: var(--shadow);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-note-card {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: 270px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.91);
  border: 1px solid rgba(76,18,36,.08);
  box-shadow: var(--shadow);
}
.hero-note-card small {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-note-card strong { display: block; font-size: 14px; line-height: 1.35; }
.hero-note-card p { margin: 8px 0 0; color: var(--muted); font-size: 12px; }

/* Catálogo começa imediatamente após a hero */
.catalog-section { background: white; padding-bottom: 92px; }
.catalog-toolbar-wrap {
  position: sticky;
  top: 94px;
  z-index: 30;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(76,18,36,.08);
}
.catalog-toolbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.filter-scroll {
  flex: 1;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-scroll::-webkit-scrollbar { display: none; }
.filter-btn {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--border);
  background: var(--sand);
  color: var(--ink);
  border-radius: 999px;
  padding: 0 15px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
}
.filter-btn.active {
  background: var(--wine);
  border-color: var(--wine);
  color: white;
}
.search-box {
  width: 280px;
  flex: 0 0 280px;
  position: relative;
}
.search-box input {
  width: 100%;
  height: 44px;
  padding: 0 38px 0 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  outline: 0;
  color: var(--ink);
  background: var(--sand);
  font-size: 12px;
}
.search-box input:focus { border-color: rgba(76,18,36,.3); }
.search-box span:last-child {
  position: absolute;
  right: 14px;
  top: 8px;
  color: var(--muted);
}
.products-wrap { padding-top: 34px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 18px;
}
.product-card {
  cursor: pointer;
  transition: transform .22s ease;
}
.product-card:hover {
  transform: translateY(-2px);
}
.product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  background: var(--sand-deep);
  box-shadow: 0 10px 28px rgba(29, 14, 18, .06);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .product-image img { transform: scale(1.02); }
.product-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
}
.product-info { padding: 15px 2px 0; }
.product-info-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}
.product-info h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.product-price {
  flex: 0 0 auto;
  color: var(--wine);
  font-weight: 800;
  font-size: 12px;
}
.product-secondary-price {
  display: inline-block;
  margin-top: 5px;
  color: var(--wine-soft);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-info p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.product-link {
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
  color: var(--muted);
}

.section { padding: 92px 0; }
.feature-section { background: #FBF7F6; }
.feature-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
}
.feature-copy,
.feature-steps {
  border-radius: 26px;
  padding: 34px;
}
.feature-copy {
  background: linear-gradient(135deg, var(--wine-dark), var(--wine));
  color: white;
}
.feature-copy h2 {
  max-width: 620px;
  font-size: clamp(32px, 4vw, 52px);
}
.feature-copy p {
  max-width: 580px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}
.text-link {
  display: inline-block;
  margin-top: 22px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.feature-steps {
  background: white;
  border: 1px solid var(--border);
  display: grid;
  gap: 16px;
}
.feature-steps div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.feature-steps div:first-child { border-top: 0; padding-top: 0; }
.feature-steps strong {
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
}
.feature-steps p { margin: 0; color: var(--muted); font-size: 13px; }

.about-section { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-brand-card {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, #611A31, #48111F);
  box-shadow: var(--shadow);
}
.about-brand-card img {
  width: min(100%, 430px);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}
.about-copy h2 {
  max-width: 680px;
  font-size: clamp(30px, 4vw, 52px);
}
.about-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.social-links a {
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(76,18,36,.22);
}

.footer {
  background: #221416;
  color: rgba(255,255,255,.7);
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo img { height: 46px; }
.footer p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Modal do produto */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 24px;
  background: rgba(24,14,16,.64);
  display: none;
  place-items: center;
}
.modal-backdrop.open { display: grid; }
.product-modal {
  position: relative;
  width: min(1020px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  overflow: auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  border-radius: 28px;
  background: #FBF8F6;
  box-shadow: 0 30px 100px rgba(0,0,0,.24);
}
.modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  cursor: pointer;
  font-size: 22px;
}
.modal-image { min-height: 680px; background: var(--sand-deep); }
.modal-image img { width: 100%; height: 100%; object-fit: cover; }
.modal-content { padding: 48px 42px 38px; }
.modal-category {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 9px;
  font-weight: 800;
}
.modal-content h2 { font-size: 34px; }
.modal-price {
  margin: 12px 0 18px;
  color: var(--wine);
  font-size: 17px;
  font-weight: 800;
}
.modal-price small {
  display: block;
  margin-top: 6px;
  color: var(--wine-soft);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.modal-content > p { color: var(--muted); font-size: 13px; }
.variant-group {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.variant-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 13px;
}
.variant-heading strong {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.variant-heading span { color: var(--muted); font-size: 11px; }
.color-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.color-option {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  font-size: 10px;
  text-align: left;
}
.color-option.active {
  border-color: var(--wine);
  box-shadow: inset 0 0 0 1px var(--wine);
}
.color-swatch {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.10);
}
.size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.size-option {
  min-width: 46px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}
.size-option.active {
  background: var(--wine);
  border-color: var(--wine);
  color: white;
}
.availability-note {
  margin: 18px 0 12px !important;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--blush);
  color: var(--muted) !important;
  font-size: 10px !important;
}
.modal-feedback {
  min-height: 22px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
}

/* Carrinho */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(24,14,16,.48);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: min(460px, 100%);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #FBF8F6;
  box-shadow: -24px 0 70px rgba(0,0,0,.18);
  transform: translateX(102%);
  transition: transform .28s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--border);
}
.cart-header .eyebrow { margin-bottom: 4px; }
.cart-header h2 { font-size: 30px; }
.cart-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  font-size: 22px;
}
.cart-items {
  overflow-y: auto;
  padding: 8px 26px 24px;
}
.cart-empty { padding: 50px 0; text-align: center; }
.cart-empty strong { font-size: 14px; }
.cart-empty p { margin: 8px auto 0; max-width: 280px; color: var(--muted); font-size: 12px; }
.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-image {
  height: 118px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--sand-deep);
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-copy { display: grid; align-content: start; }
.cart-item-copy > strong { margin-bottom: 5px; font-size: 12px; }
.cart-item-copy > span { color: var(--muted); font-size: 10px; line-height: 1.5; }
.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.quantity-control > button:not(.remove-item) {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}
.quantity-control > span { min-width: 18px; text-align: center; font-size: 11px; font-weight: 700; }
.remove-item {
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--wine);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
}
.cart-footer {
  padding: 20px 26px 26px;
  border-top: 1px solid var(--border);
  background: white;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 5px;
}
.cart-total-row span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.cart-total-row strong { color: var(--wine); font-size: 17px; }
.cart-note { min-height: 32px; margin: 0 0 14px; color: var(--muted); font-size: 10px; }
.cart-clear {
  width: 100%;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}
.cart-clear:disabled { opacity: .4; cursor: not-allowed; }

.mobile-bottom-bar { display: none; }

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .cart-header-button { margin-left: auto; }
  .mobile-menu {
    padding: 8px 20px 20px;
    border-top: 1px solid var(--border);
    background: #FBF8F6;
  }
  .mobile-menu.open { display: grid; }
  .mobile-menu a,
  .mobile-menu button {
    padding: 11px 0;
    border: 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
    text-align: left;
    font-size: 13px;
    cursor: pointer;
  }
  .mobile-menu > *:last-child { border-bottom: 0; }

  .hero-grid, .feature-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 620px; max-width: 650px; width: 100%; }
  .hero-image-frame { right: 0; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar-inner { justify-content: start; overflow-x: auto; white-space: nowrap; }
  .header-inner { min-height: 82px; }
  .brand-logo img { height: 56px; }
  .cart-header-button { display: none; }
  .hero { padding: 54px 0 56px; }
  .hero h1 { font-size: 40px; }
  .hero-visual { min-height: 500px; }
  .hero-note-card { left: 18px; right: 18px; width: auto; }
  .hero-meta { grid-template-columns: 1fr; }

  .catalog-toolbar-wrap { top: 74px; }
  .catalog-toolbar { min-height: auto; padding-top: 12px; padding-bottom: 12px; display: grid; }
  .search-box { width: 100%; flex-basis: auto; }
  .products-wrap { padding-top: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .product-info-top { display: block; }
  .product-price { display: block; margin-top: 4px; }

  .section { padding: 72px 0; }
  .feature-grid, .about-grid { gap: 22px; }
  .footer-inner { display: grid; justify-items: start; }

  .modal-backdrop { padding: 10px; align-items: end; }
  .product-modal {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: calc(100dvh - 18px);
    border-radius: 24px 24px 0 0;
  }
  .modal-image { min-height: 300px; max-height: 42vh; }
  .modal-content { padding: 26px 20px 24px; }
  .modal-content h2 { font-size: 28px; }
  .color-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .mobile-bottom-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(34,20,22,.94);
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    backdrop-filter: blur(10px);
  }
  .mobile-bottom-bar a,
  .mobile-bottom-bar button {
    min-height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: white;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
  }
  .mobile-bottom-bar button { background: rgba(255,255,255,.12); cursor: pointer; }
  body { padding-bottom: 84px; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 34px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 430px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-info h3 { font-size: 12px; }
  .product-info p { display: none; }
  .about-brand-card { min-height: 320px; }
}

@media (max-width: 720px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(251,248,246,.97) 0%, rgba(251,248,246,.90) 54%, rgba(251,248,246,.80) 100%),
      url("assets/hero-modelo-rose.webp") center top / cover no-repeat;
  }
}
