@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --color-primary:        #5B6D3D;
  --color-secondary:      #D67155;
  --color-accent:         #F3B651;
  --color-dark:           #932E50;
  --color-bg:             #FAF9F6;
  --color-white:          #FFFFFF;
  --color-text:           #2B2B2B;
  --color-text-light:     #6B6B6B;
  --color-border:         #E5E5E5;
  --color-hover-primary:  #4a5932;
  --color-hover-accent:   #d9a13f;
  --color-hover-secondary:#b85a42;
  --shadow-sm:  0 2px 6px rgba(0,0,0,.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 20px rgba(0,0,0,.12);
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

.navbar { display: none !important; }

body {
  font-family: 'Nunito', sans-serif;
  background-image: url('../uploads/sites_doces.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-text);
  margin: 0 !important;
  padding: 0 !important;
}

/* ── HEADER ── */
header {
  background: var(--color-primary);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.logo { display: flex; align-items: center; gap: .6rem; }

.logo-img { height: 100px; width: auto; display: block; filter: brightness(1.05); }

.search-bar-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0 2rem;
}

.search-bar {
  background: #F2EAE0;
  border-radius: 28px;
  border: 1.5px solid #E0D4C8;
  display: flex;
  align-items: center;
  width: 600px;
  max-width: 100%;
  padding: .55rem 1.2rem;
  gap: .6rem;
}

.search-bar input {
  border: none; outline: none; flex: 1;
  font-size: .97rem; font-family: 'Nunito', sans-serif;
  color: var(--color-text); background: transparent;
}

.search-bar button {
  background: none; border: none;
  cursor: pointer; color: var(--color-secondary);
  display: flex; align-items: center;
}

.header-right { display: flex; align-items: center; gap: 2rem; }

.location {
  color: var(--color-white);
  font-size: .82rem;
  display: flex; align-items: center; gap: .3rem;
}

.btn-entrar {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: .45rem 1.2rem;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  cursor: pointer;
  display: flex; align-items: center; gap: .4rem;
  transition: background .2s;
  text-decoration: none;
}

.btn-entrar:hover { background: var(--color-hover-secondary); }

/* ── USER MENU DROPDOWN ── */
.user-menu {
  position: relative;
  display: inline-flex;
}

.user-btn {
  cursor: pointer;
  user-select: none;
}

.user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 18px rgba(0,0,0,.13);
  min-width: 140px;
  z-index: 300;
  overflow: hidden;
}

.user-menu.open .user-dropdown { display: block; }

.user-dropdown-item {
  display: block;
  padding: .7rem 1.1rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  letter-spacing: .02em;
  transition: background .15s;
}

.user-dropdown-item:hover {
  background: #fdf0f4;
}


.cart-icon { color: var(--color-white); font-size: 1.4rem; cursor: pointer; }

/* ── CART BADGE ── */
.cart-icon-wrap {
  position: relative;
  display: flex; align-items: center;
  cursor: pointer; text-decoration: none;
}

.cart-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: .68rem; font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── NAV ── */
nav {
  background: var(--color-primary);
  display: flex; gap: 2rem;
  justify-content: center;
  padding: .8rem 2rem;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}

nav a {
  color: var(--color-white) !important;
  text-decoration: none;
  font-weight: 700; font-size: .95rem;
  letter-spacing: .04em; transition: color .2s;
  margin-right: 0 !important;
}

nav a:hover { color: var(--color-accent) !important; }

nav a.nav-active {
  background: rgba(255,255,255,.2) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--color-white) !important;
}

/* ── CARROSSEL / HERO ── */
.carrossel-wrap, .hero {
  margin: 1.8rem auto !important;
  max-width: 900px !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: flex !important;
  align-items: stretch;
  box-shadow: var(--shadow-lg);
}

.carrossel-slide img {
  width: 100%; height: 340px;
  object-fit: cover; display: block;
}

.carrossel-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(43,43,43,.7));
  padding: 1.5rem 2rem 1.2rem;
}

.carrossel-caption h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--color-white); margin-bottom: .3rem;
}

.carrossel-caption p { color: rgba(255,255,255,.85); font-size: .95rem; }

.carrossel-fallback {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 60%, var(--color-accent) 100%);
  min-height: 320px;
  display: flex !important;
  align-items: stretch;
}

.carrossel-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}

.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.5); cursor: pointer;
  transition: background .2s, transform .2s;
}

.dot.active { background: var(--color-white); transform: scale(1.3); }

.hero-content {
  padding: 2.5rem 2.5rem 2rem; flex: 1;
  display: flex; flex-direction: column;
  justify-content: center; z-index: 2;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem; color: var(--color-white);
  line-height: 1.25; margin-bottom: .9rem;
}

.hero-content .subtitle {
  color: rgba(255,255,255,.9); font-size: .98rem;
  margin-bottom: 1.1rem; max-width: 320px;
  text-align: left !important;
}

.hero-list { list-style: none; margin-bottom: 1.4rem; }

.hero-list li {
  font-weight: 700; font-size: .98rem;
  margin-bottom: .35rem; color: var(--color-white);
}

.hero-cta {
  background: var(--color-accent);
  color: var(--color-text);
  border: none; border-radius: 24px;
  padding: .65rem 1.6rem;
  font-size: .95rem; font-weight: 700;
  cursor: pointer; align-self: flex-start;
  transition: background .2s, transform .15s;
  font-family: 'Nunito', sans-serif;
}

.hero-cta:hover { background: var(--color-hover-accent); transform: translateY(-2px); }

.hero-image-area {
  flex: 0 0 340px !important;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.hero-badge {
  position: absolute; bottom: 1.2rem; right: 1.2rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: .5rem .9rem; text-align: center;
  box-shadow: var(--shadow-sm);
}

.hero-badge .brand {
  font-family: 'Playfair Display', serif;
  font-size: .8rem; color: var(--color-primary); font-weight: 700;
}

.hero-badge .tagline { font-size: .68rem; color: var(--color-text-light); }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(43,43,43,.5);
  color: var(--color-white); border: none; border-radius: 50%;
  width: 38px; height: 38px; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 5; transition: background .2s;
}

.carousel-btn:hover { background: var(--color-primary); }
.carousel-btn.prev { left: .8rem; }
.carousel-btn.next { right: .8rem; }

/* ── SECTION TITLE ── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; color: var(--color-text);
  margin: 2rem auto .8rem;
  max-width: 960px; padding: 0 3.5rem;
}

/* ── PRODUCT GRID ── */
.products {
  max-width: 900px;
  margin: 1.2rem auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; padding: 0 1rem;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}

.btn-fav {
  position: absolute; top: 10px; right: 10px; z-index: 5;
  background: rgba(255,255,255,.88); border: none; border-radius: 50%;
  width: 34px; height: 34px;
  cursor: pointer; color: #4a90d9;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
  transition: color .2s, transform .15s, background .2s;
}
.btn-fav svg {
  fill: none; stroke: currentColor;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: fill .2s;
}
.btn-fav:hover            { color: #e74c3c; transform: scale(1.12); background: #fff; }
.btn-fav:hover svg        { fill: rgba(231,76,60,.15); }
.btn-fav.ativo            { color: #e74c3c; }
.btn-fav.ativo svg        { fill: #e74c3c; }
.btn-fav.pulsando         { animation: favPulse .3s ease; }
@keyframes favPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.badge-novo {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 62px;
  height: 62px;
  background: #cc0000;
  color: #fff;
  font-size: .58rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  pointer-events: none;
  transform: rotate(-15deg);
  clip-path: polygon(
    50% 0%, 59% 16%, 75% 7%, 75% 25%,
    93% 25%, 84% 41%, 100% 50%, 84% 59%,
    93% 75%, 75% 75%, 75% 93%, 59% 84%,
    50% 100%, 41% 84%, 25% 93%, 25% 75%,
    7% 75%, 16% 59%, 0% 50%, 16% 41%,
    7% 25%, 25% 25%, 25% 7%, 41% 16%
  );
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.35));
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f0ede8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}

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

.card-body { padding: 1rem 1rem .3rem; flex: 1; }

.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--color-text); margin-bottom: .15rem;
}

.card-body .weight { font-size: .82rem; color: var(--color-text-light); }

.card-footer {
  padding: .6rem 1rem 1rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: .5rem;
}

.price { font-size: 1.15rem; font-weight: 700; color: var(--color-primary); }
.price sup { font-size: .7rem; font-weight: 700; vertical-align: super; }
.price .per { font-size: .75rem; color: var(--color-text-light); font-weight: 400; }

.qty {
  display: flex; align-items: center; gap: .5rem;
  background: #f0ede8;
  border-radius: 24px; padding: .2rem .6rem;
}

.qty button {
  background: none; border: none;
  font-size: 1.1rem; color: var(--color-primary);
  cursor: pointer; padding: 0 .2rem; line-height: 1;
}

.qty span {
  font-weight: 700; font-size: .95rem;
  color: var(--color-text); min-width: 16px; text-align: center;
}

.btn-cart {
  width: calc(100% - 2rem);
  background: var(--color-secondary);
  color: var(--color-white);
  border: none; padding: .65rem 0;
  font-weight: 700; font-size: .88rem;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  display: flex; align-items: center;
  justify-content: center; gap: .4rem;
  transition: background .2s;
  margin: 0 1rem 1rem;
  border-radius: var(--radius-md);
}

.btn-cart:hover { background: var(--color-hover-secondary); }

/* ── CARROSSEL DE CARDS ── */
.cards-carrossel-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto 2.5rem;
  padding: 0 3rem;
  overflow: hidden;
}

.cards-track {
  display: flex;
  gap: 1rem;
  transition: transform .35s ease;
  will-change: transform;
}

.cards-track .card {
  flex: 0 0 calc(33.333% - 0.67rem);
  min-width: calc(33.333% - 0.67rem);
}

.cards-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  color: #1e293b;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  transition: box-shadow .15s, opacity .2s;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
}

.cards-btn:hover { box-shadow: 0 4px 16px rgba(0,0,0,.22); }
.cards-btn.prev { left: 4px; }
.cards-btn.next { right: 4px; }

/* ── SLIDES DO CARROSSEL PRINCIPAL ── */
.carrossel-track { display: block; width: 100%; }
.carrossel-slide { width: 100%; position: relative; display: none; }
.carrossel-slide.active { display: block; width: 100%; }

/* ── CARD ESPECIAL: MONTE SEU KIT ── */
.card-kit-especial {
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-medium));
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 260px;
  border: none !important;
}

.card-kit-especial .kit-icon { font-size: 3rem; margin-bottom: .6rem; }

.card-kit-especial h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: .4rem;
}

.card-kit-especial p {
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1rem;
  padding: 0 .8rem;
}

.card-kit-especial .kit-cta {
  background: var(--color-accent);
  color: var(--color-text);
  border-radius: 10px;
  padding: .55rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
  font-size: .9rem;
  transition: background .2s;
}

.card-kit-especial .kit-cta:hover { background: var(--color-hover-accent); }

/* ── FILTROS ── */
.filtros-wrap {
  max-width: 900px;
  margin: 1.4rem auto .2rem;
  padding: 0 1rem;
  display: flex; gap: .6rem; flex-wrap: wrap;
}

.filtro-btn {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 24px; padding: .45rem 1.1rem;
  font-family: 'Nunito', sans-serif;
  font-size: .88rem; font-weight: 700;
  color: var(--color-text-light); cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.filtro-btn:hover {
  border-color: var(--color-secondary);
  color: var(--color-primary);
}

.filtro-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ── DASHBOARD PANEL ── */
.dashboard-wrap { max-width: 900px; margin: 2rem auto; padding: 0 1rem; }

.dashboard-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--color-primary); margin-bottom: 1rem;
}

.dash-panel {
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem; margin-bottom: 1.2rem;
  border: 1.5px solid var(--color-border);
}

.dash-panel.admin { background: #f0f4e8; }
.dash-panel.user  { background: var(--color-bg); }

.dash-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--color-primary); margin-bottom: .4rem;
}

.dash-panel p { font-size: .95rem; color: var(--color-text-light); margin-bottom: .9rem; }

.dash-panel .btn-primary {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  border: none; border-radius: 24px;
  padding: .55rem 1.4rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: .92rem;
  text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s;
}

.dash-panel .btn-primary:hover {
  background: var(--color-hover-primary) !important;
  transform: translateY(-2px);
}

/* ── PRODUTOS VAZIO ── */
.produtos-vazio {
  grid-column: 1 / -1; text-align: center;
  padding: 3rem 1rem; color: var(--color-text-light); font-size: 1rem;
}

/* ── CARD LINK ── */
.card-link-inner { text-decoration: none; color: inherit; display: block; }

/* ── FOOTER ── */
.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 48px 24px 24px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  gap: 48px;
}

.footer-col { flex: 1; }

.footer-titulo {
  font-family: 'Nunito', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 8px;
}

.footer-endereco {
  font-size: .93rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin: 0;
}

.footer-hora {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  margin: 5px 0;
}

.footer-hora strong { color: var(--color-white); font-weight: 700; }

.footer-quote {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 10px;
}

.footer-assinatura {
  font-weight: 700;
  font-size: .92rem;
  color: var(--color-accent);
}

/* ── SOCIAL ICONS ── */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--color-white);
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
}

.social-icon:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

.footer-site {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 700;
  transition: color .2s;
}

.footer-site:hover { color: var(--color-white); }

/* ══════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════ */

/* ── TABLET (≤768px) ── */
@media (max-width: 768px) {
  header {
    height: auto !important;
    padding: .6rem 1rem !important;
    flex-wrap: wrap !important;
    gap: .5rem !important;
  }
  .logo-img { height: 60px !important; }
  .search-bar-wrap { order: 3; width: 100% !important; padding: 0 !important; }
  .search-bar { width: 100% !important; }
  .header-right { gap: .6rem !important; }
  .location { display: none !important; }
  .btn-entrar { font-size: .78rem !important; padding: .35rem .8rem !important; }

  nav:not(.sidebar-nav) {
    gap: .6rem !important;
    padding: .5rem .8rem !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  nav:not(.sidebar-nav) a { font-size: .8rem !important; }

  /* carrossel principal */
  .carrossel-wrap, .hero {
    margin: .8rem !important;
    flex-direction: column !important;
    min-height: auto !important;
  }
  .carrossel-slide img { height: 220px !important; }
  .carrossel-caption h2 { font-size: 1.2rem !important; }
  .hero-image-area { flex: 0 0 160px !important; min-height: 160px !important; }
  .hero-content { padding: 1.5rem !important; }
  .hero-content h1 { font-size: 1.5rem !important; }

  /* carrossel de cards: 2 visíveis */
  .cards-carrossel-wrap { padding: 0 2.5rem !important; }
  .cards-track .card {
    flex: 0 0 calc(50% - .5rem) !important;
    min-width: calc(50% - .5rem) !important;
  }

  .section-title { padding: 0 2.5rem !important; font-size: 1.3rem !important; }
  .products { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; padding: 0 .8rem !important; }
  .dashboard-wrap { padding: 0 .8rem !important; }
  .filtros-wrap { padding: 0 .8rem !important; }
  .footer-container { flex-direction: column !important; gap: 20px !important; }
  .footer { padding: 28px 16px !important; }
  .footer-social { margin-top: 14px !important; }

  /* agenda de eventos: 2 colunas no tablet */
  #agendaHeader, #agendaWrap { padding: 0 1rem !important; }
  #agendaHeader { justify-content: flex-start !important; }
  #agendaHeader .section-title { text-align: left !important; padding: 0 !important; }
  #agendaGrid { grid-template-columns: repeat(2, 1fr) !important; gap: .7rem !important; }

  /* blog posts: 1 coluna no tablet */
  #blogHeader { padding: 0 1rem !important; justify-content: space-between !important; }
  #blogHeader .section-title { text-align: left !important; padding: 0 !important; }
  #blogGrid { grid-template-columns: 1fr !important; padding: 0 1rem !important; gap: .8rem !important; }
}

/* ── MOBILE (≤480px) ── */
@media (max-width: 480px) {
  header { padding: .5rem .8rem !important; }
  .logo-img { height: 50px !important; }

  nav:not(.sidebar-nav) { gap: .4rem !important; padding: .4rem .6rem !important; }
  nav:not(.sidebar-nav) a { font-size: .75rem !important; }

  /* carrossel principal */
  .carrossel-slide img { height: 180px !important; }
  .carrossel-caption { padding: 1rem 1.2rem .8rem !important; }
  .carrossel-caption h2 { font-size: 1.1rem !important; }
  .carrossel-caption p { font-size: .82rem !important; }
  .hero-image-area { display: none !important; }
  .hero-content h1 { font-size: 1.3rem !important; }
  .hero-cta { width: 100% !important; text-align: center !important; }

  /* carrossel de cards: 1 visível */
  .cards-carrossel-wrap { padding: 0 2rem !important; }
  .cards-track .card { flex: 0 0 100% !important; min-width: 100% !important; }

  /* product cards */
  .products { grid-template-columns: 1fr !important; padding: 0 .6rem !important; }
  .card-footer { flex-direction: column !important; align-items: flex-start !important; gap: .4rem !important; }
  .btn-cart { margin: 0 .6rem .8rem !important; }

  .section-title { font-size: 1.1rem !important; margin: 1rem auto .6rem !important; padding: 0 2rem !important; }
  .filtros-wrap { gap: .4rem !important; padding: 0 .6rem !important; }
  .filtro-btn { font-size: .75rem !important; padding: .3rem .7rem !important; }
  .footer-bottom { font-size: .78rem !important; }

  /* agenda de eventos: 1 coluna no mobile */
  #agendaGrid { grid-template-columns: 1fr !important; }
}

/* Títulos dentro dos flex-headers: forçar alinhamento à esquerda
   (specificity (1,1,0) vence .section-title (0,1,0) mesmo com !important) */
#agendaHeader .section-title,
#blogHeader .section-title {
  text-align: left !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: clamp(1.1rem, 4vw, 1.7rem) !important;
}

#agendaHeader,
#blogHeader {
  align-items: center !important;
}
