@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@600;700&display=swap');

:root {
  --navy: #061b38;
  --blue: #0b5ed7;
  --blue-bright: #2c7df0;
  --blue-pale: #eaf3ff;
  --black: #080b10;
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #edf1f7;
  --gray-300: #c9d2df;
  --gray-500: #687385;
  --gray-700: #323b49;
  --danger: #c0392b;
  --radius: 20px;
  --shadow: 0 18px 45px rgba(6, 27, 56, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.no-scroll { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(6, 27, 56, 0.08);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand img { width: 42px; height: 42px; }
.brand span { font-family: Oswald, sans-serif; font-size: 1.35rem; letter-spacing: 0.04em; }
.desktop-nav { display: flex; gap: 28px; color: var(--gray-700); font-weight: 600; font-size: 0.93rem; }
.desktop-nav a:hover { color: var(--blue); }

.cart-button {
  border: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  cursor: pointer;
}
.cart-count {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--blue-bright);
  font-size: 0.78rem;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 30%, rgba(44, 125, 240, 0.28), transparent 27%),
    linear-gradient(135deg, #020912 0%, #061b38 58%, #0b5ed7 150%);
  color: var(--white);
}
.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
  padding: 72px 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  font-family: Oswald, sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.3rem);
  line-height: .95;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.hero-copy > p { max-width: 650px; color: rgba(255,255,255,.78); font-size: 1.08rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.button {
  border: 0;
  border-radius: 12px;
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--blue-bright); color: var(--white); box-shadow: 0 12px 28px rgba(44,125,240,.25); }
.button.secondary { background: var(--white); color: var(--navy); }
.button.ghost { background: transparent; color: var(--gray-700); border: 1px solid var(--gray-300); }
.button.ghost-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.full-width { width: 100%; }

.status-card {
  display: inline-flex;
  margin-top: 24px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  font-weight: 700;
  font-size: .9rem;
}
.status-card.open::before, .status-card.closed::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  margin-right: 9px;
  align-self: center;
}
.status-card.open::before { background: #42d392; box-shadow: 0 0 0 5px rgba(66,211,146,.12); }
.status-card.closed::before { background: #ff6b6b; box-shadow: 0 0 0 5px rgba(255,107,107,.12); }

.hero-panel {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 40px 80px rgba(0,0,0,.25);
  overflow: hidden;
  padding: 28px;
}
.hero-panel::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(44,125,240,.42);
  filter: blur(30px);
  right: -100px; top: -90px;
}
.hero-panel-top { position: relative; display: flex; justify-content: space-between; align-items: center; font-family: Oswald, sans-serif; letter-spacing: .12em; }
.hero-panel-top strong { color: #8bc1ff; }
.hero-can {
  position: absolute;
  width: 200px; height: 350px;
  left: 50%; top: 53%;
  transform: translate(-50%, -50%) rotate(-6deg);
  border-radius: 28px 28px 36px 36px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.1), transparent 14%, transparent 82%, rgba(0,0,0,.22)),
    linear-gradient(180deg, #f9fbff, #dfe9f7);
  box-shadow: 0 45px 55px rgba(0,0,0,.38);
}
.can-top { position: absolute; top: -7px; left: 8px; right: 8px; height: 19px; border-radius: 50%; background: #bcc9d8; box-shadow: inset 0 2px 4px rgba(0,0,0,.25); }
.can-label {
  position: absolute;
  inset: 72px 0 74px;
  background: linear-gradient(145deg, #061b38, #0b5ed7);
  display: grid;
  place-content: center;
  text-align: center;
  transform: skewY(-5deg);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.can-label span, .can-label strong { transform: skewY(5deg); }
.can-label span { font-size: .85rem; letter-spacing: .2em; }
.can-label strong { font-family: Oswald, sans-serif; font-size: 2.2rem; margin-top: 6px; }
.hero-price { position: absolute; bottom: 28px; left: 28px; right: 28px; display: flex; align-items: end; justify-content: space-between; gap: 16px; }
.hero-price span { color: rgba(255,255,255,.65); font-size: .82rem; }
.hero-price strong { font-family: Oswald, sans-serif; font-size: 2rem; }

.notice-strip { background: var(--blue); color: var(--white); }
.notice-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.notice-grid > div { padding: 21px 24px; border-right: 1px solid rgba(255,255,255,.17); display: grid; gap: 4px; }
.notice-grid > div:last-child { border-right: 0; }
.notice-grid strong { font-size: .92rem; }
.notice-grid span { color: rgba(255,255,255,.75); font-size: .78rem; line-height: 1.4; }

.products-section { padding: 88px 0 100px; background: var(--gray-50); }
.section-heading { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 26px; }
.eyebrow { color: var(--blue); font-size: .74rem; font-weight: 800; letter-spacing: .14em; }
.section-heading h2, .contact-card h2 { margin: 8px 0 0; font-family: Oswald, sans-serif; font-size: clamp(2.1rem, 4vw, 3.3rem); text-transform: uppercase; }
.search-box { width: min(360px, 100%); min-height: 48px; display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--gray-100); border-radius: 12px; padding: 0 14px; box-shadow: 0 8px 20px rgba(6,27,56,.05); }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--black); }
.filters { display: flex; gap: 8px; margin-bottom: 28px; }
.filter { border: 1px solid var(--gray-300); background: var(--white); border-radius: 999px; padding: 9px 15px; font-weight: 700; color: var(--gray-700); cursor: pointer; }
.filter.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(6,27,56,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-visual {
  min-height: 225px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(44,125,240,.17), transparent 30%),
    linear-gradient(145deg, #edf4fd, #f9fbff);
}
.mini-can {
  position: relative;
  width: 88px; height: 155px;
  border-radius: 13px 13px 18px 18px;
  background: linear-gradient(90deg, #e4ebf4, #fff 30%, #d0dae8);
  box-shadow: 0 22px 28px rgba(6,27,56,.18);
}
.mini-can::before { content: ""; position: absolute; left: 4px; right: 4px; top: -4px; height: 9px; border-radius: 50%; background: #a9b7c9; }
.mini-can-label {
  position: absolute;
  left: 0; right: 0; top: 43px;
  min-height: 72px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--blue));
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: .95rem;
  padding: 8px;
}
.product-body { padding: 20px; }
.product-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.badge { border-radius: 999px; padding: 5px 8px; background: var(--blue-pale); color: var(--blue); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.product-body h3 { margin: 0; font-size: 1.2rem; }
.product-description { color: var(--gray-500); font-size: .86rem; margin: 7px 0 18px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.product-price { display: grid; }
.product-price strong { font-family: Oswald, sans-serif; font-size: 1.55rem; color: var(--navy); }
.product-price span { color: var(--gray-500); font-size: .68rem; }
.add-button { border: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--blue); color: var(--white); font-size: 1.5rem; cursor: pointer; }
.empty-message { padding: 40px; text-align: center; color: var(--gray-500); }

.info-section { padding: 90px 0; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card { border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 28px; box-shadow: 0 12px 32px rgba(6,27,56,.05); }
.info-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--blue-pale); font-size: 1.4rem; }
.info-card h3 { margin: 18px 0 10px; }
.info-card p { color: var(--gray-500); line-height: 1.7; }
.info-card strong { color: var(--navy); font-size: .86rem; }

.contact-section { padding: 0 0 90px; }
.contact-card { border-radius: 28px; background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); padding: 44px; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.contact-card .eyebrow { color: #9fc9ff; }
.contact-card p { color: rgba(255,255,255,.72); margin-bottom: 0; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }

.site-footer { border-top: 1px solid var(--gray-100); padding: 34px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--gray-500); font-size: .82rem; }
.footer-inner strong { color: var(--navy); font-size: 1rem; }
.footer-inner p { margin: 4px 0; }

.age-gate { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; background: rgba(1,7,15,.92); backdrop-filter: blur(12px); }
.age-gate.hidden { display: none; }
.age-card { width: min(520px, 100%); background: var(--white); border-radius: 26px; padding: 38px; text-align: center; box-shadow: 0 32px 90px rgba(0,0,0,.38); }
.age-logo { width: 74px; margin: 0 auto 20px; }
.age-card h1 { margin: 10px 0; font-family: Oswald, sans-serif; font-size: 2rem; text-transform: uppercase; }
.age-card p { color: var(--gray-500); line-height: 1.6; }
.age-actions { display: grid; gap: 10px; margin-top: 24px; }

.cart-drawer { position: fixed; inset: 0; z-index: 80; pointer-events: none; }
.cart-drawer.open { pointer-events: auto; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(1,7,15,.58); opacity: 0; transition: opacity .2s ease; }
.cart-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(520px, 100%);
  background: var(--white);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .25s ease;
  padding: 26px;
  box-shadow: -22px 0 60px rgba(0,0,0,.18);
}
.cart-drawer.open .cart-backdrop { opacity: 1; }
.cart-drawer.open .cart-panel { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--gray-100); }
.cart-header h2 { margin: 4px 0 0; font-family: Oswald, sans-serif; text-transform: uppercase; font-size: 2rem; }
.icon-button { border: 0; background: var(--gray-100); width: 42px; height: 42px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; }
.cart-items { display: grid; gap: 12px; margin: 20px 0; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 14px; padding: 15px; border: 1px solid var(--gray-100); border-radius: 14px; }
.cart-item h4 { margin: 0 0 5px; }
.cart-item p { margin: 0; color: var(--gray-500); font-size: .78rem; }
.qty-controls { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.qty-controls button { border: 1px solid var(--gray-300); background: var(--white); width: 30px; height: 30px; border-radius: 8px; cursor: pointer; }
.remove-button { border: 0; background: transparent; color: var(--danger); cursor: pointer; font-size: .78rem; margin-top: 8px; padding: 0; }
.cart-item-price { font-weight: 800; color: var(--navy); }
.empty-cart { text-align: center; color: var(--gray-500); padding: 32px 0; }
.cart-summary { padding: 18px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.cart-summary > div { display: flex; justify-content: space-between; font-size: 1.08rem; }
.cart-summary p { color: var(--gray-500); font-size: .74rem; line-height: 1.5; margin-bottom: 0; }

.checkout-form { display: grid; gap: 17px; padding: 24px 0 60px; }
.checkout-form h3 { margin: 0; }
.checkout-form label { display: grid; gap: 7px; font-size: .82rem; font-weight: 700; color: var(--gray-700); }
.checkout-form input, .checkout-form textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 12px;
  outline: none;
  resize: vertical;
  background: var(--white);
}
.checkout-form input:focus, .checkout-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,94,215,.1); }
.checkout-form fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 9px; }
.checkout-form legend { margin-bottom: 9px; font-size: .82rem; font-weight: 800; color: var(--gray-700); }
.radio-option { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px !important; border: 1px solid var(--gray-100); border-radius: 11px; padding: 12px; cursor: pointer; }
.radio-option input { width: auto; margin-top: 3px; }
.radio-option span { display: grid; gap: 3px; }
.radio-option small { color: var(--gray-500); font-weight: 500; }
.payment-note { border: 1px solid #bad6ff; background: var(--blue-pale); color: var(--navy); border-radius: 11px; padding: 13px; display: grid; gap: 4px; font-size: .82rem; }
.payment-note span { color: var(--gray-700); font-size: .76rem; }
.form-disclaimer { margin: -5px 0 0; color: var(--gray-500); font-size: .72rem; line-height: 1.5; text-align: center; }

.toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 120px);
  opacity: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 12px 17px;
  font-size: .84rem;
  font-weight: 700;
  transition: .2s ease;
  box-shadow: var(--shadow);
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-panel { min-height: 430px; }
  .notice-grid, .info-grid { grid-template-columns: 1fr; }
  .notice-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .notice-grid > div:last-child { border-bottom: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { align-items: flex-start; flex-direction: column; }
  .contact-actions { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 22px, 1160px); }
  .header-inner { min-height: 68px; }
  .brand span { font-size: 1.1rem; }
  .brand img { width: 36px; height: 36px; }
  .cart-button { font-size: .8rem; padding: 0 12px; }
  .hero-grid { min-height: auto; padding: 52px 0; }
  .hero h1 { font-size: 3.15rem; }
  .hero-copy > p { font-size: .96rem; }
  .hero-panel { min-height: 390px; }
  .hero-can { transform: translate(-50%, -50%) scale(.86) rotate(-6deg); }
  .section-heading { align-items: stretch; flex-direction: column; }
  .search-box { width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .products-section, .info-section { padding: 64px 0; }
  .contact-section { padding-bottom: 64px; }
  .contact-card { padding: 28px 22px; }
  .contact-actions, .contact-actions .button { width: 100%; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .age-card { padding: 28px 20px; }
  .cart-panel { padding: 20px 16px; }
}


/* ELEMENTOS DA VERSÃO DE SORVETES */
.ice-cream-visual {
  position: absolute;
  width: 260px;
  height: 350px;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
}
.scoop {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset -18px -18px 28px rgba(0,0,0,.12), 0 16px 28px rgba(0,0,0,.18);
}
.scoop-one { left: 18px; top: 18px; background: #ffffff; }
.scoop-two { right: 18px; top: 18px; background: #71afff; }
.scoop-three { left: 70px; top: 86px; background: #cfe4ff; }
.cone-shape {
  position: absolute;
  left: 63px;
  top: 172px;
  width: 134px;
  height: 165px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background:
    repeating-linear-gradient(45deg, rgba(80,45,15,.2) 0 3px, transparent 3px 18px),
    repeating-linear-gradient(-45deg, rgba(80,45,15,.16) 0 3px, transparent 3px 18px),
    linear-gradient(#e3b36c, #c88332);
  filter: drop-shadow(0 24px 20px rgba(0,0,0,.2));
}
.catalog-warning {
  margin: 0 0 26px;
  padding: 14px 16px;
  border: 1px solid #bad6ff;
  background: #eaf3ff;
  border-radius: 12px;
  color: #061b38;
  font-size: .84rem;
  line-height: 1.5;
}
.ice-product-visual {
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.9), transparent 28%),
    linear-gradient(145deg, #dcecff, #f9fbff);
}
.ice-product-icon {
  font-size: 6rem;
  filter: drop-shadow(0 18px 18px rgba(6,27,56,.15));
  transform: rotate(-4deg);
}
.filters {
  flex-wrap: wrap;
}


/* CONTROLE VISUAL DE ESTOQUE */
.stock-badge {
  border-radius: 999px;
  padding: 5px 8px;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.stock-badge.available {
  background: #e7f8ef;
  color: #147a45;
}
.stock-badge.low {
  background: #fff2d5;
  color: #965d00;
}
.stock-badge.out {
  background: #feeceb;
  color: #b3382d;
}
.product-sold-out {
  opacity: .68;
}
.add-button:disabled,
.qty-controls button:disabled {
  cursor: not-allowed;
  opacity: .45;
}
.cart-stock {
  margin-top: 4px !important;
  color: #0b5ed7 !important;
  font-weight: 700;
}
