:root {
  --acai: #3d235c;
  --acai-deep: #271239;
  --grape: #6f3f8f;
  --cream: #fff7df;
  --sun: #ffc94d;
  --lime: #8fc655;
  --ink: #22192d;
  --muted: #6d6275;
  --white: #ffffff;
  --line: rgba(61, 35, 92, 0.18);
  --shadow: 0 24px 70px rgba(39, 18, 57, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

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

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

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 247, 223, 0.92);
  border-bottom: 1px solid rgba(61, 35, 92, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  color: var(--acai);
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--acai);
  border: 3px solid var(--sun);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(61, 35, 92, 0.24);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -9px;
  top: -7px;
  width: 22px;
  height: 18px;
  border-top: 4px solid var(--lime);
  border-right: 4px solid var(--lime);
  transform: rotate(-22deg);
  border-radius: 50%;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 2px solid var(--sun);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(61, 35, 92, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--acai);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.button {
  color: var(--acai-deep);
  background: var(--sun);
  border: 2px solid rgba(39, 18, 57, 0.1);
  box-shadow: 0 10px 20px rgba(39, 18, 57, 0.14);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 16px 28px rgba(39, 18, 57, 0.22);
}

.button.secondary {
  color: var(--white);
  background: var(--acai);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  min-height: 88vh;
  padding: clamp(26px, 5vw, 76px) clamp(18px, 5vw, 72px) 36px;
  background:
    linear-gradient(115deg, rgba(39, 18, 57, 0.95), rgba(61, 35, 92, 0.8) 52%, rgba(255, 247, 223, 0.18)),
    url("assets/copo-premium.jpeg") center / cover;
  color: var(--white);
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 4px;
  background: var(--lime);
  border-radius: 999px;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.hero p {
  max-width: 600px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  align-self: stretch;
  display: grid;
  align-content: end;
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(39, 18, 57, 0.34)),
    url("assets/copo-frutas.jpeg") center / cover;
  box-shadow: var(--shadow);
  animation: floatPhoto 5s ease-in-out infinite;
}

.price-chip {
  width: fit-content;
  padding: 10px 14px;
  color: var(--acai-deep);
  background: var(--sun);
  border-radius: 8px;
  font-weight: 900;
}

.section {
  padding: clamp(42px, 6vw, 86px) clamp(18px, 5vw, 72px);
}

.section.alt {
  background: var(--white);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.section-header h2 {
  margin-bottom: 0;
  color: var(--acai);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.section-header p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.batida-prices {
  margin-top: 18px;
}

.panel,
.item-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(61, 35, 92, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.panel:hover,
.item-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 201, 77, 0.9);
  box-shadow: 0 22px 46px rgba(61, 35, 92, 0.14);
}

.panel {
  padding: 22px;
}

.panel.dark {
  color: var(--white);
  background: var(--acai);
}

.panel h3,
.item-card h3 {
  color: var(--acai);
  font-size: 1.35rem;
}

.panel.dark h3 {
  color: var(--sun);
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(61, 35, 92, 0.2);
  font-weight: 800;
}

.panel.dark .price-row {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-row span:last-child {
  color: var(--acai);
  white-space: nowrap;
}

.panel.dark .price-row span:last-child {
  color: var(--sun);
}

.mix-grid,
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.item-card {
  display: flex;
  flex-direction: column;
  min-height: 170px;
  padding: 18px 20px;
}

.item-card p {
  color: var(--muted);
  line-height: 1.45;
}

.tag {
  width: fit-content;
  margin-top: auto;
  padding: 8px 10px;
  color: var(--acai-deep);
  background: rgba(255, 201, 77, 0.5);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 9px 12px;
  color: var(--acai);
  background: rgba(143, 198, 85, 0.2);
  border: 1px solid rgba(143, 198, 85, 0.38);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 201, 77, 0.42);
}

.photo-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.photo-grid img:hover {
  transform: scale(1.025);
  box-shadow: 0 30px 78px rgba(39, 18, 57, 0.26);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 22px;
  align-items: center;
  color: var(--white);
  background: var(--acai-deep);
}

.contact-band h2 {
  color: var(--sun);
}

.contact-copy {
  display: grid;
  justify-items: start;
}

.contact-logo {
  width: clamp(110px, 18vw, 190px);
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 18px;
  border: 3px solid rgba(255, 201, 77, 0.86);
  border-radius: 50%;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.contact-list {
  display: grid;
  gap: 14px;
  font-size: 1.12rem;
  font-weight: 900;
  min-width: 0;
}

.contact-list a {
  overflow-wrap: anywhere;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 14px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 201, 77, 0.7);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.26);
}

.contact-card:hover::after {
  transform: translateX(120%);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--acai-deep);
  background: var(--sun);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
}

.contact-icon.image-icon {
  overflow: hidden;
  padding: 0;
  background: transparent;
}

.contact-icon.image-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card strong {
  color: var(--white);
  font-size: 1.18rem;
}

.contact-card small {
  margin-top: 4px;
  color: var(--sun);
  font-size: 1rem;
}

.whatsapp-card .contact-icon {
  background: #8fc655;
}

.instagram-card .contact-icon {
  background: linear-gradient(135deg, #ffc94d, #d94682 52%, #6f3f8f);
  color: var(--white);
}

.whatsapp-card .contact-icon.image-icon,
.instagram-card .contact-icon.image-icon {
  background: transparent;
}

.maps-card .contact-icon {
  background: var(--white);
  color: var(--acai);
}

.map-section {
  background:
    linear-gradient(180deg, rgba(255, 247, 223, 0.94), rgba(255, 247, 223, 1)),
    url("assets/copo-frutas.jpeg") center / cover;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.storefront-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.storefront-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.storefront-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(39, 18, 57, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 900;
}

.map-wrap {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.map-button {
  position: absolute;
  right: 18px;
  bottom: 18px;
}

.order-page {
  background: linear-gradient(180deg, var(--cream), #ffffff 42%, var(--cream));
}

.order-page .store-cover {
  display: none;
}

.order-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  align-items: end;
  gap: 24px;
  padding: clamp(34px, 6vw, 76px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(39, 18, 57, 0.96), rgba(61, 35, 92, 0.76)),
    url("assets/copo-confete.jpeg") center / cover;
}

.order-hero h1 {
  max-width: 720px;
  margin-bottom: 14px;
}

.order-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
  line-height: 1.5;
}

.pickup-note {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.pickup-note strong {
  color: var(--sun);
  font-size: 1.2rem;
}

.pickup-note span {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: start;
}

.catalog {
  min-width: 0;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.order-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  min-height: 188px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(61, 35, 92, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.order-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 201, 77, 0.9);
  box-shadow: 0 22px 46px rgba(61, 35, 92, 0.14);
}

.order-card span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-card h3 {
  margin-bottom: 0;
  color: var(--acai);
  font-size: 1.25rem;
}

.order-card strong {
  color: var(--acai-deep);
  font-size: 1.35rem;
}

.order-card .button {
  align-self: end;
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.cart-panel {
  position: sticky;
  top: 88px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cart-head,
.cart-total,
.cart-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-head {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  margin-bottom: 0;
  color: var(--acai);
}

.cart-head span {
  color: var(--muted);
  font-weight: 900;
}

.cart-items {
  display: grid;
  gap: 14px;
  max-height: 55vh;
  overflow: auto;
  padding-right: 4px;
}

.empty-cart {
  display: block;
  padding: 18px;
  color: var(--muted);
  background: rgba(143, 198, 85, 0.12);
  border-radius: 8px;
}

.cart-item {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 223, 0.55);
}

.cart-item-top strong {
  color: var(--acai);
}

.cart-item-top button {
  border: 0;
  color: #9d2434;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.option-group {
  display: grid;
  gap: 8px;
}

.option-group > span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.option-list {
  display: grid;
  gap: 8px;
}

.option-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-list label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.25;
}

.option-list input {
  width: 18px;
  height: 18px;
  accent-color: var(--acai);
}

.cart-item-total {
  justify-self: end;
  color: var(--acai-deep);
  font-size: 1.1rem;
  font-weight: 900;
}

.customer-box {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.customer-box label {
  color: var(--acai);
  font-weight: 900;
}

.customer-box input,
.customer-box textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fffdf5;
  font: inherit;
}

.cart-total {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.cart-total span {
  color: var(--muted);
  font-weight: 900;
}

.cart-total strong {
  color: var(--acai);
  font-size: 1.45rem;
}

.cart-disclaimer {
  margin: 12px 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.checkout-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.store-cover {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.store-cover-art {
  min-height: 0;
  height: 0;
  background:
    linear-gradient(90deg, rgba(39, 18, 57, 0.82), rgba(61, 35, 92, 0.25)),
    url("assets/copo-premium.jpeg") center 58% / cover;
}

.store-profile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px clamp(18px, 5vw, 72px);
}

.store-logo {
  width: clamp(82px, 10vw, 118px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.store-profile .eyebrow {
  margin-bottom: 8px;
  color: var(--acai);
}

.store-profile h1 {
  margin-bottom: 8px;
  color: var(--acai-deep);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  text-shadow: none;
}

.store-profile p {
  max-width: 720px;
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.store-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-meta span,
.order-alert strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
}

.store-meta span {
  color: var(--acai);
  background: rgba(143, 198, 85, 0.18);
  border: 1px solid rgba(143, 198, 85, 0.34);
}

.order-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--acai-deep);
}

.order-alert strong {
  color: var(--acai-deep);
  background: var(--sun);
  flex: 0 0 auto;
}

.order-alert span {
  line-height: 1.35;
}

.category-tabs {
  position: sticky;
  top: 81px;
  z-index: 18;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 247, 223, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.category-tabs a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--acai);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(61, 35, 92, 0.07);
}

.category-tabs a:hover {
  color: var(--acai-deep);
  border-color: var(--sun);
  background: rgba(255, 201, 77, 0.34);
}

.ifood-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 28px;
}

.menu-title {
  margin-bottom: 18px;
}

.menu-category {
  scroll-margin-top: 150px;
  margin-bottom: 30px;
}

.menu-category h3 {
  margin-bottom: 12px;
  color: var(--acai-deep);
  font-size: 1.4rem;
}

.order-list {
  display: grid;
  gap: 12px;
}

.order-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  align-items: center;
  gap: 16px;
  min-height: 122px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(61, 35, 92, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.order-row:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 201, 77, 0.92);
  box-shadow: 0 18px 34px rgba(61, 35, 92, 0.12);
}

.order-row-copy {
  min-width: 0;
}

.order-row-copy span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-row-copy h4 {
  margin: 5px 0 5px;
  color: var(--acai);
  font-size: 1.18rem;
}

.order-row-copy p {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.35;
}

.order-row-copy strong {
  color: var(--acai-deep);
  font-size: 1.12rem;
}

.order-row-media {
  position: relative;
  width: 132px;
  height: 116px;
}

.order-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(61, 35, 92, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(39, 18, 57, 0.12);
}

.add-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--acai-deep);
  background: var(--sun);
  cursor: pointer;
  font: inherit;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(39, 18, 57, 0.16);
  transition: transform 180ms ease, filter 180ms ease;
}

.order-row-media .add-button {
  position: absolute;
  right: 8px;
  bottom: 8px;
}

.add-button-plain {
  justify-self: end;
  align-self: center;
}

.add-button:hover {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.ifood-cart {
  border-top: 5px solid var(--sun);
}

.ifood-cart .checkout-button {
  min-height: 48px;
  font-size: 1rem;
}

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

.floating-order {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  animation: pulseOrder 2.6s ease-in-out infinite;
}

.has-js .reveal,
.has-js .panel,
.has-js .item-card,
.has-js .chip,
.has-js .photo-grid img,
.has-js .contact-card {
  opacity: 0;
  transform: translateY(22px);
}

.has-js .reveal.is-visible,
.has-js .panel.is-visible,
.has-js .item-card.is-visible,
.has-js .chip.is-visible,
.has-js .photo-grid img.is-visible,
.has-js .contact-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 620ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.has-js .chip:nth-child(2n),
.has-js .item-card:nth-child(2n),
.has-js .panel:nth-child(2n),
.has-js .photo-grid img:nth-child(2n),
.has-js .contact-card:nth-child(2n) {
  transition-delay: 90ms;
}

.has-js .chip:nth-child(3n),
.has-js .item-card:nth-child(3n),
.has-js .panel:nth-child(3n),
.has-js .photo-grid img:nth-child(3n) {
  transition-delay: 150ms;
}

.has-js .panel.is-visible:hover,
.has-js .item-card.is-visible:hover,
.has-js .contact-card.is-visible:hover {
  transform: translateY(-4px);
}

.has-js .chip.is-visible:hover {
  transform: translateY(-2px);
}

.has-js .photo-grid img.is-visible:hover {
  transform: scale(1.025);
}

@keyframes floatPhoto {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseOrder {
  0%,
  100% {
    box-shadow: 0 10px 20px rgba(39, 18, 57, 0.14);
  }

  50% {
    box-shadow: 0 10px 20px rgba(39, 18, 57, 0.14), 0 0 0 8px rgba(255, 201, 77, 0.18);
  }
}

.print-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px;
}

.print-menu {
  min-height: 100vh;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(39, 18, 57, 0.98), rgba(61, 35, 92, 0.94)),
    url("assets/copo-confete.jpeg") center / cover;
}

.print-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  margin-bottom: 26px;
}

.print-logo {
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.86;
  text-transform: uppercase;
  font-weight: 900;
}

.print-logo span {
  color: var(--sun);
}

.print-contact {
  padding: 14px 16px;
  color: var(--acai-deep);
  background: var(--sun);
  border-radius: 8px;
  font-weight: 900;
}

.print-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.print-box {
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  color: var(--ink);
}

.print-box h2 {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  color: var(--acai);
  background: var(--sun);
  border-radius: 999px;
  font-size: 1.2rem;
}

.print-box.wide {
  grid-column: 1 / -1;
}

.print-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero,
  .contact-band,
  .order-hero,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 360px;
  }

  .menu-grid,
  .mix-grid,
  .photo-grid,
  .print-columns,
  .order-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links a:not(.button) {
    display: none;
  }

  .print-top {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
  }

  .cart-items {
    max-height: none;
  }

  .store-profile {
    align-items: center;
    margin-top: 0;
  }

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

  .category-tabs {
    top: 75px;
  }
}

@media (max-width: 560px) {
  .nav {
    padding-inline: 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .hero-actions,
  .hero-actions .button,
  .floating-order {
    width: 100%;
  }

  .floating-order {
    right: 0;
    bottom: 0;
    border-radius: 0;
  }

  .contact-card {
    grid-template-columns: 48px 1fr;
    min-height: 76px;
    padding: 12px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
    height: 360px;
  }

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

  .storefront-card,
  .storefront-card img {
    min-height: 320px;
  }

  .map-button {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .option-list.compact {
    grid-template-columns: 1fr;
  }

  .store-profile {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .store-logo {
    width: 108px;
  }

  .store-profile h1 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .category-tabs {
    top: 74px;
    padding-inline: 14px;
  }

  .ifood-layout {
    padding-bottom: 96px;
  }

  .order-row {
    grid-template-columns: minmax(0, 1fr) 112px;
    min-height: 112px;
    padding: 14px;
  }

  .order-row-media {
    width: 112px;
    height: 104px;
  }

  .add-button {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .mobile-cart-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 32;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    color: var(--white);
    background: var(--acai-deep);
    box-shadow: 0 -12px 28px rgba(39, 18, 57, 0.22);
  }

  .mobile-cart-bar div {
    display: grid;
    gap: 2px;
  }

  .mobile-cart-bar strong {
    color: var(--sun);
  }

  .mobile-cart-bar span {
    font-size: 0.86rem;
    font-weight: 900;
  }

  .mobile-cart-bar .button {
    width: auto;
  }

  .section {
    padding-inline: 16px;
  }

  .price-row {
    gap: 8px;
  }

  .photo-grid img {
    height: 320px;
  }

  .item-card {
    min-height: 150px;
    padding: 16px 18px;
  }

  .item-card h3 {
    margin-bottom: 10px;
  }

  .item-card p {
    margin-bottom: 14px;
  }

  .print-page {
    padding: 0;
  }

  .print-menu {
    padding: 18px;
  }
}

@media print {
  body {
    background: white;
  }

  .print-page {
    max-width: none;
    padding: 0;
  }

  .print-menu {
    min-height: 100vh;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .nav,
  .floating-order {
    display: none;
  }
}

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

  .has-js .reveal,
  .has-js .panel,
  .has-js .item-card,
  .has-js .chip,
  .has-js .photo-grid img,
  .has-js .contact-card {
    opacity: 1;
    transform: none;
  }
}
