/* ===================== Kompleta Distribuidora — stylesheet ===================== */

:root {
  --navy: #181247;
  --navy-light: #241c66;
  --blue: #4185c0;
  --blue-light: #a4dbff;
  --footer-blue: #6ba6d6;
  --footer-blue-dark: #5f9ccc;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;
  --text: #23232b;
  --text-muted: #6b6b7a;
  --bg-light: #f6f8fb;
  --border: #e4e7ee;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(24, 18, 71, 0.08);
  --shadow-hover: 0 16px 40px rgba(24, 18, 71, 0.16);
  --max-width: 1180px;
  --header-h: 128px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* trava scroll horizontal acidental sem quebrar o header sticky */
  overflow-x: clip;
}

/* mídias nunca estouram o container */
img, picture, video, iframe, svg { max-width: 100%; }

/* âncoras (#conteudo etc.) não somem sob o header fixo */
:target { scroll-margin-top: 140px; }
@media (max-width: 860px) { :target { scroll-margin-top: 96px; } }

/* Empurra o rodapé sempre para a base da tela, mesmo em páginas curtas */
main {
  flex: 1 0 auto;
}
.site-footer {
  flex-shrink: 0;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.container-wide { max-width: 1440px; }
@media (max-width: 600px) { .container { padding: 0 18px; } }
@media (max-width: 380px) { .container { padding: 0 14px; } }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 10000;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ===================== Buttons ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-light); box-shadow: var(--shadow-hover); }

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: var(--shadow-hover); }

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ===================== Header ===================== */

.site-header { position: sticky; top: 0; z-index: 500; }

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.topbar-social { display: flex; align-items: center; gap: 14px; }
.topbar-social a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.topbar-social a:hover { opacity: 1; transform: translateY(-1px); }
.topbar-social svg { width: 16px; height: 16px; fill: currentColor; }

.topbar-contact { display: flex; align-items: center; gap: 20px; }
.topbar-contact a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--white);
  opacity: 0.9;
}
.topbar-contact a:hover { opacity: 1; text-decoration: underline; }
.topbar-contact svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

.mainbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.mainbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo img { height: 62px; width: auto; }

.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav a:hover,
.main-nav a.is-active { background: var(--navy); color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 860px) {
  .topbar { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.is-open { max-height: 70vh; overflow-y: auto; }
  .main-nav ul { flex-direction: column; align-items: stretch; padding: 12px; gap: 4px; }
  .main-nav a { display: block; text-align: center; }
}

/* ===================== Hero / carousel ===================== */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  max-width: 2200px;          /* evita upscale exagerado em ultrawide */
  margin: 0 auto;
}
.hero-track {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
/* 100% (não 100vw) para não contar a barra de rolagem e desalinhar o slide */
.hero-slide { flex: 0 0 100%; min-width: 0; }
.hero-slide img { width: 100%; height: auto; object-fit: cover; display: block; }
.hero-slide picture { display: block; }
.hero-slide .mobile-banner { display: none; }

@media (max-width: 700px) {
  .hero-slide .desktop-banner { display: none; }
  .hero-slide .mobile-banner { display: block; }
}

/* Banner indicators / navigation dots */
.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.hero-dot {
  width: 13px;
  height: 13px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: 0 1px 4px rgba(10, 12, 40, 0.35);
}
.hero-dot:hover { background: rgba(255, 255, 255, 0.55); }
.hero-dot.is-active {
  background: var(--white);
  transform: scale(1.2);
}
.hero-dot:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .hero-dots { bottom: 10px; gap: 9px; }
  .hero-dot { width: 10px; height: 10px; }
}

/* ===================== Auto-advancing strips (hero banner, featured products) ===================== */

.marquee,
.products-marquee {
  overflow: hidden;
}

/* ===================== Section basics ===================== */

.section { padding: 72px 0; }
@media (max-width: 760px) { .section { padding: 52px 0; } }
@media (max-width: 460px) { .section { padding: 40px 0; } }
.section-light { background: var(--bg-light); }
.section-navy { background: var(--navy); color: var(--white); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-navy .eyebrow { color: var(--blue-light); }

h1, h2, h3 { color: var(--navy); margin: 0 0 14px; line-height: 1.25; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }

h2.section-title { font-size: clamp(1.6rem, 3vw, 2.3rem); }

.text-muted { color: var(--text-muted); }
.section-navy .text-muted { color: rgba(255,255,255,0.75); }

/* ===================== About teaser (home) ===================== */

.about-teaser { background: var(--white); padding: 60px 0; }

.about-teaser-card {
  background: var(--navy);
  border-radius: 32px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.about-teaser-chef {
  flex: 0 0 400px;
  width: 400px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.about-teaser-chef:hover { transform: translateY(-10px) scale(1.03) rotate(-2deg); }
.about-teaser-text { flex: 1; }
.about-teaser-text h2 { color: var(--white); margin-bottom: 16px; font-size: 1.7rem; }
.about-teaser-text p { color: rgba(255, 255, 255, 0.85); margin: 0 0 10px; font-size: 0.88rem; line-height: 1.55; }
.about-teaser-text .btn { margin-top: 8px; }

@media (max-width: 1000px) {
  .about-teaser-card { padding: 44px 40px; gap: 36px; }
  .about-teaser-chef { flex-basis: 300px; width: 300px; }
}

@media (max-width: 840px) {
  .about-teaser { padding: 44px 0; }
  .about-teaser-card { flex-direction: column; text-align: center; padding: 36px 28px; gap: 24px; }
  .about-teaser-chef { flex: 0 0 auto; width: min(260px, 62%); }
}

/* ===================== Featured products (home carousel) ===================== */

.products-strip {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 4px 24px;
  will-change: transform;
}

.product-chip {
  flex: 0 0 220px;
  text-align: center;
}
.product-chip .chip-media {
  height: 220px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  margin-bottom: 14px;
  transition: transform 0.2s ease;
}
.product-chip:hover .chip-media { transform: translateY(-4px); }
.product-chip .chip-media img { max-height: 100%; object-fit: contain; }
.product-chip span { font-weight: 500; font-size: 0.92rem; color: var(--white); }

.center-cta { text-align: center; }
.section-navy .center-cta { margin-top: 12px; }

/* ===================== Recipes (home teaser) ===================== */

.recipe-rows { display: flex; flex-direction: column; gap: 48px; }
.recipe-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.recipe-row img { border-radius: var(--radius); box-shadow: var(--shadow); }
.recipe-row:nth-child(even) .recipe-media { order: 2; }
.recipe-row h3 { font-size: 1.4rem; }

@media (max-width: 760px) {
  .recipe-row { grid-template-columns: 1fr; }
  .recipe-row:nth-child(even) .recipe-media { order: 0; }
}

/* ===================== Instagram (home) ===================== */

.instagram-section {
  background: linear-gradient(165deg, var(--blue) 0%, #2f6fa6 100%);
  color: var(--white);
}
.instagram-section .section-title { color: var(--white); }
.instagram-section .text-muted { color: rgba(255, 255, 255, 0.85); }
.instagram-follow { font-weight: 800; letter-spacing: 0.01em; }
.instagram-feed {
  max-width: 1080px;
  margin: 0 auto;
}
/* o widget do Elfsight se adapta sozinho; garantimos que não estoure a área */
.instagram-feed :where(iframe, div) { max-width: 100%; }

/* ===================== Footer ===================== */

.site-footer {
  background: var(--footer-blue);
  color: var(--navy);
  border-top: 3px solid rgba(24, 18, 71, 0.12);
}
.footer-inner {
  /* mesmo alinhamento do .container do site (largura e recuo laterais)
     para que a logo do rodapé caia exatamente sob a logo do cabeçalho */
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 44px 24px 24px;
}

/* Bloco principal: Logo | Menu | Contato | Redes sociais.
   O .footer-bottom (linha + copyright) fica FORA deste grid, então
   não participa do cálculo de centralização vertical da logo. */
.footer-grid {
  display: grid;
  /* 1ª coluna larga para a logo grande, alinhada à esquerda (sob a logo
     do cabeçalho). O espaço extra sai das colunas estreitas
     (Menu / Redes sociais); a coluna "Contato" mantém a largura. */
  grid-template-columns: 2.15fr 0.95fr 1.95fr 0.95fr;
  gap: 40px;
  align-items: stretch;
  width: 100%;
}

/* Coluna da logo — ocupa toda a largura e altura da 1ª célula.
   Logo grande, alinhada à esquerda (sob a logo do cabeçalho) e
   centralizada só na vertical. Sem position/top/left/margens negativas. */
.footer-brand {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 12px 0;
  align-self: stretch;
}
.footer-brand img {
  display: block;
  width: 330px;
  max-width: 100%;
  height: auto;
  margin: 0;
  transform: translateY(-6px);
}

/* Colunas de texto — títulos alinhados no topo (sem centralização vertical) */
.footer-column { min-width: 0; }
.footer-column a,
.footer-column p {
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Column titles */
.footer-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(24, 18, 71, 0.22);
  line-height: 1.2;
}

/* Menu column */
.footer-menu { display: flex; flex-direction: column; gap: 10px; }
.footer-menu a {
  font-size: 0.9rem;
  color: var(--navy);
  transition: color 0.15s ease, transform 0.15s ease;
}
.footer-menu a:hover {
  color: var(--navy-light);
  transform: translateX(3px);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contact column */
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--navy);
}
.footer-contact li > :not(svg) { min-width: 0; overflow-wrap: anywhere; }
.footer-contact li svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  fill: var(--navy);
  flex-shrink: 0;
}
.footer-contact a { color: var(--navy); }
.footer-contact a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-contact .nowrap { white-space: nowrap; }

/* Social column */
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(24, 18, 71, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}
.footer-social a:hover { background: var(--navy); transform: translateY(-2px); }
.footer-social a:hover svg { fill: var(--white); }
.footer-social svg { width: 18px; height: 18px; fill: var(--navy); }

/* Bottom bar */
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  text-align: center;
  position: relative;
}
/* Linha divisória que atravessa a tela inteira (full-bleed), sem
   limitar a largura do conteúdo do rodapé nem da coluna da logo. */
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  border-top: 1px solid rgba(24, 18, 71, 0.18);
}
.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(24, 18, 71, 0.85);
}
.footer-legal {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 18px;
  font-size: 0.8rem;
}
.footer-legal a { color: rgba(24, 18, 71, 0.85); }
.footer-legal a:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Tablet: logo em linha inteira acima das 3 colunas ---- */
@media (max-width: 940px) {
  .footer-inner { padding: 40px 26px 22px; }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    min-height: auto;
    height: auto;
    padding: 20px 0 30px;
    justify-content: center;
  }
  .footer-brand img {
    transform: none;
    width: 250px;
  }
}
/* ---- Mobile: tudo em uma coluna ---- */
@media (max-width: 560px) {
  .footer-inner { padding: 32px 20px 18px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: auto;
    justify-content: center;
    min-height: auto;
    height: auto;
    padding: 10px 0 20px;
  }
  .footer-brand img {
    width: 215px;
    transform: none;
  }
  .footer-column { width: 100%; }
  .footer-bottom { margin-top: 24px; }
}

/* ===================== Floating WhatsApp button ===================== */

.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38), 0 2px 6px rgba(24, 18, 71, 0.15);
  z-index: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 3px 8px rgba(24, 18, 71, 0.18);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

@media (max-width: 560px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
}

/* ===================== Page hero banner (inner pages) ===================== */

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,0.8); }
@media (max-width: 600px) { .page-hero { padding: 40px 0; } }

/* Link discreto de "voltar" nas telas de detalhe (produto / receita) */
.detail-back {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.detail-back:hover { text-decoration: underline; }

.page-hero-thin { background: var(--navy); height: 28px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================== Sobre page ===================== */

.about-banner,
.full-banner {
  width: 100%;
  max-width: 2200px;
  margin: 0 auto;
  line-height: 0;
  background: var(--navy);
}
.about-banner img,
.full-banner img { width: 100%; height: auto; display: block; }

.about-texture-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.about-chef {
  flex: 0 0 380px;
  width: 380px;
}
.about-chef img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.about-chef img:hover { transform: translateY(-10px) scale(1.03) rotate(-2deg); }
.about-texture-inner .about-block { margin: 0; max-width: none; flex: 1; }
.about-texture-inner .about-block p { font-size: 0.92rem; margin: 0 0 12px; }
@media (max-width: 900px) {
  .about-texture-inner { flex-direction: column; align-items: center; gap: 32px; }
  .about-chef { width: min(260px, 60%); flex: 0 0 auto; }
  .about-texture-inner .about-block { width: 100%; }
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 980px) { .mvv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .mvv-grid { grid-template-columns: 1fr; } }

.mvv-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mvv-card:hover { transform: translateY(-8px); }
.mvv-card:hover .mvv-body { box-shadow: var(--shadow-hover); }

.mvv-head {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}
.mvv-head svg { width: 20px; height: 20px; fill: var(--white); flex-shrink: 0; }
.mvv-body {
  background: var(--white);
  color: var(--text);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  flex: 1;
}
.mvv-body p { margin: 0; color: var(--text); }
.mvv-body ul { list-style: disc; margin: 0; padding-left: 18px; }
.mvv-body ul li { margin-bottom: 10px; color: var(--text); }
.mvv-body ul li:last-child { margin-bottom: 0; }

.about-block { max-width: 760px; margin: 0 auto; }
.about-block p { margin: 0 0 16px; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
}
.pillar-card h3 { font-size: 1.1rem; }
@media (max-width: 800px) { .pillars-grid { grid-template-columns: 1fr; } }

.values-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
}
.values-list li:last-child { border-bottom: none; }
.values-list strong { color: var(--navy); }

/* ===================== Produtos page ===================== */

.products-toolbar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  position: relative;
  z-index: 10;
}
.search-field {
  flex: 1 1 280px;
  position: relative;
}
.search-field svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; fill: var(--text-muted);
}
.search-field input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.15s ease;
}
.search-field input:focus { outline: none; border-color: var(--blue); }

.filter-field select {
  padding: 13px 40px 13px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23181247' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E") no-repeat right 16px center / 10px;
  appearance: none;
  cursor: pointer;
  min-width: 170px;
}
.filter-field select:focus { outline: none; border-color: var(--blue); }
@media (max-width: 480px) {
  .products-toolbar { padding: 16px; }
  .search-field { flex: 1 1 100%; }
  .filter-field { width: 100%; }
  .filter-field select { width: 100%; min-width: 0; }
}

.results-count {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 24px 0 8px;
}
.results-count strong { color: var(--navy); }

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0 4px;
}
.category-chips button {
  border: 1.5px solid var(--border);
  background: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.15s ease;
}
.category-chips button:hover { border-color: var(--blue); }
.category-chips button.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px 0 40px;
}
@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeInUp 0.35s ease backwards;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-media {
  height: 200px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  position: relative;
}
.product-media img { max-height: 100%; object-fit: contain; }
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
}

/* Etiqueta vermelha de "Lançamento" */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #d92d20;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(24, 18, 71, 0.25);
}

.product-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-body h3 { font-size: 1rem; margin: 0; line-height: 1.35; }
.product-body .btn { margin-top: auto; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state svg { width: 56px; height: 56px; fill: var(--border); margin-bottom: 16px; }

.is-hidden { display: none !important; }

/* ===================== Product detail view ===================== */

.product-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  margin-top: 18px;
}
.product-detail-media { display: flex; flex-direction: column; gap: 14px; }
.product-detail-download { align-self: center; }
.product-detail-image {
  background: #eef1f6;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  position: relative;
}
.product-detail-image img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Fita diagonal de "Lançamento" (mesmo estilo do selo do catálogo, em vermelho) */
.product-detail-ribbon {
  position: absolute;
  top: 26px;
  right: -54px;
  width: 210px;
  padding: 9px 0 7px;
  background: #d92d20;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: rotate(35deg);
  z-index: 3;
}

/* Slide passo a passo (mesmo efeito dos banners) — uma foto por vez,
   segura ~1,5s e desliza suavemente para a próxima, no mesmo fundo cinza. */
.detail-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
}
.detail-gallery-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.detail-gallery-slide img { max-width: 100%; max-height: 100%; object-fit: contain; }

.product-detail-info h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.product-description p { color: rgba(255,255,255,0.85); margin: 0 0 14px; }
.product-description ul { list-style: disc; margin: 0 0 14px; padding-left: 20px; color: rgba(255,255,255,0.85); }
.product-description ul li { margin-bottom: 6px; }
.product-description strong { color: var(--white); }

@media (max-width: 780px) {
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-image { aspect-ratio: 4 / 3; padding: 24px; }
}
@media (max-width: 460px) {
  .product-detail-ribbon { width: 170px; right: -46px; top: 20px; font-size: 0.66rem; }
}

/* ===================== Catálogo page ===================== */

.catalog-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  column-gap: clamp(40px, 6vw, 88px);
  row-gap: 40px;
  align-items: center;
}
.catalog-cover { max-width: 430px; margin-left: auto; }
@media (max-width: 860px) {
  .catalog-hero-grid { grid-template-columns: 1fr; column-gap: 0; }
  .catalog-cover { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 420px) {
  .catalog-actions { flex-direction: column; align-items: stretch; }
  .catalog-actions .btn { width: 100%; }
}

.catalog-highlights { margin: 24px 0 32px; }
.catalog-highlights li { border-bottom: none; padding: 8px 0; }
.catalog-highlights li span:first-child {
  color: var(--whatsapp);
  font-weight: 700;
  flex-shrink: 0;
}

.catalog-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.catalog-cover {
  position: relative;
  border-radius: var(--radius);
  padding: 52px 36px;
  background: var(--footer-blue);
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  color: var(--navy);
  overflow: hidden;
}
.catalog-cover img { width: 100%; max-width: 240px; height: auto; }
.catalog-cover-title { font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.catalog-cover-sub { font-size: 0.88rem; color: rgba(24, 18, 71, 0.75); }
.catalog-cover-ribbon {
  position: absolute;
  top: 26px;
  right: -54px;
  width: 210px;
  padding: 9px 0 7px;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transform: rotate(35deg);
}
@media (max-width: 460px) {
  .catalog-cover { padding: 44px 26px; }
  .catalog-cover-ribbon { width: 170px; right: -46px; top: 20px; font-size: 0.66rem; }
}

/* "Conheça outros produtos" — carrossel que desliza para o lado, com
   cards idênticos aos da grade de produtos (sem o link "Conheça os
   detalhes"), sempre mostrando cards inteiros (nunca cortados na borda). */
.related-marquee {
  overflow: hidden;
}
.related-strip {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 4px 0 10px;
  align-items: stretch;
  will-change: transform;
}
.related-card {
  flex: 0 0 240px;
  cursor: pointer;
  animation: none;
  opacity: 1;
}
@media (max-width: 560px) {
  .related-card { flex-basis: 200px; }
}

/* ===================== Receitas — listagem ===================== */

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 900px) { .recipe-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .recipe-grid { grid-template-columns: 1fr; } }

.recipe-card {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: none;
  text-align: left;
  padding: 0;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.recipe-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.recipe-card-media { display: block; }
.recipe-card-media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}
.recipe-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.recipe-card-title { font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.recipe-card-link {
  margin-top: auto;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===================== Receitas — página de detalhe ===================== */

.recipe-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 24px;
  /* contain = o banner aparece inteiro, sem cortar o produto em nenhuma tela */
  background: var(--navy) center / contain no-repeat;
  color: var(--white);
  overflow: hidden;
}
.recipe-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 18, 71, 0.55);
}
.recipe-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.recipe-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 16px;
}
.recipe-hero-product { font-size: 1.05rem; font-weight: 600; margin: 0 0 14px; color: rgba(255, 255, 255, 0.95); }
.recipe-hero-desc { font-size: 0.95rem; margin: 0; color: rgba(255, 255, 255, 0.85); }

.recipe-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 440px;
}
.recipe-split-icon {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.recipe-split-icon img { width: 210px; max-width: 55%; height: auto; }
.recipe-split-text {
  background: var(--blue);
  color: var(--white);
  padding: 56px clamp(24px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.recipe-split-text > * { width: 100%; max-width: 640px; }
.recipe-split-text h2 { color: var(--navy); font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 22px; }
.recipe-split-text ul { list-style: none; margin: 0; padding: 0; }
.recipe-split-text li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.98rem;
  line-height: 1.5;
}
.recipe-split-text li::before { content: "•"; position: absolute; left: 2px; color: var(--white); }
.recipe-split-text li:last-child { margin-bottom: 0; }
.recipe-tip-item { margin-top: 16px; }
.recipe-ingredients-group { margin-bottom: 22px; }
.recipe-ingredients-group:last-child { margin-bottom: 0; }
.recipe-ingredients-group h3 { color: var(--white); font-size: 1rem; margin: 0 0 10px; }

@media (max-width: 820px) {
  .recipe-hero { min-height: 400px; padding: 52px 20px; }
  .recipe-hero h1 { font-size: clamp(1.45rem, 6vw, 2rem); }
  .recipe-split { display: flex; flex-direction: column; min-height: 0; }
  .recipe-split-text { order: 0; padding: 40px 22px; }
  .recipe-split-text > * { max-width: none; }
  .recipe-split-icon { order: 1; padding: 32px; }
  .recipe-split-icon img { width: 120px; max-width: 45%; }
}

/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(24,18,71,0.6);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  z-index: 2000;
}
.modal-overlay.is-open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
}
.modal-box img { width: 100%; height: 240px; object-fit: contain; background: var(--bg-light); border-radius: var(--radius) var(--radius) 0 0; }
.modal-content { padding: 28px 32px 36px; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--navy);
}
.modal-content h4 { color: var(--navy); margin: 20px 0 8px; font-size: 1rem; }
.icon-heading { display: flex; align-items: center; gap: 10px; }
.icon-badge {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-badge img { width: 18px; height: 18px; object-fit: contain; }
.modal-content ul { list-style: disc; padding-left: 20px; }
.modal-content ul li, .modal-content ol li { margin-bottom: 6px; }
.modal-tip {
  margin-top: 18px;
  background: var(--bg-light);
  border-left: 4px solid var(--blue);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
}

/* ===================== Contato page ===================== */

/* Banner full-bleed no topo (mesmo tratamento visual da aba Receitas) */
.contact-hero {
  background:
    linear-gradient(rgba(24, 18, 71, 0.66), rgba(24, 18, 71, 0.66)),
    url("../img/banners/banner-contato.png") center / cover no-repeat;
  background-color: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero-inner { max-width: 720px; }
.contact-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.7rem); margin: 0 0 14px; }
.contact-hero p { margin: 0 auto; max-width: 620px; color: rgba(255, 255, 255, 0.85); }

/* Barra de informações acima do formulário */
.contact-info-bar {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.contact-info-bar li {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info-head {
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact-info-head svg { width: 18px; height: 18px; fill: var(--blue); flex-shrink: 0; }
.contact-info-label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info-bar a,
.contact-info-bar li > span:not(.contact-info-head) {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.contact-info-bar a:hover { text-decoration: underline; }
@media (max-width: 1024px) { .contact-info-bar { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .contact-info-bar { grid-template-columns: 1fr; margin-bottom: 32px; } }

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--blue); }
.contact-form-alt {
  margin: 4px 0 0;
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-muted);
}
.contact-form-alt a { color: var(--navy); font-weight: 600; }
.contact-form-alt a:hover { text-decoration: underline; }

.contact-map .map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map .map-frame iframe { width: 100%; height: 440px; border: none; display: block; }
@media (max-width: 860px) { .contact-map .map-frame iframe { height: 320px; } }

.form-feedback {
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: none;
}
.form-feedback.is-visible { display: block; }
.form-feedback.success { background: #d4e9d6; color: #2f532e; }
.form-feedback.error { background: #f6d9d9; color: #7a2f2f; }

/* ===================== Aviso de cookies ===================== */

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  max-width: 940px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(24, 18, 71, 0.4);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: cookie-in 0.35s ease;
}
@keyframes cookie-in { from { opacity: 0; transform: translateY(18px); } }
.cookie-bar.is-hiding {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-bar-text {
  margin: 0;
  flex: 1 1 300px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
.cookie-bar-text a { color: var(--blue-light); text-decoration: underline; }
.cookie-bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-accept { background: var(--blue); color: var(--white); border-color: transparent; }
.cookie-accept:hover { background: #35709e; }
.cookie-decline {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  padding: 8px 8px;
}
.cookie-decline:hover { color: var(--white); text-decoration: underline; }

/* enquanto o aviso aparece, o botão do WhatsApp sobe para não sobrepor */
body.has-cookie-bar .whatsapp-float { bottom: 128px; }

@media (max-width: 620px) {
  .cookie-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 16px;
    gap: 12px;
  }
  .cookie-bar-actions { width: 100%; }
  .cookie-accept { flex: 1; }
  body.has-cookie-bar .whatsapp-float { bottom: 168px; }
}

/* ===================== Páginas legais (privacidade / cookies / termos) ===================== */

.legal {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text);
}
.legal > p:first-of-type { margin-top: 0; }
.legal h2 {
  font-size: 1.3rem;
  margin: 40px 0 14px;
  padding-top: 6px;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.05rem; margin: 24px 0 10px; }
.legal p { margin: 0 0 14px; line-height: 1.7; }
.legal ul,
.legal ol { margin: 0 0 16px; padding-left: 24px; }
.legal ul { list-style: disc; }
.legal ol { list-style: decimal; }
.legal li { margin-bottom: 8px; line-height: 1.65; }
.legal a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--navy); }
.legal strong { color: var(--navy); }

.legal-toc {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 36px;
}
.legal-toc h2 { margin: 0 0 12px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.legal-toc ol { margin: 0; padding-left: 20px; }
.legal-toc li { margin-bottom: 6px; }

.legal-note {
  background: var(--bg-light);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 26px 0;
  font-size: 0.93rem;
}
.legal-note p:last-child { margin-bottom: 0; }

.legal-table-wrap { overflow-x: auto; margin: 0 0 20px; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 560px;
}
.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.legal-table th { background: var(--bg-light); color: var(--navy); font-weight: 700; }

.legal-contact-card {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 12px;
}
.legal-contact-card p { margin: 0 0 6px; }
.legal-contact-card p:last-child { margin-bottom: 0; }

.page-hero .legal-updated { margin-top: 8px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.75); }

@media (max-width: 560px) {
  .legal h2 { font-size: 1.15rem; }
  .legal-toc, .legal-note, .legal-contact-card { padding: 16px 16px; }
}

/* ===================== Utilities ===================== */

.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
