:root {
  --white: #ffffff;
  --bg: #faf9fc;
  --bg-soft: #f3f0f8;
  --bg-gold: #fffbeb;
  --ink: #1c1530;
  --ink-soft: #4a4560;
  --ink-muted: #6b6580;
  --gold: #c9a012;
  --gold-light: #e8c547;
  --gold-pale: #fef3c7;
  --navy: #1a2a5e;
  --violet: #6d28d9;
  --violet-soft: #ede9fe;
  --rose: #be185d;
  --rose-soft: #fce7f3;
  --cyan: #0891b2;
  --cyan-soft: #e0f7fa;
  --green: #059669;
  --border: #e8e4f0;
  --border-gold: rgba(201, 160, 18, 0.35);
  --radius: 18px;
  --shadow-sm: 0 2px 12px rgba(28, 21, 48, 0.06);
  --shadow-md: 0 12px 40px rgba(28, 21, 48, 0.08);
  --shadow-lg: 0 24px 60px rgba(28, 21, 48, 0.1);
  --font: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Logo — PNG transparente, só a bolha */
.logo {
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(28, 21, 48, 0.12));
}

.logo--sm {
  width: 52px;
  height: 52px;
}

.logo--xs {
  width: 44px;
  height: 44px;
}

.logo--hero {
  width: min(300px, 75vw);
  height: min(300px, 75vw);
  margin-inline: auto;
  filter: drop-shadow(0 16px 48px rgba(109, 40, 217, 0.15));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Top bar */
.topbar {
  background: linear-gradient(90deg, var(--navy), #2d3a7a);
  color: #fff;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.topbar__pill {
  color: var(--gold-light);
}

.topbar__muted {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__name {
  display: block;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.brand__tag {
  font-size: 0.68rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--violet);
}

.nav__cta {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  padding: 3rem 0 4.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-soft) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.06), transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(201, 160, 18, 0.08), transparent 65%);
  pointer-events: none;
}

.hero__glow {
  display: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  color: var(--navy);
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
}

.hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--gold), #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 34rem;
  margin: 0 0 1.5rem;
}

.hero__lead strong {
  color: var(--ink);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__stats li {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.hero__stats strong {
  margin-right: 0.3rem;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  box-shadow: 0 6px 24px rgba(201, 160, 18, 0.35);
}

.btn--outline {
  border-color: var(--border);
  color: var(--navy);
  background: var(--white);
}

.btn--outline:hover {
  border-color: var(--violet);
  color: var(--violet);
  box-shadow: var(--shadow-sm);
}

.btn--buy {
  width: 100%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.28);
}

.btn--lg {
  width: auto;
  min-width: 220px;
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--bg-soft);
}

.section--contact {
  background: linear-gradient(180deg, var(--white), var(--violet-soft));
}

.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.section__head h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin: 0 0 0.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.section__head p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
}

.section__head strong {
  color: var(--gold);
  font-weight: 700;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.feature-card--accent {
  border-color: rgba(109, 40, 217, 0.2);
  background: linear-gradient(160deg, var(--white), var(--violet-soft));
}

.feature-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.steps li {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--ink-muted);
  box-shadow: var(--shadow-sm);
}

.steps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 0.5rem;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), var(--navy));
  vertical-align: middle;
}

.steps strong {
  color: var(--navy);
}

/* Products */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--violet-soft) 0%, var(--gold-pale) 50%, var(--cyan-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__photo.is-missing {
  display: none;
}

.product-card__placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.product-card__placeholder.is-visible {
  display: flex;
  width: 100%;
  height: 100%;
}

.product-card__placeholder-icon {
  font-size: 1.8rem;
}

.product-card__placeholder small {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink-muted);
  max-width: 90%;
  word-break: break-all;
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.product-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.product-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.product-card__desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  flex: 1;
}

.product-card__pricing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.product-card__price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
}

.product-card__unit {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose);
  text-align: right;
}

.products__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

/* Pickup */
.pickup-section {
  background: var(--bg-gold);
}

.pickup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.pickup__label {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.pickup h2 {
  margin-top: 0;
  font-weight: 800;
  color: var(--ink);
}

.pickup__address {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.pickup__list {
  color: var(--ink-muted);
  padding-left: 1.2rem;
}

.pickup__map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

/* Contact */
.contact-whatsapp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding: 2rem;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-whatsapp__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

.contact-whatsapp__badge {
  display: inline-block;
  margin: 0 0 0.35rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}

.contact-whatsapp h3 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  color: var(--ink);
}

.contact-whatsapp__number {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.contact-whatsapp__desc {
  margin: 0 0 1.25rem;
  color: var(--ink-muted);
  max-width: 420px;
}

.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq h3 {
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

.faq p {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 440px;
}

.footer__brand p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__links {
  display: flex;
  gap: 1.25rem;
}

.footer__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.footer__links a:hover {
  color: var(--gold-light);
}

.footer__copy {
  width: 100%;
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(5, 150, 105, 0.45);
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* Mobile */
@media (max-width: 768px) {
  .topbar__inner {
    flex-direction: column;
    text-align: center;
    padding: 0.55rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 52px 0 auto 0;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .pickup {
    grid-template-columns: 1fr;
  }

  .contact-whatsapp {
    flex-direction: column;
    text-align: center;
  }

  .contact-whatsapp__desc {
    margin-inline: auto;
  }

  .btn--lg {
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.catalog-hero {
  padding: 2.5rem 0 1.5rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-soft) 100%);
  text-align: center;
}

.catalog-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
}

.catalog-hero p {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: var(--ink-muted);
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.catalog-search {
  flex: 1;
  min-width: min(100%, 320px);
  max-width: 480px;
}

.catalog-search input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.catalog-search input:focus {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}

.catalog-count {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.catalog-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.chip {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.chip:hover,
.chip.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.catalog-empty {
  text-align: center;
  color: var(--ink-muted);
  font-weight: 600;
}
