/* ============================================================
   MULHER CONECTADA — CSS Principal
   Fiel ao mockup aprovado em 08/05/2026
   ============================================================ */

/* ── Variaveis ───────────────────────────────────────────── */
:root {
  --mc-accent:       #B3256F;
  --mc-accent-dark:  #7A1A4C;
  --mc-accent-light: #F9EDF4;
  --mc-bg:           #FFFFFF;
  --mc-text:         #1A1A1A;
  --mc-muted:        #6B6B6B;
  --mc-border:       rgba(0,0,0,0.10);
  --mc-border-md:    rgba(0,0,0,0.18);
  --mc-surface:      #F5F5F3;
  --mc-overlay:      rgba(8,8,8,0.78);
  --mc-dark:         #1A1A1A;
  --mc-container:    1080px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  background: var(--mc-bg);
  color: var(--mc-text);
  line-height: 1.6;
  margin: 0;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; transition: color 0.15s; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.28;
  color: var(--mc-text);
}
p { margin: 0 0 1rem; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ── Container ───────────────────────────────────────────── */
.mc-container {
  max-width: var(--mc-container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) { .mc-container { padding: 0 16px; } }

/* ── Topbar ──────────────────────────────────────────────── */
.mc-topbar {
  border-bottom: 0.5px solid var(--mc-border);
  padding: 5px 0;
}
.mc-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mc-topbar-date { font-size: 10px; color: var(--mc-muted); }
.mc-topbar-links { display: flex; gap: 14px; align-items: center; }
.mc-topbar-links a {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mc-muted);
}
.mc-topbar-links a:hover { color: var(--mc-text); }
.mc-topbar-icon { font-size: 14px; color: var(--mc-muted); }

/* ── Masthead ────────────────────────────────────────────── */
.mc-masthead {
  text-align: center;
  padding: 18px 0;
  border-bottom: 2.5px solid var(--mc-text);
}
.mc-logo {
  display: block;
  text-decoration: none;
  line-height: 1;
}
.mc-logo-img {
  max-height: 72px;
  width: auto;
  margin: 0 auto;
  display: block;
}

/* ── Nav principal ───────────────────────────────────────── */
.mc-mainnav {
  display: flex;
  justify-content: center;
  border-bottom: 0.5px solid var(--mc-border);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.mc-mainnav a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mc-muted);
  padding: 11px 10px;
  border-bottom: 2.5px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.mc-mainnav a:hover                                  { color: var(--mc-text); }
.mc-mainnav a.current-menu-item,
.mc-mainnav a.current-cat-ancestor                   { color: var(--mc-accent); border-bottom-color: var(--mc-accent); }
.mc-mainnav .mc-newsletter-link                      { color: var(--mc-accent); }

/* ── Tags / Badges ───────────────────────────────────────── */
.mc-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  line-height: 1.4;
}
.mc-tag-fill  { background: var(--mc-accent); color: #fff; }
.mc-tag-dark  { background: rgba(0,0,0,0.72); color: #fff; }
.mc-tag-ghost { color: var(--mc-accent); border: 0.5px solid var(--mc-accent); background: transparent; }
.mc-tag-muted { background: var(--mc-surface); color: var(--mc-muted); border: 0.5px solid var(--mc-border); }

/* ── Hero ────────────────────────────────────────────────── */
.mc-hero {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}
.mc-hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.mc-hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--mc-overlay);
  padding: 18px 20px 16px;
}
.mc-hero-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}
.mc-hero-date { font-size: 10px; color: rgba(255,255,255,0.6); }
.mc-hero-title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  line-height: 1.28;
  margin: 0 0 10px;
  text-decoration: none;
  display: block;
}
.mc-hero-title:hover { color: rgba(255,255,255,0.85); }
.mc-hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.mc-hero-byline { font-size: 10px; color: rgba(255,255,255,0.6); }
.mc-hero-byline strong { color: rgba(255,255,255,0.9); font-weight: 600; }

@media (max-width: 600px) {
  .mc-hero-img     { height: 220px; }
  .mc-hero-title   { font-size: 16px; }
  .mc-hero-overlay { padding: 14px; }
}

/* ── Layout principal + sidebar ──────────────────────────── */
.mc-content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 188px;
  gap: 20px;
  align-items: start;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .mc-content-wrap        { grid-template-columns: 1fr; }
  .mc-sidebar             { order: -1; }
}

/* ── Section Divider ─────────────────────────────────────── */
.mc-section-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 13px;
}
.mc-section-divider::before,
.mc-section-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--mc-border);
}
.mc-section-divider-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mc-text);
  white-space: nowrap;
}

/* ── Cards de artigo ─────────────────────────────────────── */
.mc-card { display: flex; flex-direction: column; }
.mc-card-img-wrap {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}
.mc-card-img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.mc-card:hover .mc-card-img { transform: scale(1.03); }
.mc-card-tag-pos { position: absolute; top: 8px; left: 8px; }
.mc-card-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--mc-text);
  margin: 6px 0 4px;
  text-decoration: none;
  display: block;
}
.mc-card-title:hover { color: var(--mc-accent); }
.mc-card-meta { font-size: 10px; color: var(--mc-muted); }

/* Grid 2 colunas (destaques) */
.mc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-bottom: 16px;
}
@media (max-width: 480px) { .mc-grid-2 { grid-template-columns: 1fr; } }

/* ── Card artigo featured ── */
.mc-featured-img-wrap {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
}
.mc-featured-img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  display: block;
}
.mc-featured-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.28;
  color: var(--mc-text);
  margin: 7px 0 6px;
  text-decoration: none;
  display: block;
}
.mc-featured-title:hover { color: var(--mc-accent); }
.mc-featured-excerpt {
  font-size: 12px;
  color: var(--mc-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.mc-read-more {
  font-size: 11px;
  font-weight: 700;
  color: var(--mc-accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.mc-read-more:hover { color: var(--mc-accent-dark); }

/* ── Card horizontal (Em BH e listas) ───────────────────── */
.mc-card-h { display: flex; gap: 12px; }
.mc-card-h-img {
  width: 88px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: cover;
}
.mc-card-h-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--mc-text);
  line-height: 1.4;
  margin: 5px 0 4px;
  text-decoration: none;
  display: block;
}
.mc-card-h-title:hover { color: var(--mc-accent); }

/* ── Sidebar ─────────────────────────────────────────────── */
.mc-sidebar-section-header {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mc-text);
  padding-bottom: 7px;
  border-bottom: 2.5px solid var(--mc-accent);
  margin-bottom: 10px;
}

/* Instagram preview */
.mc-instagram-handle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.mc-instagram-handle-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--mc-text);
  display: flex;
  align-items: center;
  gap: 5px;
}
.mc-instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-bottom: 8px;
}
.mc-instagram-cell {
  aspect-ratio: 1/1;
  border-radius: 2px;
  overflow: hidden;
}
.mc-instagram-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mc-instagram-placeholder { background: var(--mc-accent-light); }
.mc-instagram-placeholder:nth-child(even) { background: var(--mc-surface); }
.mc-instagram-note {
  font-size: 9px;
  color: var(--mc-muted);
  text-align: center;
  margin-bottom: 10px;
}

/* Botao Seguir */
.mc-follow-btn {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 2px;
  border: 0.5px solid var(--mc-accent);
  color: var(--mc-accent);
  background: transparent;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mc-follow-btn:hover { background: var(--mc-accent); color: #fff; }

/* Mais Lidas */
.mc-ml-list { list-style: none; }
.mc-ml-item {
  display: flex;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 0.5px solid var(--mc-border);
  align-items: flex-start;
}
.mc-ml-item:last-child { border-bottom: none; padding-bottom: 0; }
.mc-ml-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--mc-border);
  line-height: 1;
  min-width: 18px;
  user-select: none;
}
.mc-ml-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--mc-text);
  line-height: 1.4;
  margin-top: 3px;
  text-decoration: none;
  display: block;
}
.mc-ml-title:hover { color: var(--mc-accent); }

/* Newsletter sidebar */
.mc-newsletter-sidebar {
  background: var(--mc-surface);
  border: 0.5px solid var(--mc-border);
  border-radius: 6px;
  padding: 12px;
  margin-top: 14px;
}
.mc-newsletter-sidebar-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--mc-text);
  margin-bottom: 5px;
}
.mc-newsletter-sidebar-sub {
  font-size: 10px;
  color: var(--mc-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

/* ── Newsletter Banner (full-width, fundo escuro) ────────── */
.mc-newsletter-banner {
  background: var(--mc-dark);
  border-radius: 6px;
  padding: 22px;
  margin: 18px 0 16px;
  text-align: center;
}
.mc-newsletter-banner-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 5px;
}
.mc-newsletter-banner-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.mc-newsletter-form {
  display: flex;
  gap: 7px;
  max-width: 380px;
  margin: 0 auto;
}

/* Inputs padrao */
.mc-input {
  flex: 1;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  padding: 8px 12px;
  border: 0.5px solid var(--mc-border-md);
  border-radius: 3px;
  color: var(--mc-text);
  background: var(--mc-bg);
  outline: none;
  transition: border-color 0.15s;
}
.mc-input:focus { border-color: var(--mc-accent); }
.mc-input-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.mc-input-dark::placeholder { color: rgba(255,255,255,0.4); }

/* Botoes */
.mc-btn {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.15s;
}
.mc-btn-accent  { background: var(--mc-accent); color: #fff; }
.mc-btn-accent:hover { background: var(--mc-accent-dark); }
.mc-btn-full    { width: 100%; }
.mc-btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 3px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border: none;
}

/* ── Footer ──────────────────────────────────────────────── */
.mc-footer {
  border-top: 0.5px solid var(--mc-border);
  padding: 16px 0 10px;
  margin-top: 8px;
}
.mc-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.mc-footer-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--mc-text);
  text-decoration: none;
  line-height: 1;
}
.mc-footer-social { display: flex; gap: 10px; align-items: center; }
.mc-footer-social a {
  display: flex;
  align-items: center;
  color: var(--mc-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.mc-footer-social a:hover { color: var(--mc-accent); }
.mc-footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 8px;
  padding: 0;
  list-style: none;
}
/* reset dos <li> gerados pelo wp_nav_menu */
.mc-footer-links li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.mc-footer-links a {
  font-size: 10px;
  font-weight: 500;
  color: var(--mc-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.mc-footer-links a:hover { color: var(--mc-text); }
.mc-footer-copy {
  font-size: 9px;
  color: var(--mc-muted);
  margin: 0;
}

/* ── Pagina de artigo (single.php) ───────────────────────── */
.mc-single-header {
  max-width: 720px;
  margin: 0 auto 32px;
}
.mc-single-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.22;
  margin: 12px 0 14px;
}
.mc-single-excerpt {
  font-size: 16px;
  font-weight: 400;
  color: var(--mc-muted);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 0.5px solid var(--mc-border);
}
.mc-single-hero-img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 32px;
}
.mc-single-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}
.mc-single-body p    { margin-bottom: 1.5rem; }
.mc-single-body h2   { font-size: 22px; margin: 2rem 0 1rem; }
.mc-single-body h3   { font-size: 18px; margin: 1.5rem 0 0.75rem; }
.mc-single-body a    { color: var(--mc-accent); text-decoration: underline; }
.mc-single-body blockquote {
  border-left: 3px solid var(--mc-accent);
  padding: 12px 20px;
  margin: 1.5rem 0;
  background: var(--mc-accent-light);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--mc-muted);
}

/* ── Pagina de contato ───────────────────────────────────── */
.mc-contact-form .wpcf7-form-control-wrap { display: block; margin-bottom: 14px; }
.mc-contact-form input[type="text"],
.mc-contact-form input[type="email"],
.mc-contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 0.5px solid var(--mc-border-md);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  background: var(--mc-bg);
  color: var(--mc-text);
  outline: none;
  transition: border-color 0.15s;
}
.mc-contact-form input:focus,
.mc-contact-form textarea:focus { border-color: var(--mc-accent); }
.mc-contact-form textarea { height: 140px; resize: vertical; }
.mc-contact-form input[type="submit"] {
  padding: 12px 28px;
  background: var(--mc-accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}
.mc-contact-form input[type="submit"]:hover { background: var(--mc-accent-dark); }

/* ── Responsivo geral ────────────────────────────────────── */
@media (max-width: 768px) {
  .mc-masthead       { padding: 14px 0; }
  .mc-logo-img       { max-height: 56px; }
  .mc-single-title   { font-size: 22px; }
  .mc-single-body    { font-size: 15px; }
}

/* ── Lista horizontal (Vida Real, Cotidiano, Em BH) ─────── */
.mc-list-h {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.mc-card-h-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mc-card-h-body .mc-tag { margin-bottom: 2px; }

/* ── Single post ─────────────────────────────────────────── */
.mc-single-wrap { max-width: 720px; margin: 32px auto 0; }
.mc-single-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--mc-border);
}
.mc-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 24px 0;
}
.mc-single-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 40px;
  padding-top: 20px;
  border-top: 0.5px solid var(--mc-border);
}
.mc-single-share-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--mc-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Paginas estaticas ───────────────────────────────────── */
.mc-page-wrap { max-width: 720px; margin: 32px auto 0; }
.mc-page-header { margin-bottom: 24px; }

/* ── Paginacao ───────────────────────────────────────────── */
.mc-pagination { margin: 24px 0 8px; }
.mc-pagination .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mc-pagination .page-numbers {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 3px;
  border: 0.5px solid var(--mc-border-md);
  color: var(--mc-muted);
  text-decoration: none;
  transition: all 0.15s;
}
.mc-pagination .page-numbers.current,
.mc-pagination .page-numbers:hover {
  background: var(--mc-accent);
  color: #fff;
  border-color: var(--mc-accent);
}

/* ── Banner LGPD ─────────────────────────────────────────── */
.mc-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--mc-dark);
  color: #fff;
  padding: 16px 0;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.mc-cookie-banner.is-visible {
  transform: translateY(0);
}
.mc-cookie-inner {
  max-width: var(--mc-container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mc-cookie-text {
  flex: 1;
  min-width: 0;
}
.mc-cookie-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.mc-cookie-text p {
  font-size: 11px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin: 0;
}
.mc-cookie-text a {
  color: var(--mc-accent-light);
  text-decoration: underline;
}
.mc-cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.mc-cookie-btn {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  cursor: pointer;
  border: 0.5px solid rgba(255,255,255,0.3);
  transition: all 0.15s;
  white-space: nowrap;
}
.mc-cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
}
.mc-cookie-btn-reject:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.mc-cookie-btn-accept {
  background: var(--mc-accent);
  color: #fff;
  border-color: var(--mc-accent);
}
.mc-cookie-btn-accept:hover {
  background: var(--mc-accent-dark);
  border-color: var(--mc-accent-dark);
}
@media (max-width: 600px) {
  .mc-cookie-inner  { flex-direction: column; align-items: flex-start; }
  .mc-cookie-actions { width: 100%; }
  .mc-cookie-btn    { flex: 1; text-align: center; }
}

/* ── Contact Form 7 — estilo do portal ──────────────────── */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
  margin-top: 20px;
}
.wpcf7-form p { margin: 0; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  padding: 10px 14px;
  border: 0.5px solid var(--mc-border-md);
  border-radius: 3px;
  color: var(--mc-text);
  background: var(--mc-bg);
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus { border-color: var(--mc-accent); }
.wpcf7-form textarea { min-height: 120px; resize: vertical; }
.wpcf7-form input[type="submit"] {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 24px;
  background: var(--mc-accent);
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s;
  align-self: flex-start;
}
.wpcf7-form input[type="submit"]:hover { background: var(--mc-accent-dark); }
.wpcf7-not-valid-tip { font-size: 11px; color: #c0392b; margin-top: 3px; display: block; }
.wpcf7-response-output {
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 3px;
  border: 0.5px solid var(--mc-border-md);
  margin-top: 8px;
}
.wpcf7-mail-sent-ok { border-color: #27ae60; color: #27ae60; background: #f0fdf4; }
.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked  { border-color: #c0392b; color: #c0392b; background: #fff5f5; }

/* Página de contato / anuncie */
.mc-page-wrap {
  max-width: 720px;
  margin: 32px auto 48px;
  padding: 0 16px;
}
.mc-page-header { margin-bottom: 16px; }

/* ── Sobrescrever Astra ──────────────────────────────────── */
.ast-container,
.site-content .ast-container { max-width: none; padding: 0; }
#page { background: var(--mc-bg); }
.ast-header-break-point .ast-mobile-header-wrap { display: none; }
.site-header { display: none !important; }
.site-footer { display: none !important; }
.ast-above-header-bar, .ast-primary-header-bar,
.ast-below-header-bar { display: none !important; }
.entry-content, .ast-article-inner-content,
.site-main { padding: 0 !important; margin: 0 !important; }
