/* ================================
   RESET & BASE
   ================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --header-h: 110px;
  --border-color: #111;
  --border: 2px solid var(--border-color);
  --brand: #4cb89e;
  --font: 'Montserrat', sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: #fff;
  padding-top: var(--header-h);
}

/* ================================
   HEADER
   ================================ */
.header {
  display: flex;
  align-items: center;
  height: var(--header-h);
  background: #fff;
  border-bottom: var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 2.5rem;
  flex: 1;
}

.header__nav--right {
  justify-content: flex-end;
}

.header__link {
  text-decoration: none;
  color: var(--border-color);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  transition: opacity 0.2s ease;
}

.header__link:hover {
  opacity: 0.5;
}

.header__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header__logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 1.75rem;
  border-left: var(--border);
  cursor: pointer;
}

.header__cart-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.header__mascote {
  height: 74px;
  width: auto;
  object-fit: contain;
}

.header__badge {
  position: absolute;
  bottom: 0;
  right: -12px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* ================================
   SLIDER
   ================================ */
.slider {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
}

.slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
  pointer-events: none;
}

.slide--active {
  opacity: 1;
  pointer-events: auto;
}

.slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Overlay hover — banner1 only */
.slide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.slide--has-hover:hover .slide__overlay {
  opacity: 1;
}

.slide__cta {
  font-family: var(--font);
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #fff;
}

/* ================================
   SLIDER DOTS
   ================================ */
.slider__dots {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 10;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  padding: 0;
  outline: none;
}

.dot:hover {
  border-color: #fff;
}

.dot--active {
  background: #fff;
  border-color: #fff;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 900px) {
  .header__nav {
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .header__link {
    font-size: 0.65rem;
  }

  .slider {
    height: 460px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 80px;
  }

  .header__nav {
    gap: 1rem;
    padding: 0 1rem;
  }

  .header__link {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .header__logo img {
    height: 60px;
  }

  .header__mascote {
    height: 54px;
  }

  .header__cart {
    padding: 0 1rem;
  }

  .header__nav--left .header__link:last-child {
    display: none;
  }

  .slider {
    height: 260px;
  }

  .slide__cta {
    font-size: clamp(1rem, 4vw, 1.5rem);
    letter-spacing: 0.12em;
  }
}

/* ================================
   COMBOS DELÍCIA
   ================================ */
.combos {
  position: relative;
  background: #fdebf3;
  overflow: hidden;
  padding: 72px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 680px;
}

/* Repeating outline text in background */
.combos__bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 42%, transparent 78%);
  mask-image: linear-gradient(to right, black 0%, black 42%, transparent 78%);
}

.combos__bg-row {
  font-family: var(--font);
  font-size: clamp(64px, 8vw, 106px);
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1.05;
  color: transparent;
  -webkit-text-stroke: 2px rgba(233, 59, 139, 0.32);
  text-stroke: 2px rgba(233, 59, 139, 0.32);
  user-select: none;
}

.combos__bg-row--offset {
  transform: translateX(-7rem);
}

/* Centered frame wrapper */
.combos__frame-wrap {
  position: relative;
  z-index: 1;
  width: min(68%, 900px);
}

/* Image frame — thick border + cartoon shadow */
.combos__frame {
  position: relative;
  border: 4px solid #e93b8b;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 12px 12px 0 0 #e93b8b;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.combos__frame:hover {
  transform: scale(1.02);
  box-shadow: 16px 16px 0 0 #e93b8b;
}

.combos__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.combos__frame:hover .combos__img {
  transform: scale(1.04);
}

/* Text + button overlay */
.combos__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.combos__title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.combos__btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #e93b8b;
  background: #ffd6e7;
  border: 2.5px solid #e93b8b;
  border-radius: 100px;
  padding: 0.85rem 2.75rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.combos__btn:hover {
  background: #e93b8b;
  color: #fff;
}

/* Combos responsive */
@media (max-width: 900px) {
  .combos__frame-wrap {
    width: min(88%, 640px);
  }

  .combos__img {
    height: 380px;
  }

  .combos {
    min-height: 520px;
    padding: 56px 20px;
  }
}

@media (max-width: 640px) {
  .combos__frame-wrap {
    width: 100%;
  }

  .combos__frame {
    box-shadow: 8px 8px 0 0 #e93b8b;
    border-radius: 10px;
  }

  .combos__img {
    height: 280px;
  }

  .combos {
    min-height: 400px;
    padding: 48px 16px;
  }

  .combos__btn {
    font-size: 0.72rem;
    padding: 0.75rem 2rem;
  }
}

/* ================================
   OS MAIS QUERIDOS
   ================================ */
.featured {
  background: linear-gradient(180deg, #4a0d2b 0%, #2b0617 100%);
  padding: 96px 24px 108px;
}

.featured__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.featured__title {
  font-family: var(--font);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 0.26em;
  color: #ffd6e7;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 68px;
}

/* Grid */
.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Product card */
.product-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(233, 59, 139, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.45), 0 0 28px rgba(233, 59, 139, 0.2);
}

/* Image area — top half of the card */
.product-card__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

/* Info block */
.product-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1.5rem 1.25rem 1.75rem;
  border-top: 1.5px solid #ffe0ef;
}

.product-card__name {
  font-family: var(--font);
  font-size: clamp(0.72rem, 1.1vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #c4186a;
  text-align: center;
  text-transform: uppercase;
}

.product-card__price {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: #e06090;
  letter-spacing: 0.05em;
}

/* Actions wrapper */
.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  margin-top: 0.35rem;
}

/* Add-to-cart button — rosa escuro */
.product-card__add-btn {
  display: block;
  width: 100%;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #c4186a;
  border: none;
  border-radius: 100px;
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease;
}

.product-card__add-btn:hover {
  background: #4a0d2b;
  transform: scale(1.03);
}

/* Ver mais button — rosa claro */
.product-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #c4186a;
  background: #ffd6e7;
  border: none;
  border-radius: 100px;
  padding: 0.7rem 1rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.product-card__btn:hover {
  background: #e93b8b;
  color: #fff;
  transform: scale(1.03);
}

/* CTA bottom */
.featured__cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.featured__cta-btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2b0617;
  background: #ffd6e7;
  border: 2.5px solid #ffd6e7;
  border-radius: 100px;
  padding: 1rem 3rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}

.featured__cta-btn:hover {
  background: transparent;
  color: #ffd6e7;
  border-color: #ffd6e7;
  transform: translateY(-3px);
}

/* Featured responsive */
@media (max-width: 900px) {
  .featured__grid {
    gap: 24px;
  }

  .featured {
    padding: 72px 20px 80px;
  }

  .featured__title {
    margin-bottom: 48px;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 640px) {
  .featured__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 380px;
    margin: 0 auto;
  }

  .featured {
    padding: 60px 20px 68px;
  }

  .featured__title {
    font-size: 1.7rem;
    letter-spacing: 0.12em;
    margin-bottom: 36px;
  }
}

/* ================================
   DIFERENCIAIS
   ================================ */
.diferenciais {
  background: #fff2f7;
  padding: 96px 24px 108px;
}

.diferenciais__inner {
  max-width: 960px;
  margin: 0 auto;
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.diferencial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  transition: transform 0.3s ease;
}

.diferencial:hover {
  transform: translateY(-6px);
}

/* Fixed-height wrapper keeps badges vertically aligned */
.diferencial__icon-wrap {
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base badge */
.diferencial__badge {
  font-family: var(--font);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.3s ease;
}

/* 1 — Oval bubble */
.diferencial__badge--oval {
  width: 172px;
  height: 118px;
  border: 3.5px solid #e93b8b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #c4186a;
}

.diferencial:hover .diferencial__badge--oval {
  transform: rotate(-4deg) scale(1.07);
}

/* 2 — Sparkle text */
.diferencial__badge--sparkle {
  font-size: 1.55rem;
  color: #c4186a;
  padding: 0.3rem 0;
}

.diferencial__badge--sparkle::before {
  content: '✦  ✦  ✦';
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: #e93b8b;
  letter-spacing: 0.4em;
  margin-bottom: 0.6rem;
}

.diferencial__badge--sparkle::after {
  content: '— ♥ —';
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: #e93b8b;
  letter-spacing: 0.28em;
  margin-top: 0.6rem;
}

.diferencial:hover .diferencial__badge--sparkle {
  transform: scale(1.07);
}

/* 3 — Stamp label */
.diferencial__badge--stamp {
  background: #e93b8b;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  padding: 0.8rem 2rem;
  border: 3px solid #c4186a;
  border-radius: 5px;
  box-shadow: 5px 5px 0 0 #c4186a;
}

.diferencial:hover .diferencial__badge--stamp {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 0 #c4186a;
}

/* Description text */
.diferencial__text {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #9a3060;
  line-height: 1.85;
  text-transform: uppercase;
  max-width: 230px;
}

/* Diferenciais responsive */
@media (max-width: 768px) {
  .diferenciais__grid {
    gap: 28px;
  }

  .diferencial__badge--oval {
    width: 142px;
    height: 96px;
    font-size: 1.2rem;
  }

  .diferencial__badge--sparkle {
    font-size: 1.2rem;
  }

  .diferencial__badge--stamp {
    font-size: 0.85rem;
    padding: 0.65rem 1.4rem;
  }

  .diferencial__text {
    font-size: 0.7rem;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .diferenciais__grid {
    grid-template-columns: 1fr;
    gap: 52px;
    max-width: 320px;
    margin: 0 auto;
  }

  .diferenciais {
    padding: 64px 20px 72px;
  }

  .diferencial__icon-wrap {
    min-height: auto;
  }
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: #f6dfe8;
}

/* Top dark strip */
.footer__strip {
  background: #4b001f;
  padding: 64px 24px;
  text-align: center;
}

.footer__strip-text {
  font-family: var(--font);
  font-size: clamp(0.6rem, 1.3vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  color: rgba(255, 214, 231, 0.7);
  text-transform: uppercase;
}

.footer__strip-tag {
  color: #ffd6e7;
}

/* Middle: nav + social */
.footer__top {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 64px 24px 52px;
  border-bottom: 1.5px solid rgba(233, 59, 139, 0.15);
}

/* Left nav */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer__nav-label {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #e93b8b;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.footer__link {
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: #c4186a;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.footer__link:hover {
  color: #4a0d2b;
}

/* Right social block */
.footer__social-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footer__social-label {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #e93b8b;
  text-transform: uppercase;
}

.footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
}

.footer__social-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #c4186a;
  text-transform: uppercase;
  transition: color 0.25s ease, gap 0.25s ease;
}

.footer__social-item:hover {
  color: #4a0d2b;
  gap: 0.75rem;
}

.footer__social-item svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.footer__social-item:hover svg {
  transform: scale(1.15);
}

.footer__social-note {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(154, 48, 96, 0.7);
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

/* Bottom — logo + copy */
.footer__bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.footer__copy {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(154, 48, 96, 0.6);
  letter-spacing: 0.08em;
  text-align: center;
}

/* Footer responsive */
@media (max-width: 640px) {
  .footer__strip {
    padding: 48px 20px;
  }

  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 36px;
    padding: 48px 20px 40px;
  }

  .footer__nav {
    align-items: center;
  }

  .footer__social-block {
    align-items: center;
  }

  .footer__social-links {
    align-items: center;
  }

  .footer__social-note {
    text-align: center;
  }
}

/* ================================
   SOBRE — LINK ATIVO
   ================================ */
.header__link--current {
  border-bottom: 2px solid #e93b8b;
  padding-bottom: 2px;
}

/* ================================
   SOBRE — HERO TÍTULO
   ================================ */
.sobre-hero {
  background: #fdebf3;
  padding: 80px 24px;
  text-align: center;
  border-bottom: 3px solid #111;
}

.sobre-hero__title {
  font-family: var(--font);
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.32em;
  color: #c4186a;
  text-transform: uppercase;
}

/* ================================
   SOBRE — BLOCOS DIVIDIDOS
   ================================ */
.sobre-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-bottom: 3px solid #111;
  background: #111;
  gap: 3px;
}

.sobre-block__img {
  overflow: hidden;
  position: relative;
}

.sobre-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s ease;
}

.sobre-block:hover .sobre-block__img img {
  transform: scale(1.04);
}

.sobre-block__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

.sobre-block__text--pink {
  background: #fff2f7;
}

.sobre-block__text--white {
  background: #fff;
}

.sobre-block__title {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #111;
  margin-bottom: 2rem;
  line-height: 1.05;
}

.sobre-block__body {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  line-height: 1.9;
  letter-spacing: 0.02em;
  max-width: 400px;
}

.sobre-block__body p + p {
  margin-top: 1.2rem;
}

/* Sobre responsive */
@media (max-width: 768px) {
  .sobre-block {
    grid-template-columns: 1fr;
    background: none;
    gap: 0;
    min-height: auto;
  }

  .sobre-block--reversed .sobre-block__img {
    order: -1;
  }

  .sobre-block__img {
    height: 300px;
    border-bottom: 3px solid #111;
  }

  .sobre-block__text {
    padding: 52px 24px 56px;
    border-bottom: 3px solid #111;
  }

  .sobre-block__body {
    max-width: none;
  }

  .sobre-hero {
    padding: 52px 24px;
    letter-spacing: 0.15em;
  }
}

/* ================================
   CONTATO — SPLIT
   ================================ */
.contato-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-bottom: 3px solid #111;
  background: #111;
  gap: 3px;
}

.contato-split__img {
  background: #fdebf3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 48px;
}

.contato-split__mascote {
  max-height: 340px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.contato-split:hover .contato-split__mascote {
  transform: scale(1.04) translateY(-6px);
}

.contato-split__info {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  padding: 80px 72px;
}

.contato__title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #111;
  line-height: 1.05;
}

.contato__lead {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
  line-height: 1.85;
  max-width: 380px;
}

.contato__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contato__detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contato__detail-label {
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  color: #e93b8b;
  text-transform: uppercase;
}

.contato__detail-value {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.contato__detail-value:hover {
  color: #e93b8b;
}

.contato__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contato__btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.85rem 2.25rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.contato__btn--primary {
  background: #e93b8b;
  color: #fff;
  border: 2px solid #e93b8b;
}

.contato__btn--primary:hover {
  background: #c4186a;
  border-color: #c4186a;
  transform: translateY(-3px);
}

.contato__btn--outline {
  background: transparent;
  color: #e93b8b;
  border: 2px solid #e93b8b;
}

.contato__btn--outline:hover {
  background: #e93b8b;
  color: #fff;
  transform: translateY(-3px);
}

/* ================================
   FAQ ACCORDION
   ================================ */
.faq {
  background: #fff;
  padding: 96px 24px 108px;
  border-bottom: 3px solid #111;
}

.faq__inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq__title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #c4186a;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1.5px solid rgba(233, 59, 139, 0.2);
}

.faq__item:first-child {
  border-top: 1.5px solid rgba(233, 59, 139, 0.2);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #111;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: #e93b8b;
}

.faq__arrow {
  font-size: 1.5rem;
  font-weight: 300;
  color: #e93b8b;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__item--open .faq__arrow {
  transform: rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq__item--open .faq__answer {
  max-height: 160px;
}

.faq__answer-text {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  line-height: 1.8;
  padding-bottom: 1.4rem;
  letter-spacing: 0.02em;
}

/* Contato responsive */
@media (max-width: 768px) {
  .contato-split {
    grid-template-columns: 1fr;
    background: none;
    gap: 0;
    min-height: auto;
  }

  .contato-split__img {
    height: 280px;
    border-bottom: 3px solid #111;
    padding: 40px;
  }

  .contato-split__mascote {
    max-height: 200px;
  }

  .contato-split__info {
    padding: 52px 24px 56px;
    gap: 1.4rem;
    border-bottom: 3px solid #111;
  }

  .contato__lead {
    max-width: none;
  }

  .faq {
    padding: 64px 20px 72px;
  }

  .faq__title {
    margin-bottom: 36px;
    letter-spacing: 0.1em;
  }
}

/* ================================
   CARDÁPIO — HERO
   ================================ */
.cardapio-hero {
  background: #fff2f7;
  padding: 80px 24px 72px;
  text-align: center;
  border-bottom: 3px solid #111;
}

.cardapio-hero__title {
  font-family: var(--font);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #c4186a;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.cardapio-hero__sub {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  color: #9a3060;
  letter-spacing: 0.06em;
}

/* ================================
   CARDÁPIO — GRID
   ================================ */
.catalog {
  background: #fff2f7;
  padding: 80px 24px 100px;
}

.catalog__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.catalog-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(233, 59, 139, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(233, 59, 139, 0.16);
}

.catalog-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fdebf3;
}

.catalog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.catalog-card:hover .catalog-card__img {
  transform: scale(1.05);
}

.catalog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
}

.catalog-card__name {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #111;
  text-transform: uppercase;
}

.catalog-card__desc {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 500;
  color: #888;
  line-height: 1.7;
  letter-spacing: 0.02em;
  flex: 1;
}

.catalog-card__price {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: #e93b8b;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

.catalog-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  margin-top: 0.6rem;
}

.catalog-card__add-btn {
  display: block;
  width: 100%;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #c4186a;
  border: none;
  border-radius: 100px;
  padding: 0.72rem 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease;
}

.catalog-card__add-btn:hover {
  background: #4a0d2b;
  transform: scale(1.03);
}

.catalog-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c4186a;
  background: #ffd6e7;
  border-radius: 100px;
  padding: 0.72rem 1rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.catalog-card__btn:hover {
  background: #e93b8b;
  color: #fff;
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .catalog {
    padding: 64px 20px 80px;
  }
}

@media (max-width: 560px) {
  .catalog__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 420px;
    margin: 0 auto;
  }

  .catalog {
    padding: 52px 20px 64px;
  }

  .cardapio-hero {
    padding: 60px 20px 52px;
  }
}

/* ================================
   PRODUTO — PÁGINA INDIVIDUAL
   ================================ */
.produto-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
  background: #111;
  gap: 3px;
}

.produto-split__img {
  overflow: hidden;
  background: #fdebf3;
  position: relative;
}

.produto-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.produto-split__info {
  background: #fff2f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 80px 72px;
}

.produto__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4186a;
  transition: color 0.2s ease;
  margin-bottom: 0.25rem;
}

.produto__back:hover {
  color: #4a0d2b;
}

.produto__name {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #111;
  text-transform: uppercase;
  line-height: 1.05;
}

.produto__desc {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  line-height: 1.9;
  max-width: 420px;
}

.produto__meta {
  display: flex;
  gap: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1.5px solid rgba(233, 59, 139, 0.2);
  border-bottom: 1.5px solid rgba(233, 59, 139, 0.2);
}

.produto__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.produto__meta-label {
  font-family: var(--font);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  color: #e93b8b;
  text-transform: uppercase;
}

.produto__meta-value {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.04em;
}

.produto__price {
  font-family: var(--font);
  font-size: 2.2rem;
  font-weight: 900;
  color: #e93b8b;
  letter-spacing: 0.02em;
  line-height: 1;
}

.produto__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: #e93b8b;
  border: none;
  border-radius: 100px;
  padding: 1rem 2.5rem;
  align-self: flex-start;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease;
}

.produto__btn:hover {
  background: #c4186a;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .produto-split {
    grid-template-columns: 1fr;
    background: none;
    gap: 0;
    min-height: auto;
  }

  .produto-split__img {
    height: 360px;
    border-bottom: 3px solid #111;
  }

  .produto-split__info {
    padding: 52px 24px 60px;
    border-bottom: 3px solid #111;
  }

  .produto__desc {
    max-width: none;
  }

  .produto__btn {
    align-self: stretch;
    justify-content: center;
  }

  .produto__meta {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

/* ================================
   CARRINHO — PAINEL LATERAL
   ================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: #fff;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  border-left: 3px solid #111;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.cart-panel--open {
  transform: translateX(0);
}

.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 3px solid #111;
  flex-shrink: 0;
}

.cart-panel__title {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #111;
  text-transform: uppercase;
}

.cart-panel__close {
  background: none;
  border: none;
  font-size: 1.25rem;
  font-weight: 400;
  color: #111;
  cursor: pointer;
  line-height: 1;
  padding: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.cart-panel__close:hover {
  opacity: 0.45;
}

.cart-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.75rem;
}

.cart-empty {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #e93b8b;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(233, 59, 139, 0.12);
}

.cart-item__img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: #fdebf3;
}

.cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.cart-item__name {
  font-family: var(--font);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #111;
  text-transform: uppercase;
  line-height: 1.3;
}

.cart-item__qty {
  display: flex;
  align-items: stretch;
  width: fit-content;
  border: 2px solid #111;
}

.cart-item__qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-item__qty-btn:hover {
  background: #111;
  color: #fff;
}

.cart-item__qty-num {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  color: #111;
  width: 32px;
  text-align: center;
  border-left: 2px solid #111;
  border-right: 2px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item__price {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  color: #e93b8b;
  letter-spacing: 0.04em;
}

.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #bbb;
  padding: 0.3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: color 0.2s ease;
}

.cart-item__remove:hover {
  color: #e93b8b;
}

.cart-panel__footer {
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-top: 3px solid #111;
  flex-shrink: 0;
  background: #fff;
}

.cart-panel__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-panel__subtotal-label {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #111;
  text-transform: uppercase;
}

.cart-panel__subtotal-value {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.02em;
}

.cart-panel__checkout {
  width: 100%;
  padding: 1rem;
  background: #4a0d2b;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease;
}

.cart-panel__checkout:hover {
  background: #2b0617;
  transform: translateY(-2px);
}

/* ================================
   CHECKOUT — HEADER SIMPLES
   ================================ */
.checkout-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: #fff;
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 9999;
}

.checkout-header__back {
  flex: 1;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4186a;
  transition: color 0.2s ease;
}

.checkout-header__back:hover {
  color: #4a0d2b;
}

.checkout-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.checkout-header__logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.checkout-header__spacer {
  flex: 1;
}

/* ================================
   CHECKOUT — BODY + LAYOUT
   ================================ */
.checkout-body {
  background: #fff2f7;
}

.checkout-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.checkout__col-title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #111;
}

/* ================================
   CHECKOUT — ITENS
   ================================ */
.checkout-items {
  display: flex;
  flex-direction: column;
}

.checkout-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1.5px solid rgba(233, 59, 139, 0.15);
}

.checkout-item__img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  background: #fdebf3;
}

.checkout-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.checkout-item__name {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #111;
  text-transform: uppercase;
  line-height: 1.3;
}

.checkout-item__unit-price {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.04em;
}

.checkout-item__qty-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.2rem;
}

.checkout-item__qty {
  display: flex;
  align-items: stretch;
  border: 2px solid #111;
}

.checkout-item__qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.checkout-item__qty-btn:hover {
  background: #111;
  color: #fff;
}

.checkout-item__qty-num {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  width: 36px;
  text-align: center;
  border-left: 2px solid #111;
  border-right: 2px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-item__total {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: #e93b8b;
  letter-spacing: 0.04em;
}

.checkout-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  padding: 0.3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  transition: color 0.2s ease;
}

.checkout-item__remove:hover {
  color: #e93b8b;
}

/* ================================
   CHECKOUT — OBSERVAÇÃO
   ================================ */
.checkout-obs-wrap {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.checkout-obs-label {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #e93b8b;
  text-transform: uppercase;
}

.checkout-obs {
  width: 100%;
  min-height: 88px;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(233, 59, 139, 0.22);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s ease;
  background: #fff;
}

.checkout-obs:focus {
  border-color: #e93b8b;
}

.checkout-obs::placeholder {
  color: #bbb;
}

.checkout-continue {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2rem;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4186a;
  transition: color 0.2s ease;
}

.checkout-continue:hover {
  color: #4a0d2b;
}

/* ================================
   CHECKOUT — RESUMO DO PEDIDO
   ================================ */
.checkout-summary {
  display: none;
  background: #fff;
  border: 2.5px solid #111;
  border-radius: 16px;
  padding: 2rem;
  flex-direction: column;
  gap: 1.2rem;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.checkout-summary__heading {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.26em;
  color: #e93b8b;
  text-transform: uppercase;
  border-bottom: 1.5px solid rgba(233, 59, 139, 0.15);
  padding-bottom: 1rem;
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-summary__label {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #888;
  text-transform: uppercase;
}

.checkout-summary__value {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
}

.checkout-summary__label--discount {
  color: #1aa851;
}

.checkout-summary__value--discount {
  color: #1aa851;
}

.checkout-summary__divider {
  border: none;
  border-top: 1.5px solid rgba(233, 59, 139, 0.15);
  margin: 0.1rem 0;
}

.checkout-summary__total-label {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #111;
  text-transform: uppercase;
}

.checkout-summary__total-value {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 900;
  color: #e93b8b;
  letter-spacing: 0.02em;
}

.checkout-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease;
  margin-top: 0.5rem;
}

.checkout-wa-btn:hover {
  background: #1aa851;
  transform: translateY(-2px);
}

/* ================================
   CHECKOUT — ESTADO VAZIO
   ================================ */
.checkout-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 100px 24px;
  text-align: center;
}

.checkout-empty__text {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #e93b8b;
  text-transform: uppercase;
}

.checkout-empty__btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: #e93b8b;
  border-radius: 100px;
  padding: 0.9rem 2.5rem;
  transition: background 0.3s ease, transform 0.25s ease;
}

.checkout-empty__btn:hover {
  background: #c4186a;
  transform: translateY(-2px);
}

/* ================================
   CHECKOUT — RESPONSIVE
   ================================ */
@media (max-width: 900px) {
  .checkout-page {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 80px;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .checkout-header {
    padding: 0 1.25rem;
  }

  .checkout-header__logo img {
    height: 60px;
  }

  .checkout-header__back {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .checkout-page {
    padding: 36px 16px 64px;
  }

  .checkout-item__img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
  }

  .checkout-item__qty-row {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

/* ================================
   COMO AQUECER — SEÇÃO
   ================================ */
.aquecer {
  background: #fdeef5;
  border-bottom: 3px solid #111;
  padding: 80px 24px;
}

.aquecer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 0;
}

.aquecer__left {
  padding-right: 64px;
}

.aquecer__title {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #111;
  line-height: 1.05;
  text-transform: uppercase;
}

.aquecer__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  border-left: 1.5px solid rgba(233, 59, 139, 0.22);
  border-right: 1.5px solid rgba(233, 59, 139, 0.22);
  padding: 40px 48px;
}

.aquecer__cat {
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.36em;
  color: #e93b8b;
  text-transform: uppercase;
}

.aquecer__icon {
  color: #111;
  opacity: 0.75;
}

.aquecer__method {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #666;
  text-transform: uppercase;
  line-height: 1.6;
}

.aquecer__time {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #c4186a;
  text-transform: uppercase;
}

.aquecer__right {
  padding-left: 64px;
  font-family: var(--font);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #111;
  line-height: 1.7;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .aquecer {
    padding: 60px 24px;
  }

  .aquecer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .aquecer__left {
    padding-right: 0;
  }

  .aquecer__center {
    border-left: none;
    border-right: none;
    border-top: 1.5px solid rgba(233, 59, 139, 0.22);
    border-bottom: 1.5px solid rgba(233, 59, 139, 0.22);
    padding: 40px 24px;
  }

  .aquecer__right {
    padding-left: 0;
  }
}

/* ================================
   HAMBÚRGUER — BASE (oculto no desktop)
   ================================ */
.header__menu-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5.5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 1.5rem;
  height: 100%;
  border-right: var(--border);
  flex-shrink: 0;
}

.header__burger-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #111;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.header__menu-btn--open .header__burger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__menu-btn--open .header__burger-bar:nth-child(2) {
  opacity: 0;
}

.header__menu-btn--open .header__burger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ================================
   MENU MOBILE DROPDOWN
   ================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 9998;
  background: #fff;
  border-bottom: var(--border);
  flex-direction: column;
}

.mobile-menu--open {
  display: flex;
}

.mobile-menu__link {
  display: block;
  padding: 1.1rem 1.75rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.07);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu__link:last-child {
  border-bottom: none;
}

.mobile-menu__link:hover {
  background: #fff2f7;
  color: #e93b8b;
}

/* ================================
   HEADER MOBILE — ≤768px
   ================================ */
@media (max-width: 768px) {
  :root {
    --header-h: 80px;
  }

  .header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: stretch;
    padding: 0;
  }

  .header__menu-btn {
    display: flex;
    grid-column: 1;
  }

  .header__logo {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .header__logo img {
    height: 60px;
  }

  .header__nav--left,
  .header__nav--right {
    display: none;
  }

  .header__cart {
    grid-column: 3;
    height: auto;
    padding: 0 1.25rem;
  }

  .header__mascote {
    height: 52px;
  }
}

/* ================================
   SLIDER MOBILE — ≤768px
   ================================ */
@media (max-width: 768px) {
  .slider {
    height: min(520px, calc(100svh - var(--header-h)));
  }

  .slide picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .slide__img {
    object-fit: cover;
    object-position: center 20%;
  }
}

/* ================================
   COMBOS + FEATURED + DIFERENCIAIS MOBILE — ≤640px
   ================================ */
@media (max-width: 640px) {
  /* Combos — remove excess height, tighter padding */
  .combos {
    padding: 36px 16px;
    min-height: unset;
  }

  .combos__img {
    height: 260px;
  }

  /* Os Mais Queridos — single column, less vertical space */
  .featured {
    padding: 48px 16px 56px;
  }

  .featured__title {
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    margin-bottom: 28px;
  }

  .featured__grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
    gap: 20px;
  }

  .product-card {
    border-radius: 18px;
  }

  .featured__cta {
    margin-top: 40px;
  }

  .featured__cta-btn {
    padding: 0.9rem 2rem;
    font-size: 0.68rem;
  }

  /* Diferenciais — tighter at 640px too */
  .diferenciais {
    padding: 56px 20px 64px;
  }
}
