/**
 * Lovable parity — github.com/inovarinfo/bemestarecia
 */

:root {
  --be-rose: #a55d68;
  --be-gold: #8f7040;
  --be-gold-on-dark: #e8d4b0;
  --be-cream: #f5f0e8;
  --be-blush: #f2e8e9;
  --be-bg: #fafaf8;
  --be-ink: #2c2c2c;
  --be-muted: #6b6b6b;
  --be-footer-bg: #2c2c2c;
  --be-border: #e8e0dc;
  --be-cat-fitness: #7ba05b;
  --be-cat-nutricao: #e8965a;
  --be-cat-mente: #8b7ba8;
  --be-shadow-soft: 0 4px 20px -8px rgba(183, 110, 121, 0.18);
  --be-shadow-lift: 0 18px 40px -16px rgba(183, 110, 121, 0.28);
  --be-font-title: "Playfair Display", Georgia, serif;
  --be-font-body: "Lato", system-ui, sans-serif;
  --be-font-ui: "Montserrat", system-ui, sans-serif;
  --be-radius: 12px;
}

#page.site,
#page.hfeed.site,
#content.site-content,
#content.site-content > .ast-container,
.be-site-canvas {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  flex: none !important;
  flex-direction: unset !important;
  min-width: 0 !important;
}

.be-site-canvas {
  background: var(--be-bg);
  overflow-x: hidden;
}

#masthead,
#colophon,
#ast-desktop-header,
#ast-mobile-header,
.ast-mobile-header-wrap,
.ast-header-wrap,
.ast-builder-header,
.ast-primary-header-bar,
.ast-primary-header,
.site-header-primary-section,
.main-header-bar-navigation,
#primary-site-navigation,
.site-header:not(.be-custom-header),
.site-footer:not(.be-custom-footer),
.ast-small-footer,
.ast-footer-copyright,
.site-below-footer-wrap,
#page > #header,
#page > #header + hr,
#headerimg {
  display: none !important;
}

.be-custom-header,
.be-custom-footer {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  clear: both !important;
}

.be-container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.be-custom-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--be-border);
}

.be-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  min-height: 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.be-brand {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.35rem;
  white-space: nowrap;
  text-decoration: none;
}

.be-brand__rose {
  font-family: var(--be-font-title);
  font-size: clamp(1.5rem, 5vw, 1.875rem);
  font-weight: 700;
  color: var(--be-rose);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.be-brand__gold {
  font-family: var(--be-font-ui);
  font-size: clamp(0.875rem, 2.75vw, 1.125rem);
  font-weight: 500;
  color: var(--be-gold);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.be-custom-header .be-brand__gold {
  color: #7a5f35;
}

.be-custom-footer .be-brand__rose {
  color: #c98992;
}

.be-custom-footer .be-brand__gold {
  color: var(--be-gold-on-dark);
}

.be-footer-brand > p {
  margin: 0.65rem 0 0;
  font-family: var(--be-font-title);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(250, 250, 248, 0.82);
}

.be-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.35rem 1.75rem;
}

.be-nav a {
  font-family: var(--be-font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--be-ink);
  text-decoration: none;
}

.be-nav a:hover { color: var(--be-rose); }

.be-lovable-hero {
  position: relative;
  height: min(72vh, 460px);
  overflow: hidden;
  background: #1a1a1a;
}

@media (min-width: 768px) { .be-lovable-hero { height: 560px; } }

.be-lovable-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.be-lovable-hero__slide[hidden] {
  display: none !important;
}

.be-lovable-hero__slide.is-active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.be-lovable-hero__media,
.be-lovable-hero__img,
.be-lovable-hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.be-lovable-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.22) 42%, transparent 72%);
  pointer-events: none;
}

.be-lovable-hero__copy {
  max-width: 42rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.be-lovable-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
}

.be-lovable-hero__title {
  margin: 1rem 0 0;
  font-family: var(--be-font-title);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff !important;
}

.be-lovable-hero__excerpt {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.be-lovable-hero__cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #8f4f58 !important;
  border-radius: 8px;
  font-family: var(--be-font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.be-lovable-hero__cat {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-family: var(--be-font-ui);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
}

.be-lovable-hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.75rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.be-lovable-hero__dot {
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.be-lovable-hero__dot::before {
  content: "";
  display: block;
  width: 8px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.be-lovable-hero__dot.is-active::before {
  width: 32px;
  background: #fff;
}

.be-editorial-intro { border-bottom: 1px solid var(--be-border); padding-bottom: 1rem; }
.be-editorial-intro .be-editoriais {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 1280px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}
@media (min-width: 480px) {
  .be-editorial-intro .be-editoriais { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .be-editorial-intro .be-editoriais { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .be-editorial-intro .be-editoriais { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.be-editorial-card--autocuidado { background: linear-gradient(135deg, #f2e8e9, #faf5f0); }
.be-editorial-card--qdv { background: linear-gradient(135deg, #eef4ea, #f5f0e8); }
.be-editorial-card--antiidade { background: linear-gradient(135deg, #f5ebe8, #f2e8e9); }

.be-editorial-disclaimer {
  margin: 0 0 1.25rem;
  padding: 1rem 1.125rem;
  border-left: 3px solid var(--be-rose);
  background: var(--be-blush);
  border-radius: 0 var(--be-radius) var(--be-radius) 0;
  font-size: 0.875rem;
  color: var(--be-muted);
  line-height: 1.55;
}
.be-editorial-disclaimer strong { color: var(--be-ink); }


.be-hub-hero { border-bottom: 1px solid var(--be-border); text-align: center; padding: 4rem 1rem 3rem; }
.be-hub-hero--rose { background: var(--be-blush); }
.be-hub-hero--gold { background: var(--be-cream); }
.be-hub-hero__title { margin: 0.75rem 0 0; font-family: var(--be-font-title); font-size: clamp(2.5rem, 6vw, 3.75rem); line-height: 1.05; }
.be-hub-hero--rose .be-hub-hero__title { color: var(--be-rose); }
.be-hub-hero--gold .be-hub-hero__title { color: var(--be-gold); }
.be-hub-hero__subtitle { max-width: 42rem; margin: 1rem auto 0; font-size: 1.125rem; color: var(--be-muted); line-height: 1.6; }
.be-hub-grid-section { padding: 2.5rem 0 3.5rem; }
.be-hub-empty { color: var(--be-muted); }
.be-split-intro { text-align: center; padding: 3.5rem 1rem 2rem; }
.be-kicker { font-family: var(--be-font-ui); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.3em; color: #8f4f58; font-weight: 600; }
.be-split-intro__title { margin: 0.5rem 0 0; font-family: var(--be-font-title); font-size: clamp(1.75rem, 4vw, 2.25rem); }

.be-split-col__title { margin: 0; font-family: var(--be-font-title); font-size: 1.875rem; }
.be-split--rose .be-split-col__title { color: var(--be-rose); }
.be-split--gold .be-split-col__title { color: var(--be-gold); }
.be-split-row { display: flex; gap: 1rem; margin-top: 0.75rem; padding: 0.75rem; background: rgba(255,255,255,0.8); border-radius: 8px; text-decoration: none; color: inherit; }
.be-split-row__thumb { width: 80px; height: 80px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: var(--be-blush); }
.be-split-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.be-split-col__cta { display: inline-block; margin-top: 1.5rem; padding: 0.625rem 1.25rem; border-radius: 8px; color: #fff !important; text-decoration: none; font-family: var(--be-font-ui); font-size: 0.6875rem; text-transform: uppercase; }
.be-split--rose .be-split-col__cta { background: var(--be-rose); }
.be-split--gold .be-split-col__cta { background: var(--be-gold); }

.be-pills-wrap { padding: 3.5rem 0 0; }
.be-pills { display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.5rem; }
.be-pill { flex-shrink: 0; padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid var(--be-border); background: #fff; color: #4a4a4a; font-family: var(--be-font-ui); font-size: 0.6875rem; text-transform: uppercase; text-decoration: none; }
.be-pill--active, .be-pill:hover { background: var(--be-rose); border-color: var(--be-rose); color: #fff; }

.be-main-section { padding: 2.5rem 0 3rem; }

.be-lovable-card__link { display: block; position: relative; background: #fff; border: 1px solid var(--be-border); border-radius: var(--be-radius); overflow: hidden; text-decoration: none; color: inherit; }
.be-lovable-card__link:hover { box-shadow: var(--be-shadow-lift); }
.be-lovable-card__media { display: block; aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, var(--be-blush), var(--be-cream)); }
.be-lovable-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.be-lovable-card__link:hover .be-lovable-card__img { transform: scale(1.05); }
.be-lovable-card__body { display: block; padding: 1.25rem; }
.be-badge { display: inline-block; padding: 0.25rem 0.625rem; border-radius: 999px; font-family: var(--be-font-ui); font-size: 0.625rem; text-transform: uppercase; color: #fff; font-weight: 600; }
.be-badge--saude, .be-badge--default { background: #8f4f58; }
.be-badge--beleza { background: #7a5f35; }
.be-badge--fitness { background: var(--be-cat-fitness); }
.be-badge--nutricao { background: var(--be-cat-nutricao); }
.be-badge--mente { background: var(--be-cat-mente); }
.be-lovable-card__title { display: block; margin-top: 0.75rem; font-family: var(--be-font-title); font-size: 1.25rem; line-height: 1.3; color: var(--be-ink); }
.be-lovable-card__excerpt { display: block; margin-top: 0.5rem; font-size: 0.875rem; color: var(--be-muted); line-height: 1.6; }
.be-lovable-card__meta { display: block; margin-top: 1rem; font-family: var(--be-font-ui); font-size: 0.6875rem; text-transform: uppercase; color: var(--be-muted); }

.be-lovable-widget, .be-lovable-newsletter { background: #fff; border: 1px solid var(--be-border); border-radius: var(--be-radius); padding: 1.25rem; margin-bottom: 1.5rem; }
.be-lovable-widget__title { margin: 0 0 1rem; font-family: var(--be-font-title); font-size: 1.125rem; }
.be-lovable-hot { list-style: none; margin: 0; padding: 0; }
.be-lovable-hot li { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }
.be-lovable-hot__num { font-family: var(--be-font-title); font-size: 1.5rem; color: rgba(183,110,121,0.4); width: 1.5rem; }
.be-lovable-hot a { font-size: 0.875rem; color: var(--be-ink); text-decoration: none; }
.be-lovable-newsletter { background: linear-gradient(135deg, var(--be-rose), rgba(183,110,121,0.85)); border: none; color: #fff; }
.be-lovable-newsletter__form { display: grid; gap: 0.5rem; margin-top: 1rem; }
.be-lovable-newsletter__form input, .be-lovable-newsletter__form button { padding: 0.625rem; border-radius: 6px; border: none; }

.be-destaques { background: rgba(242,232,233,0.6); border-top: 1px solid var(--be-border); padding: 3.5rem 0; margin-top: 1rem; }
.be-destaques__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .be-destaques__grid { grid-template-columns: 1fr 1fr; } }
.be-featured-large { display: block; background: #fff; border: 1px solid var(--be-border); border-radius: var(--be-radius); overflow: hidden; text-decoration: none; color: inherit; }
.be-featured-large__media { display: block; aspect-ratio: 16/10; overflow: hidden; }
.be-featured-large__media img { width: 100%; height: 100%; object-fit: cover; }
.be-featured-large__body { display: block; padding: 1.5rem; }
.be-featured-small { display: flex; gap: 1rem; padding: 0.75rem; background: #fff; border: 1px solid var(--be-border); border-radius: var(--be-radius); text-decoration: none; color: inherit; margin-bottom: 1rem; }
.be-featured-small__thumb { width: 112px; height: 112px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: var(--be-blush); }
.be-featured-small__thumb img { width: 100%; height: 100%; object-fit: cover; }

.be-footer-inner .be-footer-col__title { font-family: var(--be-font-ui); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--be-gold-on-dark); }
.be-footer-inner a { color: rgba(250,250,248,0.8); text-decoration: none; font-size: 0.875rem; }
.be-footer-bottom { max-width: 1280px; margin: 0 auto; padding: 1.5rem 1rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.75rem; color: rgba(250,250,248,0.82); }

.be-footer-col__title {
  margin: 0 0 0.75rem;
  font-family: var(--be-font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250, 250, 248, 0.92);
}

.be-nav-toggle { display: none; border: none; background: transparent; cursor: pointer; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; padding: 0.5rem; }

.be-nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--be-ink);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.be-custom-header.is-nav-open .be-nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.be-custom-header.is-nav-open .be-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.be-custom-header.is-nav-open .be-nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body.be-nav-open {
  overflow: hidden;
}

@media (min-width: 768px) { .be-split-grid { grid-template-columns: 1fr 1fr; } }

.be-split--rose { background: var(--be-blush); }
.be-split--gold { background: var(--be-cream); }
.be-split-col { padding: 3rem 1.5rem; }

.be-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .be-main-grid { grid-template-columns: minmax(0, 1fr) 320px; }
}

.be-post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) { .be-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .be-post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.be-custom-footer {
  background: var(--be-footer-bg);
  color: #fafaf8;
  margin-top: 5rem;
}

.be-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 1rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .be-footer-inner { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}

@media (max-width: 1023px) {
  .be-nav-toggle { display: inline-flex; }
  .be-header-inner { position: relative; flex-wrap: wrap; align-items: center; padding: 0.65rem 1rem; gap: 0.5rem; }
  .be-brand { flex: 1; min-width: 0; }
  .be-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fafaf8; border-bottom: 1px solid var(--be-border); padding: 0.5rem 1rem 1rem; z-index: 5; }
  .be-custom-header.is-nav-open .be-nav { display: block; }
  .be-nav ul { flex-direction: column; gap: 0; }
  .be-nav a { display: block; padding: 0.75rem 0; font-size: 0.95rem; }
  .be-lovable-hero__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .be-featured-small { flex-direction: column; }
  .be-featured-small__thumb { width: 100%; height: auto; aspect-ratio: 16 / 10; }
}

/* Legal + contact + cookies */
.be-legal-wrap { padding: 2rem 0 4rem; }
.be-legal-shell { max-width: 720px; margin: 0 auto; padding: 0 1rem; }
.be-legal-breadcrumb { font-size: 0.8125rem; color: var(--be-muted); margin-bottom: 1rem; }
.be-legal-breadcrumb a { color: var(--be-rose); text-decoration: none; }
.be-legal-content h1 { margin: 0 0 1rem; font-family: var(--be-font-title); color: var(--be-rose); }
.be-legal-updated { font-size: 0.875rem; color: var(--be-muted); margin: -0.5rem 0 1.25rem; }
.be-legal-content h2 { margin: 1.75rem 0 0.75rem; font-family: var(--be-font-title); font-size: 1.25rem; }
.be-legal-content p, .be-legal-content li { line-height: 1.65; color: var(--be-ink); }
.be-legal-content a { color: var(--be-rose); }
.be-legal-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.875rem; }
.be-legal-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
}
.be-legal-table-wrap .be-legal-table { margin: 0; min-width: 36rem; }
.be-legal-table th, .be-legal-table td { border: 1px solid var(--be-border); padding: 0.625rem; text-align: left; }
.be-legal-table th { background: var(--be-blush); }
.be-legal-btn { padding: 0.625rem 1rem; border: none; border-radius: 8px; background: var(--be-rose); color: #fff; cursor: pointer; font-family: var(--be-font-ui); }

.be-contact-wrap { padding: 2.5rem 1rem 4rem; max-width: 640px; }
.be-contact-intro { color: var(--be-muted); margin-bottom: 1.5rem; }
.be-contact-form label { display: block; margin: 1rem 0 0.35rem; font-family: var(--be-font-ui); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.06em; }
.be-contact-form input, .be-contact-form textarea { width: 100%; padding: 0.75rem; border: 1px solid var(--be-border); border-radius: 8px; font: inherit; }
.be-contact-form textarea { min-height: 160px; resize: vertical; }
.be-contact-consent { display: flex; gap: 0.625rem; align-items: flex-start; margin-top: 1.25rem; font-size: 0.875rem; line-height: 1.5; color: var(--be-ink); text-transform: none; letter-spacing: normal; font-weight: 400; }
.be-contact-consent input { width: auto; margin-top: 0.2rem; flex-shrink: 0; }
.be-contact-consent a { color: var(--be-rose); }
.be-contact-form button { margin-top: 1.25rem; padding: 0.75rem 1.5rem; border: none; border-radius: 8px; background: var(--be-rose); color: #fff; cursor: pointer; font-family: var(--be-font-ui); }
.be-alert { padding: 0.875rem 1rem; border-radius: 8px; margin-bottom: 1rem; }
.be-alert--ok { background: #eef4ea; color: #2d5016; }
.be-alert--err { background: #fce8ea; color: #7a1f2b; }

.be-cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 99999;
  background: #2c2c2c; color: #fafaf8; padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
  transform: translateY(110%); transition: transform 0.25s ease;
}
.be-cookie-banner.is-visible { transform: translateY(0); }
.be-cookie-banner-inner { max-width: 1280px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.be-cookie-banner-text { margin: 0; font-size: 0.875rem; line-height: 1.5; max-width: 52rem; }
.be-cookie-banner-text a { color: var(--be-gold); }
.be-cookie-banner-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.be-cookie-btn { padding: 0.5rem 1rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.25); cursor: pointer; font-family: var(--be-font-ui); font-size: 0.8125rem; }
.be-cookie-btn-accept { background: var(--be-rose); border-color: var(--be-rose); color: #fff; }
.be-cookie-btn-reject { background: transparent; color: #fafaf8; }

@media (max-width: 640px) {
  .be-cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .be-cookie-banner-actions { width: 100%; }
  .be-cookie-btn { flex: 1; min-height: 44px; }
  .be-legal-shell { padding: 1rem 0.875rem; }
  .be-legal-content h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .be-lovable-card__title { font-size: 1.0625rem; }
  .be-lovable-card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .be-lovable-newsletter__form button { min-height: 44px; }
  .be-contact-form button { width: 100%; min-height: 44px; }
}

.entry-content img,
.entry-content iframe,
.entry-content video,
.entry-content embed,
.be-single-content img,
.be-single-content iframe {
  max-width: 100%;
  height: auto;
}

.be-pills {
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.be-main-section {
  padding-bottom: 2rem;
}

@media (max-width: 1023px) {
  .be-lovable-sidebar,
  .be-sidebar {
    margin-top: 0.5rem;
  }
}

.be-sitemap-wrap { padding: 2.5rem 1rem 4rem; max-width: 1280px; margin: 0 auto; }
.be-sitemap-head { margin-bottom: 2rem; }
.be-sitemap-desc { color: var(--be-muted); margin: 0.5rem 0 0; }
.be-sitemap-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .be-sitemap-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.be-sitemap-col-title { font-family: var(--be-font-title); color: var(--be-rose); font-size: 1.125rem; margin: 0 0 1rem; }
.be-sitemap-list { list-style: none; margin: 0; padding: 0; }
.be-sitemap-list li { margin-bottom: 0.5rem; font-size: 0.875rem; }
.be-sitemap-list a { color: var(--be-ink); text-decoration: none; }
.be-sitemap-list a:hover { color: var(--be-rose); }
.be-anuncie-grid { display: grid; gap: 2rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .be-anuncie-grid { grid-template-columns: 1fr 1fr; } }
