/*
Theme Name: Milk Menk
Theme URI: https://milkmenk.com.br
Author: Milk Menk Laticínios
Author URI: https://milkmenk.com.br
Description: Tema oficial Milk Menk — laticínios artesanais desde 1986. Porto Feliz, SP.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: milkmenk
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — BRAND TOKENS
   ============================================================ */
:root {
  /* Brand Colors */
  --brand-red:  #CE2324;
  --brand-blue: #0080A9;
  --cream:      #FAF9F6;
  --white:      #FFFFFF;
  --dark:       #1A1D2E;

  /* Semantic */
  --background:        var(--white);
  --foreground:        var(--dark);
  --muted:             #F4F4F6;
  --muted-foreground:  #6B7280;
  --border:            #E5E7EB;
  --card:              var(--white);

  /* Gradients */
  --gradient-hero:  linear-gradient(135deg, #E8F4FA 0%, #FFFFFF 60%, #FAEAEA 100%);
  --gradient-brand: linear-gradient(135deg, #0080A9, #CE2324);

  /* Shadows */
  --shadow-soft: 0 10px 40px -10px rgba(0,128,169,.25);
  --shadow-card: 0 4px 24px -6px rgba(0,0,0,.12);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.site-content { flex: 1; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.text-xs   { font-size: .75rem; }
.text-sm   { font-size: .875rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 1.875rem; }
.text-4xl  { font-size: 2.25rem; }
.text-5xl  { font-size: 3rem; }
.text-6xl  { font-size: 3.75rem; }
.text-7xl  { font-size: 4.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 99px;
  font-size: .875rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: opacity .2s, background .2s, color .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary   { background: var(--brand-red);  color: #fff; box-shadow: var(--shadow-soft); }
.btn-secondary { background: var(--brand-blue); color: #fff; }
.btn-outline   { border: 2px solid var(--brand-blue); color: var(--brand-blue); }
.btn-outline:hover { background: var(--brand-blue); color: #fff; }
.btn-white     { background: #fff; color: var(--brand-red); }
.btn-ghost     { border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); opacity: 1; }

.btn-sm  { padding: .5rem 1.25rem; font-size: .8125rem; }
.btn-lg  { padding: 1rem 2rem;    font-size: 1rem; }

.btn-whatsapp { background: #25D366; color: #fff; }

/* ============================================================
   BADGE / TAG
   ============================================================ */
.badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 99px;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.badge-red  { background: var(--brand-red);  color: #fff; }
.badge-blue { background: var(--brand-blue); color: #fff; }
.badge-outline-blue { border: 1.5px solid var(--brand-blue); color: var(--brand-blue); }

/* ============================================================
   SECTION LABEL (eyebrow text)
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.section-label-red  { color: var(--brand-red); }
.section-label-blue { color: var(--brand-blue); }
.section-label-muted { color: rgba(255,255,255,.8); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -8px rgba(0,0,0,.15); }
.card-body { padding: 1.5rem; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1rem;
}

.site-header__logo img { height: 48px; width: auto; }

/* Nav */
.site-nav { display: flex; align-items: center; gap: .25rem; }

.site-nav__link {
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: var(--radius-md);
  transition: color .2s;
}
.site-nav__link:hover,
.site-nav__link.current-menu-item { color: var(--brand-red); font-weight: 600; }

/* Products dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: var(--radius-md);
  transition: color .2s;
  background: none;
}
.nav-dropdown__trigger:hover { color: var(--brand-red); }
.nav-dropdown__trigger svg { transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown__trigger svg { transform: rotate(180deg); }

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, visibility .2s, transform .2s;
}
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__item {
  display: block;
  padding: .625rem .875rem;
  font-size: .875rem;
  border-radius: var(--radius-md);
  color: var(--foreground);
  transition: background .15s, color .15s;
}
.nav-dropdown__item:hover { background: var(--muted); color: var(--brand-red); }
.nav-dropdown__item--header { font-weight: 700; color: var(--brand-blue); }

.nav-dropdown__divider {
  height: 1px;
  background: var(--border);
  margin: .375rem 0;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  padding: .5rem;
  color: var(--foreground);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.mobile-menu.is-open { display: block; }

.mobile-menu__link {
  display: block;
  padding: .875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: background .15s;
}
.mobile-menu__link:hover { background: var(--muted); }
.mobile-menu__sub { padding-left: 1.25rem; }
.mobile-menu__sub-link {
  display: block;
  padding: .625rem 1rem;
  font-size: .875rem;
  color: var(--muted-foreground);
  border-radius: var(--radius-md);
  transition: background .15s;
}
.mobile-menu__sub-link:hover { background: var(--muted); }
.mobile-menu__cta { margin: .75rem 1rem 0; }

@media (max-width: 1023px) {
  .site-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--brand-blue);
  color: rgba(255,255,255,.85);
  margin-top: 5rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 3.5rem 0;
}

.site-footer__logo img {
  height: 64px;
  width: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: .5rem;
}

.site-footer__desc {
  margin-top: 1rem;
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
}

.site-footer__heading {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .875rem;
}

.site-footer__list { display: flex; flex-direction: column; gap: .5rem; }
.site-footer__list li a {
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.site-footer__list li a:hover { color: #fff; }

.site-footer__contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .875rem;
  color: rgba(255,255,255,.85);
}
.site-footer__contact-item svg { margin-top: 2px; flex-shrink: 0; }
.site-footer__contact-item a { color: inherit; }
.site-footer__contact-item a:hover { color: #fff; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.2);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
}

@media (max-width: 767px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 479px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 4rem 0 5rem;
  background: var(--gradient-hero);
}
.page-hero__eyebrow { margin-bottom: .75rem; }
.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--brand-blue);
  margin-bottom: 1.25rem;
}
.page-hero__desc {
  max-width: 42rem;
  margin-inline: auto;
  color: var(--muted-foreground);
  font-size: 1.0625rem;
}
.page-hero--center { text-align: center; }
.page-hero--center .page-hero__desc { margin-inline: auto; }

/* ============================================================
   HOME: HERO SECTION
   ============================================================ */
.hero {
  background: var(--gradient-hero);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 5rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem .875rem;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--brand-blue);
  background: rgba(0,128,169,.1);
  border: 1px solid rgba(0,128,169,.2);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  line-height: 1.02;
  margin-bottom: 1.5rem;
}
.hero__title-blue { color: var(--brand-blue); display: block; }
.hero__title-red  { color: var(--brand-red);  display: block; }
.hero__desc {
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  max-width: 38rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Carousel */
.hero__carousel { position: relative; }
.carousel { position: relative; overflow: hidden; border-radius: var(--radius-2xl); box-shadow: var(--shadow-card); }
.carousel__track { display: flex; transition: transform .5s ease; }
.carousel__slide { min-width: 100%; position: relative; }
.carousel__slide img { width: 100%; height: 480px; object-fit: cover; display: block; }
.carousel__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.35) 60%, transparent);
  color: #fff;
}
.carousel__caption-cat { display: inline-block; background: var(--brand-red); font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .25rem .625rem; border-radius: 99px; margin-bottom: .5rem; }
.carousel__caption h3 { font-size: 1.5rem; font-weight: 700; }
.carousel__caption p  { font-size: .875rem; color: rgba(255,255,255,.85); margin-top: .25rem; max-width: 90%; }

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  transition: background .2s;
  z-index: 2;
}
.carousel__btn:hover { background: var(--brand-blue); color: #fff; }
.carousel__btn--prev { left: .75rem; }
.carousel__btn--next { right: .75rem; }

@media (max-width: 1023px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__carousel { display: none; }
}

/* ============================================================
   HOME: DIFERENCIAIS
   ============================================================ */
.diferenciais { padding: 5rem 0; }
.diferenciais__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.diferencial-card {
  padding: 1.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  transition: border-color .2s;
}
.diferencial-card:hover { border-color: var(--brand-blue); }
.diferencial-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,128,169,.1);
  color: var(--brand-blue);
  margin-bottom: 1.25rem;
  transition: background .2s, color .2s;
}
.diferencial-card:hover .diferencial-card__icon { background: var(--brand-blue); color: #fff; }
.diferencial-card h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.diferencial-card p  { font-size: .9375rem; color: var(--muted-foreground); }

@media (max-width: 767px) { .diferenciais__grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOME: COMPOSIÇÃO
   ============================================================ */
.composicao {
  padding: 5rem 0;
  background: var(--brand-blue);
  color: #fff;
}
.composicao__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.composicao__eyebrow { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.75); margin-bottom: .75rem; }
.composicao__title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.composicao__desc   { color: rgba(255,255,255,.85); max-width: 34rem; }
.composicao__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.composicao__item {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  backdrop-filter: blur(4px);
}
.composicao__item-value { font-size: 2rem; font-weight: 800; }
.composicao__item-label { font-size: .8125rem; color: rgba(255,255,255,.75); margin-top: .25rem; }

@media (max-width: 767px) {
  .composicao__inner { grid-template-columns: 1fr; }
  .composicao__grid  { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   HOME: FAZENDA
   ============================================================ */
.fazenda-section { padding: 5rem 0; }
.fazenda-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.fazenda-section__img {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.fazenda-section__img img { width: 100%; height: 420px; object-fit: cover; }
.fazenda-section__eyebrow { color: var(--brand-red); margin-bottom: .75rem; }
.fazenda-section__title  { font-size: clamp(2rem, 4vw, 2.875rem); color: var(--brand-blue); margin-bottom: 1.25rem; }
.fazenda-section__text   { font-size: 1rem; color: var(--muted-foreground); line-height: 1.75; margin-bottom: 1rem; }
.fazenda-section__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--brand-red);
  font-weight: 600;
  font-size: .9375rem;
  transition: gap .2s;
}
.fazenda-section__link:hover { gap: .75rem; }

@media (max-width: 1023px) { .fazenda-section__inner { grid-template-columns: 1fr; } }

/* ============================================================
   HOME: DEPOIMENTOS
   ============================================================ */
.depoimentos { padding: 5rem 0; background: var(--cream); }
.section-header { text-align: center; max-width: 42rem; margin-inline: auto; margin-bottom: 3rem; }
.section-header__title { font-size: clamp(2rem, 5vw, 3rem); color: var(--brand-blue); margin-top: .75rem; }

.depoimentos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.depoimento-card { padding: 1.875rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-card); }
.depoimento-card__stars { display: flex; gap: .25rem; color: var(--brand-red); margin-bottom: 1rem; }
.depoimento-card__text  { color: rgba(26,29,46,.82); line-height: 1.7; font-size: .9375rem; margin-bottom: 1.25rem; }
.depoimento-card__author { display: flex; align-items: center; gap: .75rem; }
.depoimento-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.depoimento-card__name { font-weight: 600; font-size: .9375rem; }

@media (max-width: 767px) { .depoimentos__grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOME: CTA STRIP
   ============================================================ */
.cta-strip { padding: 5rem 0; }
.cta-strip__box {
  background: var(--gradient-brand);
  border-radius: var(--radius-2xl);
  padding: 4rem;
  text-align: center;
  color: #fff;
}
.cta-strip__icon { margin: 0 auto 1.25rem; width: 56px; height: 56px; }
.cta-strip__title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.cta-strip__desc  { color: rgba(255,255,255,.9); max-width: 36rem; margin-inline: auto; margin-bottom: 2rem; }
.cta-strip__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }

/* ============================================================
   PRODUTOS ARCHIVE (plugin shortcode)
   ============================================================ */
.mm-produtos { padding: 3rem 0; }

.mm-produtos__controls { margin-bottom: 2rem; }
.mm-produtos__search-wrap { position: relative; max-width: 480px; margin-inline: auto; margin-bottom: 1.5rem; }
.mm-produtos__search-wrap svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted-foreground); pointer-events: none; }
.mm-produtos__search {
  width: 100%;
  padding: .875rem 1rem .875rem 2.75rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--background);
  font-size: .9375rem;
  transition: border-color .2s, box-shadow .2s;
}
.mm-produtos__search:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(0,128,169,.12); }

.mm-produtos__filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.mm-filter-btn {
  padding: .5rem 1.125rem;
  border-radius: 99px;
  font-size: .875rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--card);
  color: rgba(26,29,46,.8);
  transition: all .2s;
}
.mm-filter-btn:hover    { border-color: var(--brand-red); }
.mm-filter-btn.active   { background: var(--brand-blue); color: #fff; border-color: transparent; }

.mm-produtos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mm-produtos__empty { text-align: center; color: var(--muted-foreground); padding: 3rem 0; grid-column: 1/-1; }

/* Product card */
.mm-produto-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}
.mm-produto-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -8px rgba(0,0,0,.15); }

.mm-produto-card__img-wrap { position: relative; overflow: hidden; }
.mm-produto-card__img-wrap img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s; }
.mm-produto-card:hover .mm-produto-card__img-wrap img { transform: scale(1.05); }

.mm-produto-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.mm-produto-card__name { font-size: 1.0625rem; font-weight: 700; color: var(--brand-blue); margin-bottom: .5rem; font-family: var(--font-body); }
.mm-produto-card__desc { font-size: .875rem; color: var(--muted-foreground); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }

@media (max-width: 1023px) { .mm-produtos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px)  { .mm-produtos__grid { grid-template-columns: 1fr; } }

/* ============================================================
   PARCEIROS (plugin shortcode)
   ============================================================ */
.mm-parceiros { padding: 3rem 0; }

.mm-parceiros__stats {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  margin-bottom: 2.5rem;
}
.mm-parceiros__stat { display: flex; align-items: center; gap: .75rem; }
.mm-parceiros__stat-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.mm-parceiros__stat-icon--blue { background: rgba(0,128,169,.1); color: var(--brand-blue); }
.mm-parceiros__stat-icon--red  { background: rgba(206,35,36,.1);  color: var(--brand-red); }
.mm-parceiros__stat-value { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.mm-parceiros__stat-label { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-foreground); }
.mm-parceiros__stat-divider { width: 1px; height: 40px; background: var(--border); }

.mm-parceiros__filters { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.mm-parceiros__filter-search {
  position: relative; flex: 1; min-width: 200px;
}
.mm-parceiros__filter-search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted-foreground); pointer-events: none; }
.mm-parceiros__search {
  width: 100%;
  padding: .875rem 1rem .875rem 2.75rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--background);
  font-size: .9375rem;
  transition: border-color .2s, box-shadow .2s;
}
.mm-parceiros__search:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(0,128,169,.12); }

.mm-parceiros__city-select {
  padding: .875rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--background);
  font-size: .9375rem;
  min-width: 200px;
  transition: border-color .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.mm-parceiros__city-select:focus { outline: none; border-color: var(--brand-blue); }

.mm-parceiros__count { font-size: .875rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }

.mm-parceiros__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

.mm-parceiro-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: .875rem;
  transition: border-color .2s;
}
.mm-parceiro-card:hover { border-color: var(--brand-red); }
.mm-parceiro-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
.mm-parceiro-card__name  { font-weight: 700; font-size: 1rem; }
.mm-parceiro-card__city-badge {
  flex-shrink: 0;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--brand-blue);
  background: rgba(0,128,169,.1);
  padding: .25rem .625rem;
  border-radius: 99px;
}
.mm-parceiro-card__addr {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  font-size: .875rem;
  color: var(--muted-foreground);
}
.mm-parceiro-card__addr svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-red); }
.mm-parceiros__empty { text-align: center; color: var(--muted-foreground); padding: 3rem 0; grid-column: 1/-1; }

@media (max-width: 767px) { .mm-parceiros__grid { grid-template-columns: 1fr; } }

/* ============================================================
   SOBRE PAGE
   ============================================================ */
.sobre-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
}
.sobre-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sobre-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.3) 50%, transparent); }
.sobre-hero__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3rem;
  color: #fff;
}
.sobre-hero__eyebrow { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.sobre-hero__title   { font-size: clamp(2.5rem, 6vw, 4rem); max-width: 44rem; }

.sobre-story { padding: 5rem 0; }
.sobre-story__inner { max-width: 44rem; margin-inline: auto; }
.sobre-story p { font-size: 1.0625rem; line-height: 1.8; color: rgba(26,29,46,.82); margin-bottom: 1.25rem; }
.sobre-story p strong { color: var(--brand-blue); }
.sobre-story p em { font-style: italic; }

.sobre-valores { padding: 5rem 0; background: var(--cream); }
.sobre-valores__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.sobre-valor-card { padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--card); }
.sobre-valor-card__icon { width: 56px; height: 56px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; background: var(--brand-red); color: #fff; margin-bottom: 1.25rem; }
.sobre-valor-card h3 { font-size: 1.125rem; color: var(--brand-blue); margin-bottom: .75rem; }
.sobre-valor-card p  { font-size: .9375rem; color: var(--muted-foreground); line-height: 1.7; }

@media (max-width: 767px) { .sobre-valores__grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTATO PAGE
   ============================================================ */
.contato-section { padding: 4rem 0; }
.contato-section__inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem; }

.contato-info { display: flex; flex-direction: column; gap: 1rem; }
.contato-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  transition: border-color .2s;
}
.contato-info-card:hover { border-color: var(--brand-blue); }
.contato-info-card__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(0,128,169,.1);
  color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
}
.contato-info-card__label { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-red); margin-bottom: .25rem; }
.contato-info-card__value { font-size: .9375rem; }

.contato-form-box {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.contato-form-box h2 { font-size: 1.5rem; color: var(--brand-blue); margin-bottom: 1.5rem; font-family: var(--font-body); font-weight: 700; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: .375rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--background);
  font-size: .9375rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0,128,169,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 1023px) { .contato-section__inner { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section { padding: 4rem 0; }
.faq-list { max-width: 52rem; margin-inline: auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; background: var(--card); }
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--foreground);
  background: none;
  transition: color .2s;
}
.faq-item__question:hover { color: var(--brand-blue); }
.faq-item__question svg  { flex-shrink: 0; transition: transform .3s; }
.faq-item.is-open .faq-item__question { color: var(--brand-blue); }
.faq-item.is-open .faq-item__question svg { transform: rotate(45deg); }
.faq-item__answer { display: none; padding: 0 1.5rem 1.25rem; font-size: .9375rem; color: var(--muted-foreground); line-height: 1.75; }
.faq-item.is-open .faq-item__answer { display: block; }

/* ============================================================
   RECEITAS PAGE
   ============================================================ */
.receitas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 3rem 0; }
.receita-card { border-radius: var(--radius-xl); overflow: hidden; background: var(--card); border: 1px solid var(--border); }
.receita-card img { width: 100%; height: 220px; object-fit: cover; }
.receita-card__body { padding: 1.5rem; }
.receita-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--brand-blue); margin-bottom: .5rem; font-family: var(--font-body); }
.receita-card p  { font-size: .875rem; color: var(--muted-foreground); line-height: 1.65; }

@media (max-width: 767px) { .receitas-grid { grid-template-columns: 1fr; } }

/* ============================================================
   COMERCIAL PAGE
   ============================================================ */
.comercial-section { padding: 4rem 0; }
.comercial-section__inner { max-width: 40rem; margin-inline: auto; text-align: center; }
.comercial-section h2 { font-size: 2rem; color: var(--brand-blue); margin-bottom: 1rem; }
.comercial-section p  { color: var(--muted-foreground); margin-bottom: 2rem; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 767px) {
  .cta-strip__box { padding: 2.5rem 1.5rem; }
  .composicao { padding: 3.5rem 0; }
  .composicao__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   WORDPRESS ALIGNMENT CLASSES (for block editor)
   ============================================================ */
.alignleft  { float: left;  margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem;  margin-bottom: 1rem; }
.aligncenter { display: block; margin-inline: auto; }

/* ============================================================
   ADMIN BAR FIX
   ============================================================ */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
