/*
Theme Name: NewsWP
Theme URI: https://walkerwp.com/newswp-wordpress-theme/
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, e-commerce, full-site-editing, block-patterns, full-width-template, rtl-language-support, threaded-comments, translation-ready, block-styles, wide-blocks
Author: WalkerWP
Author URI: https://walkerwp.com/
Description: NewsWP customizado para blog/portal no estilo Portal Fest TV, com identidade escura, destaque magenta, layout de notícias, menu responsivo, sidebar e rodapé profissional mantendo a estrutura nativa do WordPress.
Version: 1.2.8-portal-fest-v28
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: newswp
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
.newswp-text-deocration-none a {
  text-decoration: none;
}
.wp-block-navigation__responsive-container.is-menu-open {
  padding: 15px;
}
/* **************************************** CORE BLOCKS **************************************** */
/* ********** Navigation ********** */
ul.is-style-link-hover-primary li a:hover {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary) !important;
}
ul.is-style-link-hover-primary li a {
  padding: 15px 8px 17px 8px;
}
ul.is-style-link-hover-primary .current-menu-item a {
  background: var(--wp--preset--color--white) !important;
  color: var(--wp--preset--color--primary) !important;
}
/* Secondary */
ul.is-style-link-hover-secondary li a:hover {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--secondary) !important;
}
ul.is-style-link-hover-secondary li a {
  padding: 15px 8px 17px 8px;
}
ul.is-style-link-hover-secondary .current-menu-item a {
  background: var(--wp--preset--color--white) !important;
  color: var(--wp--preset--color--secondary) !important;
}
/* Terniary */
ul.is-style-link-hover-terniary li a:hover {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--terniary) !important;
}
ul.is-style-link-hover-terniary li a {
  padding: 15px 8px 17px 8px;
}
ul.is-style-link-hover-terniary .current-menu-item a {
  background: var(--wp--preset--color--white) !important;
  color: var(--wp--preset--color--terniary) !important;
}
/* ***** Pgae-List ***** */
.is-style-hide-bullet-list {
  list-style-type: none;
  padding: 0px;
}
/*********** Group / Row ***********/
.is-style-box-shadow-hover {
  transition: all 0.2s ease-in-out;
}
.is-style-box-shadow {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}
.is-style-box-shadow-medium {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}
.is-style-box-shadow-large {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}
.is-style-box-shadow-hover:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out;
}
/*********** Cover / Featured Image / Image ***********/
.is-style-cover-hover-zoom-in,
.is-style-cover-hover-zoom-out {
  overflow: hidden;
}
.is-style-cover-hover-zoom-in img {
  transform: scale(1);
  transition: all ease-in-out 0.2s;
}
.is-style-cover-hover-zoom-in:hover img {
  transform: scale(1.2);
  transition: all ease-in-out 0.2s;
}
.is-style-cover-hover-zoom-out img {
  transform: scale(1.2);
  transition: all ease-in-out 0.2s;
}
.is-style-cover-hover-zoom-out:hover img {
  transform: scale(1);
  transition: all ease-in-out 0.2s;
}
.is-style-image-pulse img {
  animation: pulse 2s infinite;
}
.is-style-image-hover-pulse:hover img {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.is-style-image-spin img {
  animation: spin 2s linear infinite;
  animation-play-state: running;
}
.is-style-image-spin img:hover {
  animation-play-state: paused;
  transition: all 0.2s ease-in-out;
}
.is-style-image-hover-spin:hover img {
  animation: spin 2s linear infinite;
  transition: all 0.2s ease-in-out;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*********** Categories ***********/
.is-style-category-background-primary > span.wp-block-post-terms__separator,
.is-style-category-background-secondary > span.wp-block-post-terms__separator,
.is-style-category-background-mixed > span.wp-block-post-terms__separator {
  display: none !important;
}
.is-style-category-background-primary,
.is-style-category-background-secondary,
.is-style-category-background-mixed {
  display: flex;
  gap: 5px;
}
.is-style-category-background-primary > a,
.is-style-category-background-secondary > a,
.is-style-category-background-mixed > a,
.is-style-category-background-primary > span,
.is-style-category-background-secondary > span,
.is-style-category-background-mixed > span {
  padding: 2px 5px 2px 5px;
  text-decoration: none;
}
/* Primary */
.is-style-category-background-primary > a,
.is-style-category-background-primary > span {
  background: var(--wp--preset--color--primary);
}
.is-style-category-background-primary > a:hover,
.is-style-category-background-primary > span:hover {
  background-color: var(--wp--preset--color--secondary);
  transition: all ease-in-out 0.2s;
}
/* Secondary */
.is-style-category-background-secondary > a,
.is-style-category-background-secondary > span {
  background: var(--wp--preset--color--secondary);
}
.is-style-category-background-secondary > a:hover,
.is-style-category-background-secondary > span:hover {
  background: var(--wp--preset--color--primary);
  transition: all ease-in-out 0.2s;
}
/* Mixed */
.is-style-category-background-mixed > a:nth-child(3n + 1) {
  background-color: var(--wp--preset--color--primary);
}
.is-style-category-background-mixed > a:nth-child(3n + 1):hover {
  background-color: var(--wp--preset--color--secondary);
}
.is-style-category-background-mixed > a:nth-child(3n + 2) {
  background-color: var(--wp--preset--color--terniary);
}
.is-style-category-background-mixed > a:nth-child(3n + 2):hover {
  background-color: var(--wp--preset--color--primary);
}
.is-style-category-background-mixed > a:nth-child(3n) {
  background-color: var(--wp--preset--color--secondary);
}
.is-style-category-background-mixed > a:nth-child(3n):hover {
  background-color: var(--wp--preset--color--terniary);
}
/* Single Post */
.is-style-category-background-mixed > span:nth-child(3n + 1) {
  background-color: var(--wp--preset--color--primary);
}
.is-style-category-background-mixed > span:nth-child(3n + 1):hover {
  background-color: var(--wp--preset--color--secondary);
}
.is-style-category-background-mixed > span:nth-child(3n + 2) {
  background-color: var(--wp--preset--color--terniary);
}
.is-style-category-background-mixed > span:nth-child(3n + 2):hover {
  background-color: var(--wp--preset--color--primary);
}
.is-style-category-background-mixed > span:nth-child(3n) {
  background-color: var(--wp--preset--color--secondary);
}
.is-style-category-background-mixed > span:nth-child(3n):hover {
  background-color: var(--wp--preset--color--terniary);
}

/*********** Pagination ***********/
.is-style-pagination-primary a {
  border: 1px solid var(--wp--preset--color--primary);
  text-decoration: none;
  padding: 8px 16px 8px 16px;
}
.is-style-pagination-primary span.current {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  padding: 9px 17px 9px 17px;
}
.is-style-pagination-primary a:hover {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}
.is-style-pagination-secondary a {
  border: 1px solid var(--wp--preset--color--secondary);
  text-decoration: none;
  padding: 8px 16px 8px 16px;
}
.is-style-pagination-secondary span.current {
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  padding: 9px 17px 9px 17px;
}
.is-style-pagination-secondary a:hover {
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
}

/* ********** Read More ********** */
.is-style-read-more-primary:hover {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--light) !important;
}
.is-style-read-more-secondary:hover {
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--light) !important;
}

/* ********** Post Title ********** */
.is-style-title-hover-primary.wp-block-post-title a:hover,
.is-style-title-hover-secondary.wp-block-post-title a:hover {
  background-size: 100% 3px;
}
.is-style-title-hover-primary a {
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(var(--wp--preset--color--primary), var(--wp--preset--color--primary));
  background-position: 0 1.05em;
  background-size: 0 3px;
  background-repeat: no-repeat;
  transition: background-size 0.5s;
}
.is-style-title-hover-secondary a {
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(var(--wp--preset--color--secondary), var(--wp--preset--color--secondary));
  background-position: 0 1.05em;
  background-size: 0 3px;
  background-repeat: no-repeat;
  transition: background-size 0.5s;
}
/* ********** Categories List ********** */
/* Primary */
.flex * {
  display: flex;
  justify-content: space-between;
}
.is-style-category-primary {
  list-style: none;
  padding: 0px;
}
.is-style-category-primary li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary);
}
.is-style-category-primary a {
  color: var(--wp--preset--color--primary);
  text-decoration: none;
}
/* Secondary */
.is-style-category-secondary {
  list-style: none;
  padding: 0px;
}
.is-style-category-secondary li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--secondary);
}
.is-style-category-secondary a {
  color: var(--wp--preset--color--secondary);
  text-decoration: none;
}
/* Terniary */
.is-style-category-terniary {
  list-style: none;
  padding: 0px;
}
.is-style-category-terniary li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--wp--preset--color--terniary);
  color: var(--wp--preset--color--terniary);
}
.is-style-category-terniary a {
  color: var(--wp--preset--color--terniary);
  text-decoration: none;
}
/* White */
.is-style-category-light {
  list-style: none;
  padding: 0px;
}
.is-style-category-light li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--wp--preset--color--light);
  color: var(--wp--preset--color--light);
}
.is-style-category-light a {
  color: var(--wp--preset--color--light);
  text-decoration: none;
}
/* Dark */
.is-style-category-dark {
  list-style: none;
  padding: 0px;
}
.is-style-category-dark li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--wp--preset--color--dark);
  color: var(--wp--preset--color--dark);
}
.is-style-category-dark a {
  color: var(--wp--preset--color--dark);
  text-decoration: none;
}
/* ********** Social Icon ********** */
.is-style-social-links-radius-none > li {
  border-radius: 0px;
}
/* ********** Tag Cloud ********** */
.wp-block-tag-cloud.is-style-tag-background-primary a,
.wp-block-tag-cloud.is-style-tag-background-secondary a,
.wp-block-tag-cloud.is-style-tag-background-terniary a,
.wp-block-tag-cloud.is-style-tag-background-foreground a {
  padding: 2px 4px;
  margin-bottom: 5px;
  text-decoration: none;
}
/* Primary */
.wp-block-tag-cloud.is-style-tag-background-primary a {
  background-color: var(--wp--preset--color--primary);
}
.wp-block-tag-cloud.is-style-tag-background-primary a:hover {
  background-color: var(--wp--preset--color--secondary);
}
/* Secondary */
.wp-block-tag-cloud.is-style-tag-background-secondary a {
  background-color: var(--wp--preset--color--secondary);
}
.wp-block-tag-cloud.is-style-tag-background-secondary a:hover {
  background-color: var(--wp--preset--color--terniary);
}
/* Terniary */
.wp-block-tag-cloud.is-style-tag-background-terniary a {
  background-color: var(--wp--preset--color--terniary);
}
.wp-block-tag-cloud.is-style-tag-background-terniary a:hover {
  background-color: var(--wp--preset--color--secondary);
}
/* Foreground */
.wp-block-tag-cloud.is-style-tag-background-foreground a {
  background-color: var(--wp--preset--color--foreground);
}
.wp-block-tag-cloud.is-style-tag-background-foreground a:hover {
  background-color: var(--wp--preset--color--dark);
}
/* ********** Contact Form 7 ********** */
/* contact Newsletter 1 */
.newswp-contact-newsletter-1 form p input,
.newswp-contact-newsletter-1 form p textarea {
  padding: 10px;
  margin-bottom: 5px;
  font-size: var(--wp--preset--font-size--normal);
  border: 1px solid var(--wp--preset--color--dark);
  width: -webkit-fill-available;
}
.newswp-contact-newsletter-1 form p input[type="submit"] {
  padding: 10px;
  font-size: var(--wp--preset--font-size--medium) !important;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--light);
  width: -webkit-fill-available;
}
.newswp-contact-newsletter-1 form p input[type="submit"]:hover {
  padding: 10px;
  font-size: var(--wp--preset--font-size--medium) !important;
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--light);
  width: 100%;
}
/* contact Newsletter 2 */
.newswp-contact-newsletter-2 form {
  position: relative;
  width: 100%;
}
.newswp-contact-newsletter-2 form p input {
  padding: 12px;
  margin-bottom: 5px;
  font-size: var(--wp--preset--font-size--normal);
  color: var(--wp--preset--color--dark-alt);
  border: 1px solid var(--wp--preset--color--border);
  width: -webkit-fill-available;
}
.newswp-contact-newsletter-2 form p textarea {
  padding: 12px;
  margin-bottom: 5px;
  font-size: var(--wp--preset--font-size--normal);
  border: 1px solid var(--wp--preset--color--border);
  width: -webkit-fill-available;
}
.newswp-contact-newsletter-2 form p input[type="submit"] {
  position: absolute;
  top: 0%;
  right: 0%;
  padding: 12px;
  font-size: var(--wp--preset--font-size--normal) !important;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--light);
  width: fit-content;
  border: 1px solid var(--wp--preset--color--primary);
}
.newswp-contact-newsletter-2 form p input[type="submit"]:hover {
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--light);
  border: 1px solid var(--wp--preset--color--secondary);
}
.newswp-slide-blog-group {
  margin: 0% !important;
  overflow: hidden;
}
/* ********** Back To Top ********** */
.newswp-scrollto-top {
  position: fixed;
  display: inline-block;
  width: 50px;
  height: 50px;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
  border-radius: 50%;
  text-indent: -5000px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.089);
  background-color: var(--wp--preset--color--primary);
  transition: all ease-in-out 0.2s;
}
.block-editor-block-list__block .wp-block .newswp-scrollto-top {
  display: none;
}
.block-editor-block-list__block .wp-block .is-selected .newswp-scrollto-top {
  display: block;
}
.newswp-scrollto-top:hover {
  background: var(--wp--preset--color--secondary);
  cursor: pointer;
}
.newswp-scrollto-top::after {
  content: "";
  width: 50px;
  height: 50px;
  background-color: #fff;
  -webkit-mask-image: url(assets/images/up-arrow.svg);
  mask-image: url(assets/images/up-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}
/* Slider Marquee */
.newswp-marquee-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.newswp-marquee-content {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  animation: newswp-marquee 15s linear infinite;
  flex-wrap: nowrap;
  display: flex;
  flex-wrap: nowrap;
}
.newswp-marquee-content:hover {
  animation-play-state: paused;
}
.newswp-marquee-wrapper .newswp-marquee-content.block-editor-block-list__block,
.newswp-marquee-content.block-editor-block-list__block {
  animation: none;
}
.newswp-marquee-content li {
  overflow: hidden;
  position: relative;
  display: inline-block;
  flex: 1 0 auto;
  margin-block-start: 0;
  white-space: nowrap;
  flex: 1 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes newswp-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Slider Navigation */

.wp-block-query.newswp-blog-slider:hover .newswp-slider-nav > div {
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
}

.newswp-slider-nav > .swiper-button-prev {
  left: 0%;
  transition: all 0.2s ease-in-out;
}
.wp-block-query.newswp-blog-slider:hover .newswp-slider-nav > .swiper-button-prev {
  transform: translateX(20px);
  transition: all 0.2s ease-in-out;
}
.wp-block-query.newswp-blog-slider:hover .newswp-slider-nav > .swiper-button-next {
  transform: translateX(-20px);
  transition: all 0.2s ease-in-out;
}
.newswp-slider-nav > .swiper-button-next {
  right: 0px;
  transition: all 0.2s ease-in-out;
}
.newswp-slider-buttons-group {
  position: unset !important;
}
.newswp-slider-buttons-group .newswp-slider-nav > div {
  opacity: 0;
  color: var(--wp--preset--color--white) !important;
  font-size: var(--wp--preset--font-size--large-medium) !important;
  transition: all 0.2s ease-in-out;
}
.newswp-slider-buttons-group .newswp-slider-nav > div:hover {
  opacity: 1 !important;
  color: var(--wp--preset--color--white) !important;
  font-size: var(--wp--preset--font-size--large-medium) !important;
}

.newswp-slider-buttons-group .newswp-slider-nav > div::after {
  padding: 8px 12px;
  font-size: var(--wp--preset--font-size--very-large) !important;
  border: 1px solid var(--wp--preset--color--white) !important;
}
.newswp-slider-buttons-group .newswp-slider-nav > div:hover:after {
  padding: 8px 12px;
  background-color: var(--wp--preset--color--primary) !important;
  font-size: var(--wp--preset--font-size--very-large) !important;
  border: 1px solid var(--wp--preset--color--white) !important;
}


/* ===== CHF EVENTOS CUSTOMIZACOES ===== */

:root {
  --wp--preset--color--primary: #1d6fd0;
  --wp--preset--color--secondary: #8f6336;
  --wp--preset--color--terniary: #d6e8fb;
  --wp--preset--color--heading: #0f1726;
  --wp--preset--color--foreground: #edf2f8;
  --wp--preset--color--foreground-alt: #64748b;
  --wp--preset--color--meta-color: #7a8798;
  --wp--preset--color--border: rgba(29,111,208,.16);
  --wp--preset--color--border-alt: rgba(255,255,255,.16);
  --wp--preset--color--Light: #f8fafc;
  --wp--preset--color--dark: #0f1b2d;
  --wp--preset--color--dark-alt: #11203a;

  --chf-primary: #1d6fd0;
  --chf-primary-dark: #10233f;
  --chf-primary-soft: #eff6ff;
  --chf-accent: #8f6336;
  --chf-accent-soft: #f4ede6;
  --chf-surface: #ffffff;
  --chf-background: #f5f7fb;
  --chf-text: #0f1726;
  --chf-muted: #66758a;
  --chf-shadow: 0 18px 50px rgba(15, 23, 38, 0.08);
  --chf-shadow-strong: 0 26px 70px rgba(15, 23, 38, 0.12);
  --chf-radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top center, rgba(29,111,208,.06), transparent 34%),
    linear-gradient(180deg, #fafbfd 0%, #f5f7fb 100%);
  color: var(--chf-text);
}

.wp-site-blocks {
  overflow-x: clip;
}

header.wp-block-template-part .has-light-background-color {
  background: transparent !important;
}

header.wp-block-template-part > .wp-block-group > .wp-block-group:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  border-bottom: 1px solid rgba(17,32,58,.06) !important;
  padding-top: 34px !important;
  padding-bottom: 26px !important;
}

header.wp-block-template-part .wp-block-site-logo img,
header.wp-block-template-part .custom-logo {
  max-height: 136px !important;
  width: auto !important;
}

header.wp-block-template-part .wp-block-site-title {
  letter-spacing: .06em;
}

header.wp-block-template-part .wp-block-navigation a,
.wp-block-navigation a {
  transition: all .25s ease;
}

header.wp-block-template-part .has-dark-alt-background-color {
  background: transparent !important;
}

header.wp-block-template-part > .wp-block-group > .wp-block-group:last-child {
  margin-top: 18px !important;
}

header.wp-block-template-part > .wp-block-group > .wp-block-group:last-child > .wp-block-group {
  background: linear-gradient(135deg, #11203a 0%, #0f1b2d 100%) !important;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  box-shadow: var(--chf-shadow-strong);
  padding-left: 16px !important;
  padding-right: 16px !important;
}

ul.is-style-link-hover-primary li a {
  border-radius: 14px;
  padding: 14px 18px 16px 18px;
  font-weight: 600;
  letter-spacing: .01em;
}

ul.is-style-link-hover-primary li a:hover,
ul.is-style-link-hover-primary .current-menu-item a {
  background: linear-gradient(135deg, var(--chf-primary) 0%, #3a8fed 100%) !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(29,111,208,.25);
}

header .wp-block-search__button,
header .wp-block-button__link,
header .wp-element-button {
  border-radius: 14px !important;
}

header .wp-block-search__button {
  color: #fff;
}

header .wp-block-button__link,
header .wp-element-button {
  background: linear-gradient(135deg, var(--chf-primary) 0%, #3f8ee8 100%);
  box-shadow: 0 14px 30px rgba(29,111,208,.22);
}

.home .newswp-marquee-wrapper,
.home .wp-block-group:has(.newswp-marquee-wrapper) {
  background: transparent;
}

.home .newswp-marquee-wrapper {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(17,32,58,.06);
  border-radius: 18px;
  box-shadow: var(--chf-shadow);
  padding: 10px 18px;
}

.home .newswp-marquee-content li {
  color: var(--chf-muted);
  font-weight: 600;
}

.has-dark-alt-background-color,
.has-dark-background-color {
  background-color: var(--chf-primary-dark) !important;
}

.wp-block-button__link,
.wp-element-button {
  border-radius: 16px;
}

.home .wp-block-group[style*="margin-top:40px"],
.home .wp-block-group[style*="margin-top: 40px"] {
  margin-top: 58px !important;
}

.home .wp-block-cover,
.home .wp-block-post-featured-image img,
.home .wp-block-image img,
.home .wp-block-post-featured-image a,
.home .wp-block-cover-image {
  border-radius: var(--chf-radius);
}

.home .wp-block-cover,
.home .wp-block-post-featured-image img,
.home .wp-block-image img {
  box-shadow: var(--chf-shadow);
}

.home .wp-block-cover {
  overflow: hidden;
  border: 1px solid rgba(17,32,58,.06);
}

.home .wp-block-cover .wp-block-cover__background,
.home .wp-block-cover .wp-block-cover__gradient-background {
  background: linear-gradient(180deg, rgba(7,18,36,0.02) 8%, rgba(7,18,36,0.12) 34%, rgba(7,18,36,0.76) 100%) !important;
  opacity: 1 !important;
}

.home .wp-block-post-title,
.home .wp-block-post-title a {
  letter-spacing: -.02em;
}

.home .wp-block-cover .wp-block-post-title a,
.home .wp-block-cover h2 a,
.home .wp-block-cover h3 a,
.home .wp-block-cover h4 a,
.home .wp-block-cover h5 a,
.home .wp-block-cover h6 a {
  color: #fff !important;
  text-shadow: 0 8px 30px rgba(0,0,0,.42);
}

.home .wp-block-cover .wp-block-post-title,
.home .wp-block-post-title {
  line-height: 1.05 !important;
}

.home .wp-block-post-title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home .wp-block-cover .wp-block-post-title a {
  -webkit-line-clamp: 3;
}

.home .wp-block-query:not(.newswp-blog-slider),
.home .wp-block-columns,
.home .wp-block-group {
  border-radius: 0;
}

.home .wp-block-post-terms a,
.home .wp-block-post-terms.is-style-category-background-mixed a,
.home .has-primary-background-color,
.home .is-style-category-background-primary a,
.home .is-style-category-background-primary span,
.home .is-style-category-background-secondary a,
.home .is-style-category-background-secondary span,
.home .is-style-category-background-mixed a,
.home .is-style-category-background-mixed span {
  border-radius: 999px !important;
  letter-spacing: .08em;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 8px 14px !important;
  box-shadow: 0 10px 24px rgba(29,111,208,.18);
}

.home p.has-primary-background-color,
.home p.has-white-color.has-primary-background-color,
.home .wp-block-group[style*="border-bottom-color:var(--wp--preset--color--primary)"] p.has-primary-background-color {
  border-radius: 999px !important;
}

.home .wp-block-group[style*="border-bottom-color:var(--wp--preset--color--primary)"] {
  border-bottom-color: rgba(29,111,208,.18) !important;
}

.home .wp-block-columns,
.home .wp-block-query .wp-block-columns,
.home .wp-block-query .wp-block-group[style*="padding-bottom:24px"] {
  gap: 18px;
}

.home .wp-block-post-title:not(.wp-block-site-title) {
  font-weight: 800;
}

.home .wp-block-post-title:not(.wp-block-site-title):not(.has-text-align-center) {
  font-size: clamp(1.15rem, 1.9vw, 2.5rem);
}

.home .wp-block-cover .wp-block-group,
.home .wp-block-cover .wp-block-columns {
  gap: 10px;
}

.home .wp-block-post-author-name,
.home .wp-block-post-date,
.home .wp-block-post-terms,
.home .wp-block-post-author {
  font-weight: 600;
}

.home .wp-block-post-author-name a,
.home .wp-block-post-date,
.home .wp-block-post-date time {
  color: #d7e7ff !important;
}

.home .wp-block-query .wp-block-post,
.home .wp-block-query .wp-block-columns {
  transition: transform .24s ease, box-shadow .24s ease;
}

.home .wp-block-query .wp-block-post:hover,
.home .wp-block-query .wp-block-columns:hover {
  transform: translateY(-3px);
}

/* Sidebar ad */
img[src*="ad-sidebar.jpg"],
img[src*="anuncie-aqui-chf.webp"] {
  object-fit: cover;
  background: linear-gradient(180deg, #132645, #0f1b2d);
  border-radius: 24px !important;
  overflow: hidden;
  box-shadow: var(--chf-shadow-strong) !important;
}

/* Hide generic theme ad ribbon */
img[src*="ad-banner-2.jpg"],
img[src*="ad-banner.jpg"] {
  display: none !important;
}

/* Premium Instagram footer section */
#chf-instagram-premium {
  margin: 70px auto 0;
  padding: 0 24px;
}

#chf-instagram-premium .chf-instagram-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,.94) 0%, #ffffff 100%);
  border: 1px solid rgba(17,32,58,.06);
  border-radius: 32px;
  padding: 36px;
  box-shadow: var(--chf-shadow-strong);
}

#chf-instagram-premium .chf-instagram-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

#chf-instagram-premium .chf-instagram-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(29,111,208,.12) 0%, rgba(29,111,208,.06) 100%);
  color: var(--chf-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

#chf-instagram-premium h2 {
  margin: 14px 0 8px;
  font-size: clamp(1.9rem, 2.4vw, 3rem);
  line-height: 1;
  letter-spacing: -.04em;
}

#chf-instagram-premium p {
  margin: 0;
  color: var(--chf-muted);
  font-size: 1rem;
}

#chf-instagram-premium .chf-instagram-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 16px 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #11203a 0%, #1d6fd0 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(17,32,58,.18);
}

#chf-instagram-premium .chf-instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

#chf-instagram-premium .chf-instagram-item {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #eff4fa;
  box-shadow: var(--chf-shadow);
}

#chf-instagram-premium .chf-instagram-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,32,58,0) 20%, rgba(17,32,58,.22) 100%);
  opacity: .88;
  transition: opacity .25s ease, transform .25s ease;
}

#chf-instagram-premium .chf-instagram-item::before {
  content: "↗";
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  color: var(--chf-primary-dark);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(17,32,58,.12);
}

#chf-instagram-premium .chf-instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

#chf-instagram-premium .chf-instagram-item:hover img {
  transform: scale(1.05);
}

#chf-instagram-premium .chf-instagram-item:hover::after {
  opacity: 1;
}

#chf-instagram-premium .chf-instagram-empty {
  padding: 22px;
  border-radius: 20px;
  background: var(--chf-primary-soft);
  color: var(--chf-primary-dark);
  font-weight: 600;
}

/* Footer */
footer.wp-block-template-part {
  margin-top: 72px;
}

footer.wp-block-template-part .has-dark-background-color,
footer.wp-block-template-part .has-dark-alt-background-color {
  background: linear-gradient(180deg, #11203a 0%, #0f1b2d 100%) !important;
}

footer.wp-block-template-part a[href*="aiomarketing.com.br"] {
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
}

footer.wp-block-template-part .wp-block-site-logo img {
  max-height: 96px;
  width: auto;
}

footer.wp-block-template-part p,
footer.wp-block-template-part li,
footer.wp-block-template-part a {
  color: rgba(255,255,255,.86);
}

footer .wp-block-group[style*="justifyContent:right"] {
  display: none !important;
}

/* Smash Balloon fallback if plugin works */
#sb_instagram,
#sbi_images {
  width: 100% !important;
}
#sb_instagram #sbi_images,
#sb_instagram.sbi_width_resp #sbi_images {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
#sb_instagram .sbi_item,
#sb_instagram .sbi_photo_wrap,
#sb_instagram .sbi_photo {
  width: 100% !important;
}
#sb_instagram .sbi_item {
  float: none !important;
  padding: 0 !important;
}
#sb_instagram .sbi_photo {
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--chf-shadow);
}
#sb_instagram .sbi_photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
#sb_instagram #sbi_load,
#sb_instagram .sbi_follow_btn,
#sb_instagram .sb_instagram_header,
#sb_instagram .sbi-header,
#sb_instagram .sbi_caption,
#sb_instagram .sbi_likes,
#sb_instagram .sbi_comments {
  display: none !important;
}

@media (max-width: 1100px) {
  #chf-instagram-premium .chf-instagram-grid,
  #sb_instagram #sbi_images,
  #sb_instagram.sbi_width_resp #sbi_images {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  #chf-instagram-premium .chf-instagram-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 781px) {
  header.wp-block-template-part > .wp-block-group > .wp-block-group:nth-child(2) {
    padding-top: 22px !important;
    padding-bottom: 18px !important;
  }
  header.wp-block-template-part > .wp-block-group > .wp-block-group:last-child > .wp-block-group {
    border-radius: 16px;
  }
  ul.is-style-link-hover-primary li a {
    padding: 12px 14px 14px 14px;
  }
  #chf-instagram-premium {
    padding: 0 16px;
  }
  #chf-instagram-premium .chf-instagram-inner {
    padding: 24px;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  #chf-instagram-premium .chf-instagram-grid,
  #sb_instagram #sbi_images,
  #sb_instagram.sbi_width_resp #sbi_images {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  header.wp-block-template-part .wp-block-site-logo img,
  header.wp-block-template-part .custom-logo {
    max-height: 88px !important;
  }
  .home .wp-block-post-title:not(.wp-block-site-title):not(.has-text-align-center) {
    font-size: clamp(1.05rem, 6vw, 1.7rem);
  }
}


/* ===== CHF EVENTOS PREMIUM V2 ===== */
:root {
  --chf-menu-bg-1: #0f1b2d;
  --chf-menu-bg-2: #162843;
  --chf-bronze: #8f6336;
  --chf-bronze-dark: #6f4b28;
  --chf-news: #2a69d1;
  --chf-launch: #0f766e;
  --chf-artist: #7b2c5d;
  --chf-event: #8f6336;
  --chf-hot: #10233f;
}

/* Header refinement */
header.wp-block-template-part > .wp-block-group > .wp-block-group:nth-child(2) {
  padding-top: 18px !important;
  padding-bottom: 14px !important;
}
header.wp-block-template-part .wp-block-site-logo img,
header.wp-block-template-part .custom-logo {
  max-height: 112px !important;
}
header.wp-block-template-part > .wp-block-group > .wp-block-group:last-child {
  margin-top: 10px !important;
}
header.wp-block-template-part > .wp-block-group > .wp-block-group:last-child > .wp-block-group {
  background: linear-gradient(135deg, var(--chf-menu-bg-1) 0%, var(--chf-menu-bg-2) 100%) !important;
  border: 1px solid rgba(143,99,54,.22);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 12px 34px rgba(9,16,27,.18);
}
header.wp-block-template-part .wp-block-navigation .wp-block-navigation-item__content {
  border-radius: 12px !important;
  padding: 14px 20px !important;
  font-weight: 700;
  letter-spacing: .01em;
  min-width: 0;
}
header.wp-block-template-part .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content,
header.wp-block-template-part .wp-block-navigation .wp-block-navigation-item__content:hover {
  background: linear-gradient(135deg, var(--chf-bronze) 0%, var(--chf-bronze-dark) 100%) !important;
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(111,75,40,.22);
}
header.wp-block-template-part .wp-block-search__button,
header.wp-block-template-part .wp-block-button__link,
header.wp-block-template-part .wp-element-button {
  background: linear-gradient(135deg, var(--chf-bronze) 0%, var(--chf-bronze-dark) 100%) !important;
  color: #fff !important;
}
header.wp-block-template-part .wp-block-search__button:hover,
header.wp-block-template-part .wp-block-button__link:hover,
header.wp-block-template-part .wp-element-button:hover {
  filter: brightness(1.04);
}

/* Mobile menu */
@media (max-width: 781px) {
  header.wp-block-template-part > .wp-block-group > .wp-block-group:nth-child(2) {
    padding-top: 12px !important;
    padding-bottom: 10px !important;
  }
  header.wp-block-template-part .wp-block-site-logo img,
  header.wp-block-template-part .custom-logo {
    max-height: 82px !important;
  }
  .wp-block-navigation__responsive-container-open,
  .wp-block-navigation__responsive-container-close {
    border-radius: 10px !important;
    color: #fff !important;
  }
  .wp-block-navigation__responsive-container-open {
    background: linear-gradient(135deg, var(--chf-bronze) 0%, var(--chf-bronze-dark) 100%) !important;
    padding: 10px 12px !important;
  }
  .wp-block-navigation__responsive-container.is-menu-open {
    background: rgba(9, 16, 27, 0.94) !important;
    backdrop-filter: blur(14px);
    padding: 22px 18px !important;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    padding-top: 20px;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    display: grid !important;
    gap: 10px !important;
    width: 100%;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    width: 100%;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(143,99,54,.22);
    border-radius: 14px !important;
    padding: 14px 16px !important;
    justify-content: center;
  }
}

/* Section labels */
.home .chf-section-label,
.home .chf-tax-badge {
  color: #fff !important;
  letter-spacing: .08em;
  font-weight: 800 !important;
}
.home .chf-section-label.chf-label-noticias,
.home .chf-tax-badge.chf-label-noticias { background: linear-gradient(135deg, #2a69d1 0%, #1d4eb3 100%) !important; box-shadow: 0 12px 24px rgba(42,105,209,.22); }
.home .chf-section-label.chf-label-lancamentos,
.home .chf-tax-badge.chf-label-lancamentos { background: linear-gradient(135deg, #0f766e 0%, #0b5e58 100%) !important; box-shadow: 0 12px 24px rgba(15,118,110,.22); }
.home .chf-section-label.chf-label-artistas,
.home .chf-tax-badge.chf-label-artistas { background: linear-gradient(135deg, #7b2c5d 0%, #5f2148 100%) !important; box-shadow: 0 12px 24px rgba(123,44,93,.22); }
.home .chf-section-label.chf-label-eventos,
.home .chf-tax-badge.chf-label-eventos { background: linear-gradient(135deg, #8f6336 0%, #6f4b28 100%) !important; box-shadow: 0 12px 24px rgba(143,99,54,.22); }
.home .chf-section-label.chf-label-destaque,
.home .chf-tax-badge.chf-label-destaque { background: linear-gradient(135deg, #10233f 0%, #1c365d 100%) !important; box-shadow: 0 12px 24px rgba(16,35,63,.24); }
.home .chf-section-label.chf-label-proximos,
.home .chf-tax-badge.chf-label-proximos { background: linear-gradient(135deg, #0f4c81 0%, #123a5f 100%) !important; box-shadow: 0 12px 24px rgba(18,58,95,.24); }

.home .wp-block-group[style*="border-bottom-color:var(--wp--preset--color--primary)"] {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom-width: 1px !important;
}
.home .wp-block-group[style*="border-bottom-color:var(--wp--preset--color--primary)"]::after {
  content: "";
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(143,99,54,.55) 0%, rgba(16,35,63,.08) 100%);
}

/* Center ad keep rounded */
.home img[src*="anuncie-aqui-chf.webp"] {
  border-radius: 24px !important;
  box-shadow: 0 18px 44px rgba(15,23,38,.16) !important;
}
.home .wp-block-image:has(img[src*="anuncie-aqui-chf.webp"]),
.home figure:has(img[src*="anuncie-aqui-chf.webp"]) {
  overflow: hidden;
  border-radius: 24px;
}


/* ===== CHF EVENTOS PREMIUM V3 ===== */
/* Global inline Instagram fixes */
.chf-instagram-inline-wrap {
  max-width: 1280px;
  margin: 40px auto 0;
}
.chf-instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.chf-instagram-item {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #eff4fa;
  box-shadow: var(--chf-shadow);
}
.chf-instagram-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,32,58,0) 20%, rgba(17,32,58,.22) 100%);
  opacity: .88;
}
.chf-instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single .entry-content .chf-instagram-inline-wrap,
.single .wp-block-post-content .chf-instagram-inline-wrap,
.page .wp-block-post-content .chf-instagram-inline-wrap {
  padding-top: 8px;
}
.single .chf-instagram-inline-wrap h1,
.single .chf-instagram-inline-wrap h2,
.single .chf-instagram-inline-wrap h3,
.page .chf-instagram-inline-wrap h1,
.page .chf-instagram-inline-wrap h2,
.page .chf-instagram-inline-wrap h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  margin-bottom: 20px;
}

/* CTA button on right */
header.wp-block-template-part .wp-block-button__link[href="/category/proximos-eventos/"],
header.wp-block-template-part .wp-block-button__link:not([href]),
header.wp-block-template-part .wp-element-button:not([href]) {
  border-radius: 18px !important;
  min-width: 210px;
  text-align: center;
}

/* Hide old sidebar ad and replace visually */
.single .wp-block-group:has(img[src*="anuncie-aqui-chf.webp"]) {
  display: none !important;
}
.single .chf-sidebar-events {
  margin-top: 24px;
}
.chf-sidebar-events {
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid rgba(17,32,58,.08);
  box-shadow: var(--chf-shadow);
  overflow: hidden;
}
.chf-sidebar-events__head {
  display: inline-flex;
  margin: 0 0 18px 0;
  padding: 10px 14px;
  background: linear-gradient(135deg, #0f4c81 0%, #123a5f 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 0 0 16px 0;
}
.chf-sidebar-events__list {
  display: grid;
  gap: 14px;
  padding: 0 16px 16px;
}
.chf-sidebar-events__item {
  display: grid;
  grid-template-columns: 92px minmax(0,1fr);
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.chf-sidebar-events__thumb {
  width: 92px;
  height: 92px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #10233f 0%, #1d4b77 100%);
}
.chf-sidebar-events__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chf-sidebar-events__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: .08em;
}
.chf-sidebar-events__kicker {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15,76,129,.08);
  color: #0f4c81;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.chf-sidebar-events__content h4 {
  margin: 8px 0 6px;
  font-size: 15px;
  line-height: 1.2;
  color: #11203a;
}
.chf-sidebar-events__date {
  color: var(--chf-muted);
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .chf-instagram-grid,
  #chf-instagram-premium .chf-instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .chf-instagram-grid,
  #chf-instagram-premium .chf-instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .chf-sidebar-events__item {
    grid-template-columns: 78px minmax(0,1fr);
  }
  .chf-sidebar-events__thumb {
    width: 78px;
    height: 78px;
  }
}


/* CHF footer premium v6 */
.home footer.wp-block-template-part,
footer.wp-block-template-part {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.chf-footer-premium {
  margin-top: 72px;
}

.chf-footer-premium .has-dark-background-color,
.chf-footer-premium .has-dark-alt-background-color {
  background: linear-gradient(180deg, #11203a 0%, #0c1830 100%) !important;
}

.chf-footer-premium .chf-footer-title {
  display: inline-flex;
  align-items: center;
  border-radius: 0 0 18px 0;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px rgba(29,111,208,.20);
  margin-bottom: 22px;
}

.chf-footer-premium p,
.chf-footer-premium li,
.chf-footer-premium a,
.chf-footer-premium .wp-block-latest-posts__post-title {
  color: rgba(255,255,255,.92) !important;
}

.chf-footer-premium a {
  text-decoration: none;
}

.chf-footer-premium .wp-block-latest-posts.chf-footer-posts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.chf-footer-premium .wp-block-latest-posts__list {
  margin: 0;
  padding: 0;
}

.chf-footer-premium .wp-block-latest-posts__post-excerpt,
.chf-footer-premium .wp-block-latest-posts__post-author {
  display: none;
}

.chf-footer-premium .wp-block-latest-posts__featured-image {
  margin: 0 14px 0 0;
}

.chf-footer-premium .wp-block-latest-posts__featured-image img {
  width: 110px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.chf-footer-premium .wp-block-latest-posts li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 18px;
}

.chf-footer-premium .wp-block-latest-posts li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.chf-footer-premium .wp-block-latest-posts__post-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.chf-footer-premium .wp-block-latest-posts__post-date {
  display: block;
  color: rgba(255,255,255,.72) !important;
  font-size: .88rem;
}

.chf-footer-premium .wp-block-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.chf-footer-premium .wp-block-categories-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding-bottom: 12px;
  font-weight: 600;
}

.chf-footer-premium .wp-block-categories-list li:last-child {
  border-bottom: 0;
}

@media (max-width: 781px) {
  .chf-footer-premium {
    margin-top: 46px;
  }
  .chf-footer-premium .wp-block-latest-posts li {
    flex-direction: row;
  }
}

/* ===== CHF EVENTOS PREMIUM V9 ===== */
:root {
  --chf-logo-brown-1: #6d3c1c;
  --chf-logo-brown-2: #4f2c15;
  --chf-logo-brown-3: #321b0e;
}

@media (max-width: 781px) {
  header.wp-block-template-part > .wp-block-group > .wp-block-group:last-child > .wp-block-group {
    background: linear-gradient(135deg, var(--chf-logo-brown-1) 0%, var(--chf-logo-brown-2) 56%, var(--chf-logo-brown-3) 100%) !important;
    border-color: rgba(255,255,255,.12) !important;
    border-radius: 26px !important;
    box-shadow: 0 18px 44px rgba(31,17,9,.30) !important;
  }

  header.wp-block-template-part .wp-block-navigation .wp-block-navigation-item__content,
  header.wp-block-template-part .wp-block-navigation .wp-block-navigation-item__label,
  header.wp-block-template-part .wp-block-navigation .wp-block-navigation-item__content:visited {
    color: #fff !important;
  }

  .wp-block-navigation__responsive-container-open,
  .wp-block-navigation__responsive-container-close,
  header.wp-block-template-part .wp-block-search__button,
  header.wp-block-template-part .wp-block-button__link[href="/category/proximos-eventos/"],
  header.wp-block-template-part .wp-element-button[href="/category/proximos-eventos/"] {
    background: linear-gradient(135deg, var(--chf-logo-brown-1) 0%, var(--chf-logo-brown-2) 100%) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(31,17,9,.24) !important;
  }

  .wp-block-navigation__responsive-container-open svg,
  .wp-block-navigation__responsive-container-close svg,
  header.wp-block-template-part .wp-block-search__button svg {
    fill: currentColor !important;
    stroke: currentColor !important;
    color: currentColor !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open {
    background: linear-gradient(180deg, var(--chf-logo-brown-1) 0%, var(--chf-logo-brown-2) 58%, var(--chf-logo-brown-3) 100%) !important;
    color: #fff !important;
    padding: 20px 16px !important;
  }

  .admin-bar .wp-block-navigation__responsive-container.is-menu-open {
    top: 46px !important;
    height: calc(100vh - 46px) !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    padding-top: 64px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    align-content: start !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    width: 100% !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    background: rgba(255,255,255,.09) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 16px !important;
    padding: 16px 18px !important;
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: .01em !important;
    text-align: left !important;
    box-shadow: none !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover,
  .wp-block-navigation__responsive-container.is-menu-open .current-menu-item > .wp-block-navigation-item__content,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:focus {
    background: rgba(255,255,255,.16) !important;
    color: #fff !important;
  }

  .wp-block-navigation__responsive-container-close {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    left: auto !important;
    border-radius: 14px !important;
    padding: 12px !important;
  }

  header.wp-block-template-part .wp-block-search__button,
  header.wp-block-template-part .wp-block-button__link[href="/category/proximos-eventos/"],
  header.wp-block-template-part .wp-element-button[href="/category/proximos-eventos/"] {
    border-radius: 18px !important;
  }
}

/* Wide premium middle ad */
.home p.has-text-align-center + figure img[src*="anuncie-aqui-wide-chf.webp"],
.home p.has-text-align-center + figure img[src*="anuncie-aqui-chf.webp"],
figure img[src*="anuncie-aqui-wide-chf.webp"] {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 5 !important;
  object-fit: cover !important;
  background: linear-gradient(135deg, #0f1b2d 0%, #162843 100%) !important;
  border-radius: 28px !important;
  box-shadow: 0 18px 44px rgba(15,23,38,.18) !important;
}

.home p.has-text-align-center + figure:has(img[src*="anuncie-aqui-wide-chf.webp"]),
.home p.has-text-align-center + figure:has(img[src*="anuncie-aqui-chf.webp"]),
figure:has(img[src*="anuncie-aqui-wide-chf.webp"]) {
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  margin-inline: auto !important;
  overflow: hidden !important;
  border-radius: 28px !important;
}


/* ===== CHF EVENTOS PREMIUM V10 ===== */
header .wp-block-social-links li:not(:first-child),
.wp-block-template-part header .wp-block-social-links li:not(:first-child),
.chf-header-socials li:not(:first-child) {
  display: none !important;
}
header .wp-block-social-links,
.chf-header-socials {
  gap: 10px !important;
}
header .wp-block-social-links .wp-social-link,
.chf-header-socials .wp-social-link {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
header .wp-block-social-links .wp-social-link a,
.chf-header-socials .wp-social-link a {
  color: var(--chf-logo-brown-2) !important;
}
header .wp-block-social-links svg,
.chf-header-socials svg {
  fill: currentColor !important;
}

.chf-middle-ad-wide {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 5 !important;
  object-fit: cover !important;
  background: linear-gradient(135deg, #0f1b2d 0%, #162843 100%) !important;
  border-radius: 28px !important;
  box-shadow: 0 18px 44px rgba(15,23,38,.18) !important;
}
.chf-middle-ad-wide-wrap {
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  margin-inline: auto !important;
  overflow: hidden !important;
  border-radius: 28px !important;
}

@media (max-width: 781px) {
  .wp-block-navigation__responsive-container-open,
  .wp-block-navigation__responsive-container-close {
    background: linear-gradient(135deg, #10223f 0%, #18345f 100%) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(9,18,34,.22) !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open {
    background: linear-gradient(180deg, #0a1830 0%, #10223f 100%) !important;
    color: #fff !important;
    padding: 18px 16px !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    display: block !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    padding-top: 72px !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,
  .wp-block-navigation__responsive-container.is-menu-open .chf-mobile-native-hidden {
    display: none !important;
  }

  .chf-mobile-menu-panel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .chf-mobile-menu-link {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 56px;
    padding: 16px 18px !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: .01em !important;
    box-shadow: none !important;
  }

  .chf-mobile-menu-link:hover,
  .chf-mobile-menu-link:focus {
    background: rgba(255,255,255,.14) !important;
    color: #fff !important;
  }

  .wp-block-navigation__responsive-container-close {
    top: 14px !important;
    right: 14px !important;
    left: auto !important;
    border-radius: 14px !important;
    padding: 12px !important;
  }

  header .wp-block-group .wp-block-social-links,
  .wp-block-template-part .wp-block-social-links {
    justify-content: flex-end !important;
  }
}


/* ===== CHF EVENTOS PREMIUM V11 ===== */
.chf-mobile-menu-panel {
  display: none !important;
}

@media (max-width: 781px) {
  .wp-block-navigation__responsive-container-open,
  .wp-block-navigation__responsive-container-close {
    background: linear-gradient(135deg, #0c1e39 0%, #14315a 100%) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(9,18,34,.22) !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open {
    background: linear-gradient(180deg, #08182f 0%, #0e2647 100%) !important;
    color: #fff !important;
    padding: 18px 16px !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    display: block !important;
    background: transparent !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    padding-top: 72px !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,
  .wp-block-navigation__responsive-container.is-menu-open .chf-mobile-native-hidden {
    display: none !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .chf-mobile-menu-panel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .chf-mobile-menu-link {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 56px;
    padding: 16px 18px !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: .01em !important;
    box-shadow: none !important;
  }

  .chf-mobile-menu-link:hover,
  .chf-mobile-menu-link:focus {
    background: rgba(255,255,255,.14) !important;
    color: #fff !important;
  }

  .wp-block-navigation__responsive-container-close {
    top: 14px !important;
    right: 14px !important;
    left: auto !important;
    border-radius: 14px !important;
    padding: 12px !important;
  }
}


/* ===== CHF EVENTOS PREMIUM V12 ===== */
@media (max-width: 781px) {
  .wp-block-navigation__responsive-container-open,
  .wp-block-navigation__responsive-container-close {
    background: linear-gradient(135deg, #0c1830 0%, #112348 100%) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #ffffff !important;
    box-shadow: 0 14px 30px rgba(10, 24, 48, .28) !important;
  }

  .wp-block-navigation__responsive-container-open svg,
  .wp-block-navigation__responsive-container-open svg *,
  .wp-block-navigation__responsive-container-close svg,
  .wp-block-navigation__responsive-container-close svg * {
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #ffffff !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open {
    background: linear-gradient(180deg, #09162d 0%, #10213f 100%) !important;
    color: #ffffff !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content * {
    color: #ffffff !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .chf-mobile-menu-panel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .chf-mobile-menu-link,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:link,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:visited,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__label,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item__link {
    color: #ffffff !important;
    fill: #ffffff !important;
    text-decoration: none !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .chf-mobile-menu-link {
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    border-radius: 18px !important;
    min-height: 58px !important;
    padding: 16px 18px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: .01em !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .chf-mobile-menu-link:hover,
  .wp-block-navigation__responsive-container.is-menu-open .chf-mobile-menu-link:focus,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:focus {
    background: rgba(255,255,255,.14) !important;
    color: #ffffff !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .current-menu-item > .wp-block-navigation-item__content,
  .wp-block-navigation__responsive-container.is-menu-open .current-menu-item > .wp-block-navigation-item__content .wp-block-navigation-item__label {
    color: #ffffff !important;
    background: rgba(255,255,255,.18) !important;
  }

  .wp-block-navigation__responsive-container-close {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    left: auto !important;
    z-index: 9999 !important;
  }
}


/* ===== CHF EVENTOS PREMIUM V13 ===== */
@media (max-width: 781px) {
  .wp-block-navigation__responsive-container-open,
  .wp-block-navigation__responsive-container-close,
  header.wp-block-template-part .wp-block-search__button {
    background: linear-gradient(135deg, #2f7ddd 0%, #4b97f1 100%) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #ffffff !important;
    box-shadow: 0 12px 24px rgba(24, 58, 95, .24) !important;
  }

  .wp-block-navigation__responsive-container-open svg,
  .wp-block-navigation__responsive-container-open svg *,
  .wp-block-navigation__responsive-container-close svg,
  .wp-block-navigation__responsive-container-close svg *,
  header.wp-block-template-part .wp-block-search__button svg,
  header.wp-block-template-part .wp-block-search__button svg * {
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #ffffff !important;
  }

  header.wp-block-template-part .wp-block-button__link[href="/category/proximos-eventos/"],
  header.wp-block-template-part .wp-element-button[href="/category/proximos-eventos/"] {
    background: linear-gradient(135deg, #2f7ddd 0%, #4b97f1 100%) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(24, 58, 95, .24) !important;
    transition: all .25s ease !important;
  }

  header.wp-block-template-part .wp-block-button__link[href="/category/proximos-eventos/"]:hover,
  header.wp-block-template-part .wp-element-button[href="/category/proximos-eventos/"]:hover,
  header.wp-block-template-part .wp-block-button__link[href="/category/proximos-eventos/"]:focus,
  header.wp-block-template-part .wp-element-button[href="/category/proximos-eventos/"]:focus {
    background: linear-gradient(135deg, #6e3b16 0%, #8b4d1f 100%) !important;
    color: #ffffff !important;
    border-color: rgba(255,255,255,.18) !important;
    box-shadow: 0 14px 28px rgba(66, 34, 11, .28) !important;
  }
}


/* ===== CHF EVENTOS PREMIUM V14 ===== */
header.wp-block-template-part .wp-block-search,
header.wp-block-template-part .wp-block-search__button,
header.wp-block-template-part .wp-block-search__inside-wrapper,
.wp-block-template-part header .wp-block-search,
.wp-block-template-part header .wp-block-search__button,
.wp-block-template-part header .wp-block-search__inside-wrapper {
  display: none !important;
}

header.wp-block-template-part .wp-block-group:has(.wp-block-search),
.wp-block-template-part header .wp-block-group:has(.wp-block-search) {
  gap: 0 !important;
}

@media (max-width: 781px) {
  header.wp-block-template-part .wp-block-search,
  header.wp-block-template-part .wp-block-search__button,
  header.wp-block-template-part .wp-block-search__inside-wrapper,
  .wp-block-template-part header .wp-block-search,
  .wp-block-template-part header .wp-block-search__button,
  .wp-block-template-part header .wp-block-search__inside-wrapper {
    display: none !important;
  }
}


/* ===== CHF EVENTOS PREMIUM V15 ===== */
header.wp-block-template-part .wp-block-search,
header.wp-block-template-part .wp-block-search *,
.wp-block-template-part header .wp-block-search,
.wp-block-template-part header .wp-block-search *,
.wp-block-navigation__responsive-container .wp-block-search,
.wp-block-navigation__responsive-container .wp-block-search * {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

/* =========================================================
   MARIA CLARA - CUSTOMIZAÇÃO PROFISSIONAL DO TEMA NEWSWP
   Paleta: preto palco, branco, magenta/rosa e acentos quentes.
   ========================================================= */
:root {
  --mc-bg: #050407;
  --mc-bg-2: #0d0910;
  --mc-bg-3: #130d16;
  --mc-card: #0d0910;
  --mc-card-2: #151018;
  --mc-line: rgba(236, 63, 148, .38);
  --mc-line-soft: rgba(255, 255, 255, .11);
  --mc-pink: #ec3f94;
  --mc-pink-2: #ff7bb8;
  --mc-orange: #ffb347;
  --mc-purple: #7a3cff;
  --mc-text: #ffffff;
  --mc-muted: #b9a8b4;
  --mc-shadow: 0 22px 70px rgba(0, 0, 0, .36);
}

html,
body,
.wp-site-blocks {
  background: var(--mc-bg) !important;
  color: var(--mc-text) !important;
}

body {
  letter-spacing: -0.01em;
}

a {
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}

.wp-site-blocks > * + * {
  margin-block-start: 0 !important;
}

.mc-main,
.mc-front-page,
main.wp-block-group,
.archive main.wp-block-group,
.search main.wp-block-group,
.single main.wp-block-group,
.page main.wp-block-group {
  background: radial-gradient(circle at 50% 0%, rgba(236,63,148,.08), transparent 32%), var(--mc-bg) !important;
  color: var(--mc-text) !important;
}

/* HEADER */
.mc-site-header {
  background: linear-gradient(180deg, #000 0%, #070508 100%) !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 10;
}

.mc-header-top {
  padding: 28px var(--wp--preset--spacing--40) 24px !important;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.mc-brand-row {
  gap: 26px 38px !important;
}

.mc-brand-box {
  gap: 18px !important;
  min-width: 280px;
}

.mc-site-logo img {
  max-height: 96px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 26px rgba(236,63,148,.28));
}

.mc-site-title,
.mc-site-title a,
.mc-brand-text .wp-block-site-title,
.mc-brand-text .wp-block-site-title a {
  color: #fff !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: clamp(34px, 4vw, 64px) !important;
  font-weight: 500 !important;
  line-height: .94 !important;
  text-decoration: none !important;
  letter-spacing: -.045em !important;
  margin: 0 !important;
  text-transform: none !important;
}

.mc-site-tagline,
.mc-brand-text .wp-block-site-tagline {
  color: var(--mc-pink-2) !important;
  font-size: clamp(12px, 1.2vw, 16px) !important;
  font-weight: 500 !important;
  letter-spacing: .28em !important;
  text-transform: uppercase !important;
  margin: 4px 0 0 !important;
}

.mc-header-slogan {
  border-left: 1px solid rgba(255,255,255,.18);
  padding-left: 32px;
  color: #f6edf4;
  max-width: 420px;
}

.mc-header-slogan p {
  margin: 0 !important;
  font-size: clamp(16px, 1.5vw, 22px) !important;
  line-height: 1.15 !important;
}

.mc-header-slogan strong {
  color: var(--mc-pink-2);
  font-weight: 800;
}

.mc-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}

.mc-socials-label {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mc-socials-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-social {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--mc-pink);
  color: #050407 !important;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(236,63,148,.26);
}

.mc-social:hover {
  background: var(--mc-pink-2);
  transform: translateY(-2px);
}

.mc-nav-bar {
  padding: 0 var(--wp--preset--spacing--40) !important;
  background: rgba(0,0,0,.96) !important;
}

.mc-nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
}

.mc-primary-menu {
  flex: 1 1 auto;
}

.mc-menu-list,
.mc-menu-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mc-menu-list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.mc-menu-list > li {
  position: relative;
}

.mc-menu-list > li > a,
.mc-menu-list .menu-item > a {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 0 18px;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  border-bottom: 2px solid transparent;
}

.mc-menu-list > li:first-child > a {
  background: var(--mc-pink);
  color: #fff !important;
  min-width: 58px;
  justify-content: center;
}

.mc-menu-list > li > a:hover,
.mc-menu-list > li.current-menu-item > a,
.mc-menu-list > li.current_page_item > a {
  color: var(--mc-pink-2) !important;
  border-bottom-color: var(--mc-pink);
  background: rgba(236,63,148,.08);
}

.mc-menu-list > li:first-child > a:hover {
  color: #fff !important;
  background: var(--mc-pink-2);
}

.mc-menu-list .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background: #0b080d;
  border: 1px solid var(--mc-line);
  border-radius: 0 0 10px 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  box-shadow: var(--mc-shadow);
  z-index: 50;
}

.mc-menu-list li:hover > .sub-menu,
.mc-menu-list li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mc-menu-list .sub-menu a {
  display: block;
  padding: 12px 14px;
  color: #fff !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-transform: none;
}

.mc-menu-list .sub-menu a:hover {
  color: var(--mc-pink-2) !important;
  background: rgba(236,63,148,.09);
}

.mc-header-search {
  width: 220px;
  flex: 0 0 220px;
}

.mc-header-search .search-form,
.mc-header-search form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}

.mc-header-search label {
  margin: 0;
  flex: 1;
}

.mc-header-search .search-field,
.mc-header-search input[type="search"] {
  width: 100%;
  height: 38px;
  border: 1px solid rgba(236,63,148,.42) !important;
  background: rgba(255,255,255,.04) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0 14px !important;
  font-size: 13px;
}

.mc-header-search .search-field::placeholder {
  color: rgba(255,255,255,.55);
}

.mc-header-search .search-submit,
.mc-header-search input[type="submit"] {
  display: none !important;
}

.mc-menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--mc-pink);
  border: 0;
  color: #fff;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
}

.mc-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 3px 0;
}

.mc-menu-toggle strong {
  font-size: 12px;
}

/* HERO */
.mc-hero-wrap {
  margin-top: 0 !important;
}

.mc-main-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--mc-shadow);
  border: 1px solid rgba(255,255,255,.08);
  background: #09070a;
}

.mc-hero-cover {
  overflow: hidden;
}

.mc-hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 72% 42%, rgba(236,63,148,.36), transparent 34%);
  pointer-events: none;
}

.mc-hero-cover .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}

.mc-category-label,
.is-style-category-background-primary,
.is-style-category-background-mixed {
  gap: 6px !important;
}

.mc-category-label a,
.is-style-category-background-primary > a,
.is-style-category-background-primary > span,
.is-style-category-background-mixed > a,
.is-style-category-background-mixed > span {
  background: var(--mc-pink) !important;
  color: #050407 !important;
  border-radius: 4px;
  padding: 4px 8px !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .03em;
  line-height: 1 !important;
  text-transform: uppercase;
  text-decoration: none !important;
}

.mc-hero-title a {
  text-shadow: 0 10px 34px rgba(0,0,0,.52);
}

.mc-hero-excerpt {
  max-width: 560px;
  opacity: .94;
}

.mc-hero-button,
.mc-hero-button a,
.mc-read-more,
.mc-read-more a {
  color: #fff !important;
  text-decoration: none !important;
}

.mc-hero-button a,
.mc-outline-button a,
.mc-center-button a {
  border-color: var(--mc-pink) !important;
  color: #fff !important;
  background: rgba(236,63,148,.08) !important;
  border-radius: 7px !important;
}

.mc-hero-button a:hover,
.mc-outline-button a:hover,
.mc-center-button a:hover {
  background: var(--mc-pink) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.mc-slider-controls {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.mc-slider-controls .newswp-slider-nav,
.newswp-slider-nav {
  pointer-events: none;
}

.mc-slider-controls .swiper-button-prev,
.mc-slider-controls .swiper-button-next,
.newswp-slider-nav .swiper-button-prev,
.newswp-slider-nav .swiper-button-next {
  pointer-events: auto;
  color: #fff !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

.newswp-slider-nav .swiper-button-prev::after,
.newswp-slider-nav .swiper-button-next::after {
  font-size: 28px !important;
  font-weight: 900;
}

.newswp-slider-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 6;
  display: flex;
  justify-content: center;
  gap: 9px;
  pointer-events: auto;
}

.newswp-slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: .9;
}

.newswp-slider-pagination .swiper-pagination-bullet-active {
  background: var(--mc-pink);
}

/* SEÇÕES E CARDS */
.mc-section-title-row {
  position: relative;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 18px !important;
}

.mc-section-title-row::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--mc-line);
}

.mc-section-title {
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(17px, 2vw, 22px) !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
}

.mc-section-title span {
  color: var(--mc-pink);
  margin-right: 8px;
}

.mc-featured-grid {
  gap: 10px !important;
}

.mc-post-card,
.mc-list-card {
  background: linear-gradient(180deg, var(--mc-card) 0%, #070508 100%) !important;
  border: 1px solid var(--mc-line-soft);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.mc-post-card:hover,
.mc-list-card:hover,
.mc-sidebar-card:hover {
  border-color: rgba(236,63,148,.52);
}

.mc-card-image img,
.mc-list-image img,
.wp-block-post-featured-image img {
  object-fit: cover;
  transition: transform .32s ease, opacity .32s ease;
}

.mc-post-card:hover .mc-card-image img,
.mc-list-card:hover .mc-list-image img {
  transform: scale(1.04);
  opacity: .92;
}

.mc-card-content,
.mc-list-content {
  color: #fff;
}

.mc-card-title,
.mc-card-title a,
.mc-list-title,
.mc-list-title a {
  color: #fff !important;
  text-decoration: none !important;
}

.mc-card-date,
.mc-card-date a,
.mc-list-excerpt {
  color: var(--mc-muted) !important;
}

.mc-center-button {
  margin-top: 18px !important;
}

.mc-list-posts {
  display: grid;
  gap: 18px;
}

.mc-list-card {
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.mc-list-card .wp-block-column {
  margin: 0 !important;
}

.mc-list-content {
  padding: 20px 22px 20px 0;
}

.mc-read-more a {
  color: var(--mc-pink-2) !important;
  font-size: 13px !important;
}

.mc-pagination {
  margin-top: 24px !important;
}

.mc-pagination a,
.mc-pagination .page-numbers,
.wp-block-query-pagination a,
.wp-block-query-pagination .page-numbers {
  color: #fff !important;
  border: 1px solid var(--mc-line-soft);
  background: rgba(255,255,255,.04);
  border-radius: 6px;
  padding: 8px 12px;
  text-decoration: none !important;
}

.mc-pagination a:hover,
.wp-block-query-pagination a:hover {
  background: var(--mc-pink);
  border-color: var(--mc-pink);
}

/* SIDEBAR */
.mc-sidebar-column {
  position: relative;
}

.mc-sidebar {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 18px;
}

.mc-sidebar-card,
.mc-widget {
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid var(--mc-line-soft);
  border-radius: 10px;
  padding: 18px;
  color: #fff;
}

.mc-sidebar-card h3,
.mc-widget-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px !important;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--mc-line);
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.mc-sidebar-card h3 span,
.mc-widget-title::first-letter {
  color: var(--mc-pink);
}

.mc-agenda-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.mc-agenda-item:last-child {
  border-bottom: 0;
}

.mc-agenda-date {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(236,63,148,.54);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--mc-pink-2);
  line-height: 1;
}

.mc-agenda-date strong {
  font-size: 18px;
}

.mc-agenda-date span {
  font-size: 10px;
  color: #fff;
  margin-top: -10px;
}

.mc-agenda-info strong,
.mc-recent li a {
  display: block;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}

.mc-agenda-info span,
.mc-recent li small {
  color: var(--mc-muted);
  font-size: 12px;
}

.mc-agenda-button,
.mc-column-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--mc-pink);
  color: #050407 !important;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
}

.mc-agenda-button:hover,
.mc-column-content a:hover {
  background: var(--mc-pink-2);
}

.mc-column-content {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
}

.mc-column-content a {
  grid-column: 2;
  width: max-content;
}

.mc-column-avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mc-pink), var(--mc-orange));
  color: #050407;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.mc-column p {
  margin: 0;
  color: #fff;
  line-height: 1.28;
}

.mc-recent ul,
.mc-categories ul,
.mc-footer-cats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mc-recent li,
.mc-categories li,
.mc-footer-cats li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mc-recent li:last-child,
.mc-categories li:last-child,
.mc-footer-cats li:last-child {
  border-bottom: 0;
}

.mc-categories a,
.mc-footer-cats a,
.mc-footer-posts a {
  color: #fff !important;
  text-decoration: none !important;
}

.mc-categories a:hover,
.mc-footer-cats a:hover,
.mc-footer-posts a:hover,
.mc-recent li a:hover {
  color: var(--mc-pink-2) !important;
}

/* FOOTER */
.mc-site-footer {
  background: #000 !important;
  border-top: 1px solid rgba(236,63,148,.28);
}

.mc-footer-main {
  padding: 54px var(--wp--preset--spacing--40) !important;
  background: radial-gradient(circle at 18% 0%, rgba(236,63,148,.12), transparent 28%), #050407;
}

.mc-footer-title {
  display: inline-flex;
  margin: 0 0 16px !important;
  padding: 9px 14px;
  border-radius: 4px;
  background: var(--mc-pink);
  color: #050407 !important;
  font-size: 15px !important;
  text-transform: uppercase;
  font-weight: 900 !important;
  letter-spacing: .03em;
}

.mc-footer-text,
.mc-footer-main p,
.mc-footer-main li,
.mc-footer-bottom p {
  color: var(--mc-muted) !important;
}

.mc-footer-main .mc-socials {
  justify-content: flex-start;
  margin-top: 20px;
}

.mc-footer-posts li {
  margin-bottom: 12px !important;
}

.mc-footer-posts img {
  border-radius: 6px;
  object-fit: cover;
}

.mc-footer-bottom {
  padding: 16px var(--wp--preset--spacing--40) !important;
  background: #09070a;
  border-top: 1px solid rgba(255,255,255,.08);
}

.mc-footer-bottom p {
  margin: 0 !important;
}

.mc-footer-bottom a {
  color: var(--mc-pink-2) !important;
  text-decoration: none !important;
  font-weight: 800;
}

/* SINGLE, PAGE, ARCHIVE AND DEFAULT BLOCKS */
.single .wp-block-post-title,
.page .wp-block-post-title,
.archive .wp-block-query-title,
.search .wp-block-query-title,
.wp-block-post-title,
.wp-block-heading {
  color: #fff !important;
}

.single .wp-block-post-content,
.page .wp-block-post-content,
.wp-block-post-content {
  color: #efe5ec !important;
}

.single .wp-block-post-content p,
.page .wp-block-post-content p,
.single .wp-block-post-content li,
.page .wp-block-post-content li {
  color: #efe5ec !important;
}

.single main .wp-block-group,
.page main .wp-block-group,
.archive main .wp-block-group,
.search main .wp-block-group,
.index main .wp-block-group {
  color: #efe5ec;
}

.newswp-blog-list-hover,
.archive .wp-block-post,
.search .wp-block-post,
.blog .wp-block-post {
  background: var(--mc-card) !important;
  border-color: var(--mc-line-soft) !important;
  color: #fff !important;
  border-radius: 10px;
  overflow: hidden;
}

.newswp-blog-list-hover .wp-block-post-title a,
.archive .wp-block-post-title a,
.search .wp-block-post-title a,
.blog .wp-block-post-title a {
  color: #fff !important;
  text-decoration: none !important;
}

.newswp-blog-list-hover .wp-block-post-title a:hover,
.archive .wp-block-post-title a:hover,
.search .wp-block-post-title a:hover,
.blog .wp-block-post-title a:hover {
  color: var(--mc-pink-2) !important;
}

.wp-block-read-more,
.wp-block-read-more a {
  color: var(--mc-pink-2) !important;
}

input,
textarea,
select {
  background: #0e0a11 !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.15) !important;
}

button,
.wp-element-button,
.wp-block-button__link {
  border-radius: 6px;
}

.mc-instagram-placeholder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--mc-line-soft);
  background: linear-gradient(135deg, rgba(236,63,148,.13), rgba(255,255,255,.03));
  border-radius: 12px;
  padding: 24px;
  color: #fff;
}

.mc-instagram-placeholder span {
  color: var(--mc-pink-2);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}

.mc-instagram-placeholder h2 {
  margin: 2px 0 4px !important;
}

.mc-instagram-placeholder p {
  margin: 0 !important;
  color: var(--mc-muted);
}

.mc-instagram-placeholder a {
  background: var(--mc-pink);
  color: #050407 !important;
  border-radius: 6px;
  padding: 10px 14px;
  text-decoration: none !important;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .mc-header-slogan {
    display: none;
  }

  .mc-header-search {
    width: 180px;
    flex-basis: 180px;
  }

  .mc-menu-list > li > a,
  .mc-menu-list .menu-item > a {
    padding: 0 11px;
    font-size: 12px;
  }
}

@media (max-width: 781px) {
  .mc-header-top {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .mc-brand-row {
    display: grid !important;
    grid-template-columns: 1fr;
    justify-items: center !important;
    text-align: center;
    gap: 16px !important;
  }

  .mc-brand-box {
    justify-content: center;
    min-width: 0;
  }

  .mc-site-logo img {
    max-height: 76px;
  }

  .mc-socials {
    justify-content: center;
    flex-wrap: wrap;
  }

  .mc-nav-shell {
    display: grid;
    grid-template-columns: auto 1fr;
    min-height: 58px;
    padding: 8px 0;
  }

  .mc-menu-toggle {
    display: inline-flex;
    grid-column: 1;
  }

  .mc-primary-menu {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  .mc-nav-shell.is-open .mc-primary-menu {
    display: block;
  }

  .mc-menu-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0 6px;
  }

  .mc-menu-list > li > a,
  .mc-menu-list .menu-item > a,
  .mc-menu-list > li:first-child > a {
    min-height: 48px;
    justify-content: flex-start;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    padding: 0 14px;
    font-size: 14px;
  }

  .mc-menu-list .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0,0,0,.25);
    border: 0;
    box-shadow: none;
    margin: 6px 0 0 10px;
  }

  .mc-header-search {
    grid-column: 2;
    justify-self: end;
    width: 100%;
    max-width: 210px;
    flex-basis: auto;
  }

  .mc-front-page {
    padding-top: 12px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .mc-hero-cover {
    min-height: 380px !important;
    padding: 34px 24px !important;
  }

  .mc-hero-title,
  .mc-hero-title a {
    font-size: clamp(34px, 10vw, 50px) !important;
  }

  .mc-slider-controls .swiper-button-prev,
  .mc-slider-controls .swiper-button-next,
  .newswp-slider-nav .swiper-button-prev,
  .newswp-slider-nav .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
  }

  .mc-featured-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .mc-list-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .mc-list-card .wp-block-column,
  .mc-list-card .wp-block-column[style] {
    flex-basis: auto !important;
  }

  .mc-list-content {
    padding: 16px !important;
  }

  .mc-sidebar {
    position: static;
  }

  .mc-agenda-item {
    grid-template-columns: 48px 1fr;
  }

  .mc-agenda-button {
    grid-column: 2;
    width: max-content;
  }
}

@media (max-width: 520px) {
  .mc-brand-box {
    flex-direction: column;
    gap: 8px !important;
  }

  .mc-site-title,
  .mc-site-title a,
  .mc-brand-text .wp-block-site-title,
  .mc-brand-text .wp-block-site-title a {
    font-size: 36px !important;
  }

  .mc-site-tagline,
  .mc-brand-text .wp-block-site-tagline {
    letter-spacing: .16em !important;
    font-size: 11px !important;
  }

  .mc-socials-label {
    width: 100%;
    text-align: center;
  }

  .mc-header-search {
    max-width: 160px;
  }

  .mc-featured-grid {
    grid-template-columns: 1fr !important;
  }

  .mc-card-image,
  .mc-card-image img {
    height: 210px !important;
  }

  .mc-column-content {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .mc-column-content a {
    grid-column: auto;
  }

  .mc-instagram-placeholder {
    display: grid;
  }
}


/* ==========================================================================
   MARIA CLARA V2 — HOME IDÊNTICA À REFERÊNCIA
   ========================================================================== */
html body.mc-ref-body {
  margin: 0 !important;
  background: #030204 !important;
  color: #fff !important;
  font-family: Arial, Helvetica, sans-serif !important;
  overflow-x: hidden;
}
body.mc-ref-body * { box-sizing: border-box; }
body.mc-ref-body a { color: inherit; }
.mc-ref-container {
  width: min(100% - 70px, 1370px);
  margin: 0 auto;
}
.mc-ref-header {
  background: #020203;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.mc-ref-topbar {
  background: #020203;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.mc-ref-brand-line {
  min-height: 144px;
  display: grid;
  grid-template-columns: 500px 1fr 245px;
  gap: 36px;
  align-items: center;
}
.mc-ref-logo {
  display: block;
  text-decoration: none !important;
  line-height: 0;
}
.mc-ref-logo img {
  display: block;
  width: 475px;
  max-width: 100%;
  height: auto;
}
.mc-ref-logo strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 54px;
  line-height: .9;
}
.mc-ref-logo small {
  display: block;
  color: #ec3f94;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 13px;
  margin-top: 10px;
}
.mc-ref-slogan {
  border-left: 1px solid rgba(255,255,255,.35);
  padding-left: 34px;
  color: #fff;
}
.mc-ref-slogan p {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: .01em;
}
.mc-ref-slogan strong {
  color: #ec3f94;
  font-weight: 900;
}
.mc-ref-socials {
  justify-self: end;
  text-align: center;
}
.mc-ref-socials span {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.mc-ref-socials div {
  display: flex;
  gap: 13px;
}
.mc-ref-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ec3f94;
  color: #050407 !important;
  text-decoration: none !important;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}
.mc-ref-menu-wrap {
  background: #030204;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.mc-ref-menu-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: 58px 1fr 72px;
  align-items: stretch;
}
.mc-ref-home-btn {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: #ec3f94;
  color: #fff !important;
  text-decoration: none !important;
}
.mc-ref-menu {
  list-style: none;
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0 18px;
  gap: 0;
}
.mc-ref-menu li {
  margin: 0;
  padding: 0;
}
.mc-ref-menu a {
  height: 58px;
  display: flex;
  align-items: center;
  padding: 0 23px;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .2s ease, border .2s ease, background .2s ease;
}
.mc-ref-menu a:hover {
  color: #ff5ca8 !important;
  border-bottom-color: #ec3f94;
}
.mc-ref-search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}
.mc-ref-search label {
  width: 0;
  overflow: hidden;
}
.mc-ref-search input {
  width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
.mc-ref-search button {
  border: 0 !important;
  background: transparent !important;
  color: #ec3f94 !important;
  cursor: pointer;
  padding: 0 6px !important;
}
.mc-ref-mobile-toggle {
  display: none;
}
.mc-ref-main {
  background: radial-gradient(circle at 52% 23%, rgba(236,63,148,.12), transparent 34%), #030204;
  min-height: 100vh;
  padding-top: 10px;
}
.mc-ref-hero {
  padding-top: 0;
}
.mc-ref-hero-slider {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(110deg, #130910, #2b0920);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 70px rgba(0,0,0,.38);
}
.mc-ref-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center center;
  transition: opacity .45s ease, visibility .45s ease;
}
.mc-ref-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.mc-ref-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.63) 33%, rgba(0,0,0,.24) 57%, rgba(0,0,0,.66) 100%),
    radial-gradient(circle at 73% 45%, rgba(236,63,148,.42), transparent 31%);
}
.mc-ref-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.48), transparent 55%);
}
.mc-ref-hero-content {
  position: relative;
  z-index: 2;
  width: min(520px, 54%);
  padding: 42px 0 0 118px;
}
.mc-ref-hero-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 13px;
}
.mc-ref-hero-tags span,
.mc-ref-pill {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 9px;
  background: #ec3f94;
  border-radius: 3px;
  color: #060307 !important;
  text-decoration: none !important;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.mc-ref-hero-content h1 {
  margin: 0 0 11px !important;
  color: #fff !important;
  font-size: clamp(39px, 4.2vw, 61px);
  line-height: .96;
  font-weight: 1000;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0,0,0,.55);
}
.mc-ref-hero-content h1 a {
  color: #fff !important;
  text-decoration: none !important;
}
.mc-ref-hero-content p {
  max-width: 420px;
  margin: 0 0 17px;
  color: #fff;
  font-size: 16px;
  line-height: 1.24;
}
.mc-ref-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 290px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #ec3f94;
  border-radius: 5px;
  color: #fff !important;
  background: rgba(236,63,148,.06);
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.mc-ref-outline-btn:hover,
.mc-ref-news-btn:hover {
  background: #ec3f94;
  color: #050407 !important;
}
.mc-ref-hero-mark {
  position: absolute;
  z-index: 2;
  right: 108px;
  top: 48px;
  width: 210px;
  max-width: 22%;
  height: auto;
  opacity: .95;
}
.mc-ref-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 72px;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 82px;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 200;
  cursor: pointer;
  padding: 0 !important;
  opacity: .96;
}
.mc-ref-prev { left: 24px; }
.mc-ref-next { right: 23px; }
.mc-ref-dots {
  position: absolute;
  z-index: 6;
  bottom: 17px;
  left: 0;
  right: 0;
  display: flex;
  gap: 11px;
  justify-content: center;
}
.mc-ref-dots button {
  width: 10px !important;
  height: 10px !important;
  min-width: 10px !important;
  padding: 0 !important;
  border-radius: 999px;
  border: 1px solid #fff !important;
  background: transparent !important;
}
.mc-ref-dots button.is-active {
  background: #ec3f94 !important;
  border-color: #ec3f94 !important;
}
.mc-ref-news-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 48px;
  padding-top: 20px;
  align-items: start;
}
.mc-ref-left {
  min-width: 0;
}
.mc-ref-section-title,
.mc-ref-side-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 14px;
}
.mc-ref-section-title::after,
.mc-ref-side-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #ec3f94;
  opacity: .8;
}
.mc-ref-section-title strong,
.mc-ref-side-title strong {
  color: #ec3f94;
  font-size: 25px;
  line-height: 1;
}
.mc-ref-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.mc-ref-card {
  min-width: 0;
  overflow: hidden;
  background: #050407;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
}
.mc-ref-card-img {
  display: block;
  height: 150px;
  background: linear-gradient(135deg, #240f21, #080406);
  background-size: cover;
  background-position: center;
  text-decoration: none !important;
}
.mc-ref-card-body {
  padding: 10px 10px 13px;
}
.mc-ref-card h2 {
  margin: 8px 0 6px !important;
  color: #fff !important;
  font-size: 16px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.015em;
}
.mc-ref-card h2 a {
  color: #fff !important;
  text-decoration: none !important;
}
.mc-ref-card h2 a:hover {
  color: #ff5ca8 !important;
}
.mc-ref-card time {
  color: #b7aeb5;
  font-size: 12px;
}
.mc-ref-center {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.mc-ref-news-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-width: 260px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid #ec3f94;
  border-radius: 6px;
  color: #ec3f94 !important;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.mc-ref-sidebar {
  padding-top: 0;
}
.mc-ref-side-block {
  margin-bottom: 18px;
}
.mc-ref-event {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mc-ref-date {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236,63,148,.64);
  border-radius: 2px;
  line-height: 1;
  color: #ec3f94;
}
.mc-ref-date b {
  display: block;
  font-size: 21px;
  line-height: .9;
}
.mc-ref-date small {
  display: block;
  color: #fff;
  font-size: 11px;
  margin-top: -9px;
}
.mc-ref-event-info b {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.mc-ref-event-info small {
  display: block;
  color: #bbb2b9;
  font-size: 12px;
  margin-top: 2px;
}
.mc-ref-event a,
.mc-ref-column-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 9px;
  background: #ec3f94;
  border-radius: 2px;
  color: #050407 !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}
.mc-ref-column-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
}
.mc-ref-avatar {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 20%, #ffcf65, #ec3f94 58%, #7a3cff);
  color: #050407;
  font-weight: 1000;
  border: 2px solid rgba(255,255,255,.17);
}
.mc-ref-column-row p {
  margin: 0 0 7px;
  color: #fff;
  font-size: 15px;
  line-height: 1.18;
}
.mc-ref-benefits {
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,.13);
  background: #030204;
}
.mc-ref-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.mc-ref-benefits-grid div {
  min-height: 82px;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 10px;
  align-content: center;
  padding: 0 30px;
  border-right: 1px solid rgba(255,255,255,.17);
}
.mc-ref-benefits-grid div:last-child {
  border-right: 0;
}
.mc-ref-benefits i {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236,63,148,.72);
  border-radius: 999px;
  color: #ec3f94;
  font-style: normal;
  font-size: 30px;
  line-height: 1;
}
.mc-ref-benefits strong {
  color: #ec3f94;
  text-transform: uppercase;
  font-size: 14px;
  align-self: end;
}
.mc-ref-benefits span {
  color: #d1c8cf;
  font-size: 13px;
}
.mc-ref-footer {
  background: #030204;
  border-top: 1px solid rgba(236,63,148,.23);
  padding: 18px 0;
  text-align: center;
}
.mc-ref-footer p {
  margin: 0;
  color: #b7aeb5;
  font-size: 13px;
}
.mc-ref-footer a {
  color: #ec3f94 !important;
  text-decoration: none !important;
  font-weight: 800;
}
@media (max-width: 1220px) {
  .mc-ref-container { width: min(100% - 36px, 1160px); }
  .mc-ref-brand-line { grid-template-columns: 420px 1fr 220px; gap: 24px; }
  .mc-ref-menu a { padding: 0 12px; font-size: 12px; }
  .mc-ref-hero-content { padding-left: 86px; }
  .mc-ref-news-area { grid-template-columns: 1fr 320px; gap: 28px; }
}
@media (max-width: 980px) {
  .mc-ref-brand-line {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    min-height: auto;
    padding: 18px 0;
    gap: 12px;
  }
  .mc-ref-logo img { width: 420px; }
  .mc-ref-slogan { border-left: 0; padding-left: 0; }
  .mc-ref-socials { justify-self: center; }
  .mc-ref-menu-row { grid-template-columns: 58px 1fr 58px; }
  .mc-ref-mobile-toggle {
    display: inline-flex;
    align-self: center;
    justify-self: start;
    margin-left: 12px;
    background: transparent !important;
    border: 1px solid rgba(236,63,148,.7) !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 8px 12px !important;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
  }
  .mc-ref-menu {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    z-index: 40;
    margin-top: 58px;
    padding: 8px;
    background: #070508;
    border: 1px solid rgba(236,63,148,.44);
    border-radius: 8px;
    flex-direction: column;
  }
  .mc-ref-menu.is-open { display: flex; }
  .mc-ref-menu a { height: 42px; }
  .mc-ref-hero-slider { height: 390px; }
  .mc-ref-hero-content { width: 80%; padding: 42px 58px; }
  .mc-ref-hero-mark { display: none; }
  .mc-ref-news-area { grid-template-columns: 1fr; }
  .mc-ref-card-grid { grid-template-columns: repeat(2, 1fr); }
  .mc-ref-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .mc-ref-benefits-grid div { border-bottom: 1px solid rgba(255,255,255,.13); }
}
@media (max-width: 620px) {
  .mc-ref-container { width: min(100% - 24px, 100%); }
  .mc-ref-logo img { width: 315px; }
  .mc-ref-slogan p { font-size: 16px; }
  .mc-ref-socials div { gap: 8px; }
  .mc-ref-hero-slider { height: 430px; }
  .mc-ref-hero-content {
    width: 100%;
    padding: 54px 32px;
  }
  .mc-ref-hero-content h1 { font-size: 35px; }
  .mc-ref-outline-btn { min-width: 0; width: 100%; }
  .mc-ref-arrow { font-size: 58px; width: 35px; }
  .mc-ref-prev { left: 4px; }
  .mc-ref-next { right: 4px; }
  .mc-ref-card-grid { grid-template-columns: 1fr; }
  .mc-ref-card-img { height: 195px; }
  .mc-ref-event { grid-template-columns: 52px 1fr; }
  .mc-ref-event a { grid-column: 2; width: max-content; }
  .mc-ref-benefits-grid { grid-template-columns: 1fr; }
  .mc-ref-benefits-grid div { border-right: 0; padding: 15px 8px; }
}


/* ==========================================================================
   MARIA CLARA V4 — COLUNAS EXTRAS, TOP STORIES, VÍDEOS E RODAPÉ
   ========================================================================== */
body.mc-ref-body .mc-ref-category-columns {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin-top: 36px !important;
}
body.mc-ref-body .mc-ref-column-box {
  min-width: 0 !important;
  background: #070508 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}
body.mc-ref-body .mc-ref-column-title {
  background: linear-gradient(90deg, #ec3f94, rgba(236,63,148,.06)) !important;
  border-bottom: 1px solid rgba(236,63,148,.55) !important;
}
body.mc-ref-body .mc-ref-column-title a {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 42px !important;
  padding: 0 13px !important;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: .04em !important;
}
body.mc-ref-body .mc-ref-column-title strong {
  color: #050407 !important;
  font-size: 20px !important;
}
body.mc-ref-body .mc-ref-column-main {
  height: 218px !important;
  position: relative !important;
  background: #170b14 center/cover no-repeat !important;
}
body.mc-ref-body .mc-ref-column-main::before,
body.mc-ref-body .mc-ref-trend-card::before,
body.mc-ref-body .mc-ref-video-img::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(0deg, rgba(0,0,0,.86), rgba(0,0,0,.08) 58%) !important;
}
body.mc-ref-body .mc-ref-column-main a {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 16px !important;
  color: #fff !important;
  text-decoration: none !important;
}
body.mc-ref-body .mc-ref-column-main span {
  width: max-content !important;
  margin-bottom: 8px !important;
  padding: 4px 9px !important;
  background: #ec3f94 !important;
  color: #050407 !important;
  border-radius: 3px !important;
  text-transform: uppercase !important;
  font-size: 10px !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mc-ref-column-main h3 {
  margin: 0 !important;
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mc-ref-mini-post {
  display: grid !important;
  grid-template-columns: 84px 1fr !important;
  gap: 11px !important;
  padding: 11px !important;
  border-top: 1px solid rgba(255,255,255,.1) !important;
}
body.mc-ref-body .mc-ref-mini-img {
  display: block !important;
  height: 64px !important;
  background: #1b1019 center/cover no-repeat !important;
  border-radius: 5px !important;
}
body.mc-ref-body .mc-ref-mini-post h4 {
  margin: 0 0 5px !important;
  font-size: 13px !important;
  line-height: 1.16 !important;
  font-weight: 800 !important;
}
body.mc-ref-body .mc-ref-mini-post h4 a {
  color: #fff !important;
  text-decoration: none !important;
}
body.mc-ref-body .mc-ref-mini-post time {
  color: #b8aeb6 !important;
  font-size: 11px !important;
}

body.mc-ref-body .mc-ref-top-stories {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 365px !important;
  gap: 44px !important;
  margin-top: 42px !important;
  padding-top: 0 !important;
}
body.mc-ref-body .mc-ref-tabs-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  border-bottom: 2px solid #ec3f94 !important;
  margin-bottom: 22px !important;
}
body.mc-ref-body .mc-ref-tabs-head h2 {
  margin: 0 !important;
  min-height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 16px !important;
  background: #ec3f94 !important;
  color: #050407 !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mc-ref-tabs-head nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  justify-content: flex-end !important;
}
body.mc-ref-body .mc-ref-tabs-head a {
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}
body.mc-ref-body .mc-ref-story-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px 28px !important;
}
body.mc-ref-body .mc-ref-story-img {
  display: block !important;
  height: 185px !important;
  background: #160b14 center/cover no-repeat !important;
  border-radius: 7px !important;
  margin-bottom: 12px !important;
}
body.mc-ref-body .mc-ref-story-feature h3 {
  margin: 0 0 8px !important;
  color: #fff !important;
  font-size: 19px !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mc-ref-story-feature h3 a,
body.mc-ref-body .mc-ref-story-small h4 a {
  color: #fff !important;
  text-decoration: none !important;
}
body.mc-ref-body .mc-ref-story-feature p {
  margin: 0 0 10px !important;
  color: #b9aeb7 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
}
body.mc-ref-body .mc-ref-story-feature strong {
  color: #ec3f94 !important;
}
body.mc-ref-body .mc-ref-story-feature div {
  color: #d6cdd4 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}
body.mc-ref-body .mc-ref-story-small {
  display: grid !important;
  grid-template-columns: 120px 1fr !important;
  gap: 14px !important;
  align-items: center !important;
}
body.mc-ref-body .mc-ref-small-img {
  display: block !important;
  height: 84px !important;
  background: #1c1019 center/cover no-repeat !important;
  border-radius: 6px !important;
}
body.mc-ref-body .mc-ref-story-small h4 {
  margin: 0 0 7px !important;
  font-size: 14px !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mc-ref-story-small time {
  color: #b9aeb7 !important;
  font-size: 12px !important;
}
body.mc-ref-body .mc-ref-trending-title {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #ec3f94 !important;
  text-transform: uppercase !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  margin-bottom: 12px !important;
}
body.mc-ref-body .mc-ref-trending-title strong {
  width: 28px !important;
  height: 28px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: #ec3f94 !important;
  color: #050407 !important;
}
body.mc-ref-body .mc-ref-trend-card {
  position: relative !important;
  height: 205px !important;
  background: #190d17 center/cover no-repeat !important;
  border-bottom: 1px solid rgba(255,255,255,.15) !important;
  overflow: hidden !important;
}
body.mc-ref-body .mc-ref-trend-card a {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  color: #fff !important;
  text-decoration: none !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 0 20px 19px !important;
}
body.mc-ref-body .mc-ref-trend-card span {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 36px !important;
  height: 36px !important;
  display: grid !important;
  place-items: center !important;
  background: #ec3f94 !important;
  color: #050407 !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mc-ref-trend-card h3 {
  margin: 0 !important;
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

body.mc-ref-body .mc-ref-video-section {
  margin-top: 44px !important;
  padding: 34px 0 38px !important;
  background: #202020 !important;
  border-top: 1px solid rgba(255,255,255,.1) !important;
  border-bottom: 1px solid rgba(255,255,255,.1) !important;
}
body.mc-ref-body .mc-ref-video-title {
  min-height: 38px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #080808 !important;
  border-left: 155px solid #ec3f94 !important;
  color: #fff !important;
  padding-left: 12px !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  margin-bottom: 24px !important;
  text-transform: uppercase !important;
}
body.mc-ref-body .mc-ref-video-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 30px !important;
}
body.mc-ref-body .mc-ref-video-img {
  position: relative !important;
  display: block !important;
  height: 238px !important;
  background: #180d16 center/cover no-repeat !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  text-decoration: none !important;
}
body.mc-ref-body .mc-ref-play {
  position: absolute !important;
  z-index: 2 !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 52px !important;
  height: 52px !important;
  display: grid !important;
  place-items: center !important;
  border: 2px solid #fff !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-size: 20px !important;
}
body.mc-ref-body .mc-ref-video-pill {
  display: inline-flex !important;
  margin-top: -20px !important;
  margin-left: 10px !important;
  position: relative !important;
  z-index: 3 !important;
  background: #ec3f94 !important;
  color: #050407 !important;
  padding: 4px 9px !important;
  border-radius: 2px !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}
body.mc-ref-body .mc-ref-video-card h3 {
  margin: 13px 0 9px !important;
  color: #fff !important;
  font-size: 19px !important;
  line-height: 1.24 !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mc-ref-video-card h3 a {
  color: #fff !important;
  text-decoration: none !important;
}
body.mc-ref-body .mc-ref-video-card p {
  margin: 0 !important;
  color: #d0c7ce !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
}
body.mc-ref-body .mc-ref-footer-rich {
  background: #1e1e1e !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
  padding: 0 !important;
  text-align: left !important;
}
body.mc-ref-body .mc-ref-footer-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 1.1fr 1.15fr .85fr !important;
  gap: 44px !important;
  padding: 62px 0 !important;
}
body.mc-ref-body .mc-ref-footer h3 {
  margin: 0 0 18px !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mc-ref-footer-brand {
  display: block !important;
  margin-bottom: 18px !important;
}
body.mc-ref-body .mc-ref-footer-brand img {
  width: 250px !important;
  max-width: 100% !important;
  height: auto !important;
}
body.mc-ref-body .mc-ref-footer-about p {
  max-width: 330px !important;
  color: #fff !important;
  font-size: 14px !important;
  line-height: 1.58 !important;
}
body.mc-ref-body .mc-ref-footer-socials {
  display: flex !important;
  gap: 10px !important;
  margin-top: 20px !important;
}
body.mc-ref-body .mc-ref-footer-socials a {
  width: 38px !important;
  height: 38px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mc-ref-footer-recent article {
  display: grid !important;
  grid-template-columns: 78px 1fr !important;
  gap: 14px !important;
  margin-bottom: 15px !important;
  padding-bottom: 15px !important;
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
}
body.mc-ref-body .mc-ref-footer-thumb {
  display: block !important;
  height: 74px !important;
  background: #171717 center/cover no-repeat !important;
  border-radius: 5px !important;
}
body.mc-ref-body .mc-ref-footer-recent h4 {
  margin: 0 0 7px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mc-ref-footer-recent h4 a {
  color: #fff !important;
  text-decoration: none !important;
}
body.mc-ref-body .mc-ref-footer-recent time {
  color: #bcbcbc !important;
  font-size: 11px !important;
}
body.mc-ref-body .mc-ref-footer-cat-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  gap: 10px 18px !important;
}
body.mc-ref-body .mc-ref-footer-cat-grid a {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 10px !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}
body.mc-ref-body .mc-ref-footer-cat-grid small {
  max-width: 74px !important;
  overflow: hidden !important;
  padding: 5px 6px !important;
  border-radius: 4px !important;
  background: rgba(236,63,148,.2) !important;
  color: #ec3f94 !important;
  font-size: 9px !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
body.mc-ref-body .mc-ref-footer-tags div {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}
body.mc-ref-body .mc-ref-footer-tags a {
  display: inline-flex !important;
  padding: 7px 10px !important;
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}
body.mc-ref-body .mc-ref-footer-bottom {
  background: #101010 !important;
  border-top: 1px solid rgba(255,255,255,.09) !important;
  padding: 16px 0 !important;
}
body.mc-ref-body .mc-ref-footer-bottom .mc-ref-container {
  display: flex !important;
  justify-content: space-between !important;
  gap: 20px !important;
  align-items: center !important;
}
body.mc-ref-body .mc-ref-footer-bottom p {
  margin: 0 !important;
  color: #fff !important;
  font-size: 13px !important;
}
body.mc-ref-body .mc-ref-footer-bottom nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 18px !important;
}
body.mc-ref-body .mc-ref-footer-bottom a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}
body.mc-ref-body .mc-ref-footer-bottom a:hover,
body.mc-ref-body .mc-ref-footer-recent h4 a:hover,
body.mc-ref-body .mc-ref-footer-cat-grid a:hover,
body.mc-ref-body .mc-ref-footer-tags a:hover,
body.mc-ref-body .mc-ref-mini-post h4 a:hover,
body.mc-ref-body .mc-ref-story-feature h3 a:hover,
body.mc-ref-body .mc-ref-story-small h4 a:hover,
body.mc-ref-body .mc-ref-video-card h3 a:hover {
  color: #ec3f94 !important;
}
@media (max-width: 1180px) {
  body.mc-ref-body .mc-ref-category-columns { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  body.mc-ref-body .mc-ref-top-stories { grid-template-columns: 1fr !important; }
  body.mc-ref-body .mc-ref-trending { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 14px !important; }
  body.mc-ref-body .mc-ref-trending-title { grid-column: 1 / -1 !important; }
  body.mc-ref-body .mc-ref-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 760px) {
  body.mc-ref-body .mc-ref-category-columns,
  body.mc-ref-body .mc-ref-video-grid,
  body.mc-ref-body .mc-ref-story-grid,
  body.mc-ref-body .mc-ref-footer-grid { grid-template-columns: 1fr !important; }
  body.mc-ref-body .mc-ref-tabs-head { align-items: flex-start !important; flex-direction: column !important; }
  body.mc-ref-body .mc-ref-story-small { grid-template-columns: 96px 1fr !important; }
  body.mc-ref-body .mc-ref-trending { grid-template-columns: 1fr !important; }
  body.mc-ref-body .mc-ref-video-title { border-left-width: 60px !important; }
  body.mc-ref-body .mc-ref-footer-bottom .mc-ref-container { flex-direction: column !important; align-items: flex-start !important; }
}


/* ==========================================================================
   MARIA CLARA V5 — IMAGENS FALLBACK, ABAS DINÂMICAS E MINIATURAS DE VÍDEO
   ========================================================================== */
body.mc-ref-body .has-image {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
body.mc-ref-body .no-image {
  background:
    radial-gradient(circle at 50% 25%, rgba(236,63,148,.26), transparent 38%),
    linear-gradient(135deg, #261020 0%, #0a0508 100%) !important;
}
body.mc-ref-body .mc-ref-tab-nav button {
  appearance: none !important;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  padding: 0 !important;
  cursor: pointer !important;
}
body.mc-ref-body .mc-ref-tab-nav button:hover,
body.mc-ref-body .mc-ref-tab-nav button.is-active {
  color: #ec3f94 !important;
}
body.mc-ref-body .mc-ref-tab-panels {
  position: relative !important;
}
body.mc-ref-body .mc-ref-tab-panel {
  display: none !important;
  opacity: 0 !important;
  transform: translateY(8px) !important;
}
body.mc-ref-body .mc-ref-tab-panel.is-active {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: mcRefFade .28s ease both !important;
}
@keyframes mcRefFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
body.mc-ref-body .mc-ref-video-img.has-image::before {
  background: linear-gradient(0deg, rgba(0,0,0,.62), rgba(0,0,0,.12) 58%) !important;
}
body.mc-ref-body .mc-ref-story-img.has-image {
  box-shadow: inset 0 -70px 90px rgba(0,0,0,.26) !important;
}
body.mc-ref-body .mc-ref-tab-nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  justify-content: flex-end !important;
}
@media (max-width: 760px) {
  body.mc-ref-body .mc-ref-tab-nav {
    justify-content: flex-start !important;
  }
}


/* ==========================================================================
   MARIA CLARA V6 — PÁGINAS INTERNAS, CATEGORIAS E SLUGS CORRIGIDOS
   ========================================================================== */
body.mc-ref-body.mcr6-body {
  background: #030204 !important;
  color: #fff !important;
}
body.mc-ref-body .mcr6-main {
  padding-top: 30px !important;
  padding-bottom: 50px !important;
  background: radial-gradient(circle at 50% 0%, rgba(236,63,148,.09), transparent 34%), #030204 !important;
}
body.mc-ref-body .mcr6-page-title {
  margin-bottom: 24px !important;
}
body.mc-ref-body .mcr6-tax-description {
  max-width: 850px !important;
  color: #d6cdd4 !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}
body.mc-ref-body .mcr6-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 340px !important;
  gap: 42px !important;
  align-items: start !important;
}
body.mc-ref-body .mcr6-archive-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
}
body.mc-ref-body .mcr6-archive-card {
  overflow: hidden !important;
  background: #070508 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 8px !important;
}
body.mc-ref-body .mcr6-archive-img {
  display: block !important;
  height: 230px !important;
  background: #1b0f18 center/cover no-repeat !important;
  text-decoration: none !important;
}
body.mc-ref-body .mcr6-archive-content {
  padding: 16px !important;
}
body.mc-ref-body .mcr6-archive-card h2 {
  margin: 10px 0 8px !important;
  color: #fff !important;
  font-size: 22px !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mcr6-archive-card h2 a,
body.mc-ref-body .mcr6-recent-item h4 a,
body.mc-ref-body .mcr6-single-nav a {
  color: #fff !important;
  text-decoration: none !important;
}
body.mc-ref-body .mcr6-archive-card h2 a:hover,
body.mc-ref-body .mcr6-recent-item h4 a:hover,
body.mc-ref-body .mcr6-single-nav a:hover {
  color: #ec3f94 !important;
}
body.mc-ref-body .mcr6-meta {
  margin: 0 0 12px !important;
  color: #d7ced5 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
}
body.mc-ref-body .mcr6-meta strong {
  color: #ec3f94 !important;
}
body.mc-ref-body .mcr6-excerpt {
  color: #e8dfe6 !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}
body.mc-ref-body .mcr6-read-more {
  display: inline-flex !important;
  margin-top: 14px !important;
  color: #ec3f94 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mcr6-pagination {
  display: flex !important;
  gap: 8px !important;
  justify-content: center !important;
  margin-top: 28px !important;
}
body.mc-ref-body .mcr6-pagination a,
body.mc-ref-body .mcr6-pagination span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 36px !important;
  padding: 0 12px !important;
  border: 1px solid rgba(236,63,148,.55) !important;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 4px !important;
}
body.mc-ref-body .mcr6-pagination .current,
body.mc-ref-body .mcr6-pagination a:hover {
  background: #ec3f94 !important;
  color: #050407 !important;
}
body.mc-ref-body .mcr6-sidebar {
  position: sticky !important;
  top: 24px !important;
  display: grid !important;
  gap: 20px !important;
}
body.mc-ref-body .mcr6-sidebar .mc-ref-side-block {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
body.mc-ref-body .mcr6-recent-item {
  display: grid !important;
  grid-template-columns: 82px 1fr !important;
  gap: 12px !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.11) !important;
}
body.mc-ref-body .mcr6-recent-thumb {
  display: block !important;
  height: 62px !important;
  background: #21101d center/cover no-repeat !important;
  border-radius: 5px !important;
}
body.mc-ref-body .mcr6-recent-item h4 {
  margin: 0 0 5px !important;
  color: #fff !important;
  font-size: 13px !important;
  line-height: 1.16 !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mcr6-recent-item time {
  color: #bbb2b9 !important;
  font-size: 11px !important;
}
body.mc-ref-body .mcr6-single-article,
body.mc-ref-body .mcr6-page-article {
  min-width: 0 !important;
  background: #070508 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}
body.mc-ref-body .mcr6-page-content-wrap {
  max-width: 1100px !important;
}
body.mc-ref-body .mcr6-single-hero {
  height: min(480px, 52vw) !important;
  background: #1b0f18 center/cover no-repeat !important;
}
body.mc-ref-body .mcr6-single-header {
  padding: 26px 28px 12px !important;
}
body.mc-ref-body .mcr6-single-header h1 {
  margin: 12px 0 10px !important;
  color: #fff !important;
  font-size: clamp(32px, 4.5vw, 56px) !important;
  line-height: 1 !important;
  font-weight: 1000 !important;
  letter-spacing: -.04em !important;
}
body.mc-ref-body .mcr6-content {
  padding: 12px 28px 34px !important;
  color: #f3eaf1 !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
}
body.mc-ref-body .mcr6-content p,
body.mc-ref-body .mcr6-content li,
body.mc-ref-body .mcr6-content span {
  color: #f3eaf1 !important;
}
body.mc-ref-body .mcr6-content a {
  color: #ec3f94 !important;
}
body.mc-ref-body .mcr6-content img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 8px !important;
}
body.mc-ref-body .mcr6-single-nav {
  display: flex !important;
  justify-content: space-between !important;
  gap: 20px !important;
  padding: 20px 28px !important;
  border-top: 1px solid rgba(255,255,255,.1) !important;
}
body.mc-ref-body .mcr6-empty {
  padding: 30px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 10px !important;
  background: #070508 !important;
}
body.mc-ref-body .mcr6-empty h2 {
  margin-top: 0 !important;
  color: #fff !important;
}

/* Move visual da faixa para logo após o banner */
body.mc-ref-body .mcr6-benefits-after-hero,
body.mc-ref-body .mc-ref-hero + .mc-ref-benefits {
  margin-top: 18px !important;
  margin-bottom: 24px !important;
}

@media (max-width: 980px) {
  body.mc-ref-body .mcr6-layout {
    grid-template-columns: 1fr !important;
  }
  body.mc-ref-body .mcr6-sidebar {
    position: static !important;
  }
  body.mc-ref-body .mcr6-archive-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 620px) {
  body.mc-ref-body .mcr6-main {
    padding-top: 18px !important;
  }
  body.mc-ref-body .mcr6-archive-img {
    height: 205px !important;
  }
  body.mc-ref-body .mcr6-content,
  body.mc-ref-body .mcr6-single-header,
  body.mc-ref-body .mcr6-single-nav {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}


/* ==========================================================================
   MARIA CLARA V8 — INSTAGRAM/WHATSAPP FLUTUANTE, YOUTUBE E OLHINHO ALEATÓRIO
   ========================================================================== */
body.mc-ref-body .mc-ref-menu-row {
  grid-template-columns: 58px minmax(0, 1fr) 48px 72px !important;
}
body.mc-ref-body .mc-ref-random-btn {
  display: grid !important;
  place-items: center !important;
  width: 48px !important;
  height: 58px !important;
  color: #ec3f94 !important;
  text-decoration: none !important;
  border-left: 1px solid rgba(255,255,255,.08) !important;
  border-right: 1px solid rgba(255,255,255,.08) !important;
  transition: background .2s ease, color .2s ease, transform .2s ease !important;
}
body.mc-ref-body .mc-ref-random-btn:hover {
  background: #ec3f94 !important;
  color: #050407 !important;
}
body.mc-ref-body .mc-ref-random-btn svg,
body.mc-ref-body .mc-ref-socials svg,
body.mc-ref-body .mc-ref-footer-socials svg,
body.mc-ref-body .mc-floating-socials svg {
  width: 22px !important;
  height: 22px !important;
  display: block !important;
  fill: currentColor !important;
}
body.mc-ref-body .mc-ref-socials a,
body.mc-ref-body .mc-ref-socials .mc-social-link {
  color: #050407 !important;
}
body.mc-ref-body .mc-ref-socials .mc-social-instagram {
  background: radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%) !important;
  color: #fff !important;
}
body.mc-ref-body .mc-ref-socials .mc-social-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
}
body.mc-ref-body .mc-ref-socials .mc-social-youtube {
  background: #ff0033 !important;
  color: #fff !important;
}
body.mc-ref-body .mc-ref-footer-socials a.mc-social-instagram,
body.mc-ref-body .mc-ref-footer-socials a.mc-social-whatsapp,
body.mc-ref-body .mc-ref-footer-socials a.mc-social-youtube {
  border: 0 !important;
  color: #fff !important;
}
body.mc-ref-body .mc-ref-footer-socials a.mc-social-instagram {
  background: radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%) !important;
}
body.mc-ref-body .mc-ref-footer-socials a.mc-social-whatsapp {
  background: #25d366 !important;
}
body.mc-ref-body .mc-ref-footer-socials a.mc-social-youtube {
  background: #ff0033 !important;
}
body.mc-ref-body .mc-floating-socials {
  position: fixed !important;
  right: 22px !important;
  bottom: 92px !important;
  z-index: 999999 !important;
  display: grid !important;
  gap: 12px !important;
}
body.mc-ref-body .mc-floating-socials a {
  width: 58px !important;
  height: 58px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.35) !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}
body.mc-ref-body .mc-floating-socials a:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.46) !important;
}
body.mc-ref-body .mc-floating-socials .mc-floating-instagram {
  background: radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%) !important;
}
body.mc-ref-body .mc-floating-socials .mc-floating-whatsapp {
  background: #25d366 !important;
}
body.mc-ref-body .mc-floating-socials svg {
  width: 31px !important;
  height: 31px !important;
}
@media (max-width: 980px) {
  body.mc-ref-body .mc-ref-menu-row {
    grid-template-columns: 58px minmax(0, 1fr) 48px 58px !important;
  }
  body.mc-ref-body .mc-ref-random-btn {
    grid-column: 3 !important;
  }
}
@media (max-width: 620px) {
  body.mc-ref-body .mc-floating-socials {
    right: 14px !important;
    bottom: 74px !important;
    gap: 10px !important;
  }
  body.mc-ref-body .mc-floating-socials a {
    width: 51px !important;
    height: 51px !important;
  }
  body.mc-ref-body .mc-floating-socials svg {
    width: 27px !important;
    height: 27px !important;
  }
}


/* ==========================================================================
   MARIA CLARA V10 — FOOTER PRETO, ÍCONES REDONDOS E SEÇÃO INSTAGRAM
   ========================================================================== */
body.mc-ref-body .mc-ref-footer-rich {
  background: #030204 !important;
  border-top: 1px solid rgba(236,63,148,.22) !important;
}
body.mc-ref-body .mc-ref-footer-bottom {
  background: #020203 !important;
  border-top: 1px solid rgba(236,63,148,.16) !important;
}
body.mc-ref-body .mc-ref-footer-grid {
  background: #030204 !important;
}
body.mc-ref-body .mc-ref-footer-socials {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
body.mc-ref-body .mc-ref-footer-socials a {
  width: 38px !important;
  height: 38px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  border: 0 !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.28) !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}
body.mc-ref-body .mc-ref-footer-socials a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 26px rgba(0,0,0,.38) !important;
}
body.mc-ref-body .mc-ref-footer-socials a.mc-social-instagram {
  background: radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%) !important;
}
body.mc-ref-body .mc-ref-footer-socials a.mc-social-whatsapp {
  background: #25d366 !important;
}
body.mc-ref-body .mc-ref-footer-socials a.mc-social-youtube {
  background: #ff0033 !important;
}
body.mc-ref-body .mc-ref-footer-socials svg {
  width: 21px !important;
  height: 21px !important;
  fill: currentColor !important;
}
body.mc-ref-body .mc-floating-socials {
  right: 24px !important;
  bottom: 92px !important;
  gap: 12px !important;
}
body.mc-ref-body .mc-floating-socials a {
  width: 56px !important;
  height: 56px !important;
  border: 2px solid rgba(255,255,255,.14) !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: 0 14px 38px rgba(0,0,0,.35) !important;
}
body.mc-ref-body .mc-floating-socials a svg {
  width: 29px !important;
  height: 29px !important;
}
body.mc-ref-body .mc-floating-socials .mc-floating-instagram {
  background: radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%) !important;
}
body.mc-ref-body .mc-floating-socials .mc-floating-whatsapp {
  background: #25d366 !important;
}

/* Feed Instagram */
body.mc-ref-body .mc-ref-instagram-feed {
  background: #030204 !important;
  border-top: 1px solid rgba(236,63,148,.18) !important;
  padding: 44px 0 52px !important;
}
body.mc-ref-body .mc-ref-instagram-head {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 24px !important;
  margin-bottom: 22px !important;
  border-bottom: 1px solid #ec3f94 !important;
  padding-bottom: 14px !important;
}
body.mc-ref-body .mc-ref-instagram-head span {
  color: #ec3f94 !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .16em !important;
}
body.mc-ref-body .mc-ref-instagram-head h2 {
  margin: 4px 0 6px !important;
  color: #fff !important;
  font-size: 28px !important;
  line-height: 1 !important;
  font-weight: 1000 !important;
  text-transform: uppercase !important;
}
body.mc-ref-body .mc-ref-instagram-head p {
  margin: 0 !important;
  color: #d9d1d7 !important;
  font-size: 14px !important;
}
body.mc-ref-body .mc-ref-instagram-head > a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  background: #ec3f94 !important;
  color: #050407 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 1000 !important;
}
body.mc-ref-body .mc-ref-instagram-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 10px !important;
}
body.mc-ref-body .mc-ref-instagram-card {
  position: relative !important;
  min-height: 170px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: radial-gradient(circle at 30% 20%, rgba(236,63,148,.45), transparent 36%), linear-gradient(135deg, #22101d, #060306) !important;
  background-size: cover !important;
  background-position: center !important;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,.1) !important;
}
body.mc-ref-body .mc-ref-instagram-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(0deg, rgba(0,0,0,.58), transparent 56%) !important;
}
body.mc-ref-body .mc-ref-instagram-card span {
  position: absolute !important;
  left: 10px !important;
  bottom: 10px !important;
  z-index: 2 !important;
  padding: 5px 8px !important;
  border-radius: 999px !important;
  background: #ec3f94 !important;
  color: #050407 !important;
  text-transform: uppercase !important;
  font-size: 10px !important;
  font-weight: 1000 !important;
}
body.mc-ref-body .mc-ref-instagram-shortcode {
  overflow: hidden !important;
}
@media (max-width: 1180px) {
  body.mc-ref-body .mc-ref-instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 680px) {
  body.mc-ref-body .mc-ref-instagram-head {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  body.mc-ref-body .mc-ref-instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  body.mc-ref-body .mc-ref-instagram-card {
    min-height: 145px !important;
  }
  body.mc-ref-body .mc-floating-socials a {
    width: 50px !important;
    height: 50px !important;
  }
}


/* ==========================================================================
   MARIA CLARA V11 — BLOG SEGMENTADO, CATEGORIA VAZIA E FLOATING SEM ERROS
   ========================================================================== */
body.mc-ref-body .mcr11-blog-title p {
  margin: 0 !important;
  color: #d8ced6 !important;
  font-size: 15px !important;
}
body.mc-ref-body .mcr11-segmented-blog {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 34px !important;
}
body.mc-ref-body .mcr11-segment {
  padding: 0 !important;
}
body.mc-ref-body .mcr11-segment-head {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px !important;
  margin-bottom: 14px !important;
  border-bottom: 1px solid #ec3f94 !important;
}
body.mc-ref-body .mcr11-segment-head h2 {
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 38px !important;
  padding: 0 16px !important;
  background: #ec3f94 !important;
  color: #050407 !important;
  text-transform: uppercase !important;
  font-size: 17px !important;
  font-weight: 1000 !important;
}
body.mc-ref-body .mcr11-segment-head h2 strong {
  color: #050407 !important;
}
body.mc-ref-body .mcr11-segment-head a {
  color: #ec3f94 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mcr11-segment-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
}
body.mc-ref-body .mcr11-segment-card {
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 8px !important;
  background: #070508 !important;
}
body.mc-ref-body .mcr11-segment-img {
  display: block !important;
  height: 150px !important;
  background: #1b0e18 center/cover no-repeat !important;
  text-decoration: none !important;
}
body.mc-ref-body .mcr11-segment-card div {
  padding: 12px !important;
}
body.mc-ref-body .mcr11-segment-card h3 {
  margin: 0 0 8px !important;
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
}
body.mc-ref-body .mcr11-segment-card h3 a {
  color: #fff !important;
  text-decoration: none !important;
}
body.mc-ref-body .mcr11-segment-card h3 a:hover {
  color: #ec3f94 !important;
}
body.mc-ref-body .mcr11-segment-card p {
  margin: 0 !important;
  color: #bdb4bc !important;
  font-size: 12px !important;
}
body.mc-ref-body .mcr11-segment-empty {
  padding: 18px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 8px !important;
  background: #070508 !important;
  color: #d8ced6 !important;
}
body.mc-ref-body .mcr11-empty-category {
  padding: 48px 28px !important;
  text-align: center !important;
  border: 1px solid rgba(236,63,148,.28) !important;
  border-radius: 12px !important;
  background: radial-gradient(circle at 50% 0%, rgba(236,63,148,.12), transparent 42%), #070508 !important;
}
body.mc-ref-body .mcr11-empty-logo img {
  width: min(420px, 82vw) !important;
  height: auto !important;
  margin: 0 auto 22px !important;
  display: block !important;
}
body.mc-ref-body .mcr11-empty-category h2 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: clamp(28px, 4vw, 46px) !important;
  line-height: 1 !important;
  font-weight: 1000 !important;
  text-transform: uppercase !important;
}
body.mc-ref-body .mcr11-empty-category p {
  max-width: 620px !important;
  margin: 0 auto 22px !important;
  color: #ded4dc !important;
  font-size: 16px !important;
  line-height: 1.45 !important;
}
body.mc-ref-body .mcr11-empty-actions {
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}
body.mc-ref-body .mcr11-empty-actions a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 40px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: #ec3f94 !important;
  color: #050407 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 1000 !important;
}
body.mc-ref-body .mc-floating-socials {
  font-size: 0 !important;
  line-height: 0 !important;
}
body.mc-ref-body .mc-floating-socials::before,
body.mc-ref-body .mc-floating-socials::after {
  content: none !important;
  display: none !important;
}
body.mc-ref-body .mc-floating-socials a {
  font-size: initial !important;
}
@media (max-width: 980px) {
  body.mc-ref-body .mcr11-segment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 620px) {
  body.mc-ref-body .mcr11-segment-head {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
  body.mc-ref-body .mcr11-segment-grid {
    grid-template-columns: 1fr !important;
  }
  body.mc-ref-body .mcr11-segment-img {
    height: 190px !important;
  }
}


/* ==========================================================================
   MARIA CLARA V12 — CORREÇÃO DEFINITIVA DE IMAGENS DAS SEÇÕES
   ========================================================================== */
body.mc-ref-body .has-image {
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}
body.mc-ref-body .mc-ref-column-main.has-image,
body.mc-ref-body .mc-ref-story-img.has-image,
body.mc-ref-body .mc-ref-small-img.has-image,
body.mc-ref-body .mc-ref-trend-card.has-image,
body.mc-ref-body .mc-ref-video-img.has-image,
body.mc-ref-body .mcr11-segment-img.has-image,
body.mc-ref-body .mcr6-archive-img.has-image,
body.mc-ref-body .mc-ref-footer-thumb.has-image,
body.mc-ref-body .mcr6-recent-thumb.has-image,
body.mc-ref-body .mc-ref-instagram-card.has-image {
  background-color: transparent !important;
  background-size: cover !important;
  background-position: center center !important;
}
body.mc-ref-body .mc-ref-instagram-card.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.52), transparent 58%);
  pointer-events: none;
}
body.mc-ref-body .mc-ref-instagram-card.has-image span {
  z-index: 3 !important;
}


/* ==========================================================================
   MARIA CLARA V13 — FSE FALLBACK, LOGO/MENU, CATEGORIAS VAZIAS E INSTAGRAM REAL
   ========================================================================== */

/* Evita faixa branca dos templates de bloco antigos */
body,
.wp-site-blocks,
.has-white-background-color,
.has-white-background-color.has-background,
.wp-block-group.has-white-background-color.has-background {
  background: #030204 !important;
  color: #fff !important;
}

/* Se algum header antigo do FSE ainda for renderizado, neutraliza logo antiga e textos crus */
.mc-site-header .wp-block-site-logo,
.mc-site-header .mc-brand-box,
.mc-site-header .wp-block-site-title,
.mc-site-header .wp-block-site-tagline {
  display: none !important;
}

/* Mensagens de coluna vazia */
body.mc-ref-body .mcr13-column-empty,
body.mc-ref-body .mcr13-wide-empty,
body.mc-ref-body .mcr13-trending-empty,
.mcr13-column-empty,
.mcr13-wide-empty,
.mcr13-trending-empty {
  min-height: 160px !important;
  display: grid !important;
  place-items: center !important;
  align-content: center !important;
  gap: 8px !important;
  padding: 22px !important;
  text-align: center !important;
  border: 1px solid rgba(236,63,148,.25) !important;
  border-radius: 8px !important;
  background: radial-gradient(circle at 50% 0%, rgba(236,63,148,.16), transparent 44%), #080407 !important;
  color: #fff !important;
}
body.mc-ref-body .mcr13-column-empty strong,
body.mc-ref-body .mcr13-wide-empty strong,
body.mc-ref-body .mcr13-trending-empty strong,
.mcr13-column-empty strong,
.mcr13-wide-empty strong,
.mcr13-trending-empty strong {
  color: #ec3f94 !important;
  text-transform: uppercase !important;
  font-size: 14px !important;
  font-weight: 1000 !important;
}
body.mc-ref-body .mcr13-column-empty p,
body.mc-ref-body .mcr13-wide-empty p,
body.mc-ref-body .mcr13-trending-empty p,
.mcr13-column-empty p,
.mcr13-wide-empty p,
.mcr13-trending-empty p {
  margin: 0 !important;
  color: #ded4dc !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}
body.mc-ref-body .mc-ref-story-grid .mcr13-wide-empty,
.mc-ref-story-grid .mcr13-wide-empty {
  grid-column: 1 / -1 !important;
}
body.mc-ref-body .mc-ref-video-grid .mcr13-wide-empty,
.mc-ref-video-grid .mcr13-wide-empty {
  grid-column: 1 / -1 !important;
  min-height: 220px !important;
}

/* Instagram: não mostra cards falsos como se fossem posts reais */
body.mc-ref-body .mcr13-instagram-config,
.mcr13-instagram-config {
  padding: 30px !important;
  border: 1px solid rgba(236,63,148,.26) !important;
  border-radius: 12px !important;
  background: radial-gradient(circle at 25% 0%, rgba(236,63,148,.16), transparent 38%), #070508 !important;
  color: #fff !important;
}
body.mc-ref-body .mcr13-instagram-config h3,
.mcr13-instagram-config h3 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 1000 !important;
  text-transform: uppercase !important;
}
body.mc-ref-body .mcr13-instagram-config p,
.mcr13-instagram-config p {
  max-width: 780px !important;
  margin: 0 0 16px !important;
  color: #ded4dc !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}
body.mc-ref-body .mcr13-instagram-config a,
.mcr13-instagram-config a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 38px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  background: #ec3f94 !important;
  color: #050407 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 1000 !important;
}

/* reforço para header PHP quando chamado por shortcode */
.mc-ref-header,
.mc-ref-menu-wrap,
.mc-ref-main,
.mc-ref-footer-rich {
  width: 100% !important;
}


/* ==========================================================================
   MARIA CLARA V14 — IMAGEM DA NOTÍCIA INDIVIDUAL
   ========================================================================== */
body.mc-ref-body .mcr6-single-hero.has-image,
body.single-post .mcr6-single-hero.has-image,
body.single-post .wp-block-cover.has-image {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}
body.single-post .wp-block-cover {
  background-size: cover !important;
  background-position: center center !important;
}


/* ==========================================================================
   MARIA CLARA V15 — CATEGORIAS SEM ERRO E INSTAGRAM AUTOMÁTICO
   ========================================================================== */
body.mc-ref-body .mcr11-empty-category,
body .mcr11-empty-category {
  padding: 48px 28px !important;
  text-align: center !important;
  border: 1px solid rgba(236,63,148,.28) !important;
  border-radius: 12px !important;
  background: radial-gradient(circle at 50% 0%, rgba(236,63,148,.12), transparent 42%), #070508 !important;
  color: #fff !important;
}
body.mc-ref-body .mcr11-empty-logo img,
body .mcr11-empty-logo img {
  width: min(420px, 82vw) !important;
  height: auto !important;
  margin: 0 auto 22px !important;
  display: block !important;
}
body.mc-ref-body .mcr11-empty-category h2,
body .mcr11-empty-category h2 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: clamp(28px, 4vw, 46px) !important;
  line-height: 1 !important;
  font-weight: 1000 !important;
  text-transform: uppercase !important;
}
body.mc-ref-body .mcr11-empty-category p,
body .mcr11-empty-category p {
  max-width: 620px !important;
  margin: 0 auto 22px !important;
  color: #ded4dc !important;
  font-size: 16px !important;
  line-height: 1.45 !important;
}
body.mc-ref-body .mcr11-empty-actions,
body .mcr11-empty-actions {
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}
body.mc-ref-body .mcr11-empty-actions a,
body .mcr11-empty-actions a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 40px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: #ec3f94 !important;
  color: #050407 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 1000 !important;
}
body.mc-ref-body .mcr13-instagram-config h3,
body .mcr13-instagram-config h3 {
  color: #fff !important;
}
body.mc-ref-body .mc-ref-instagram-card.has-image,
body .mc-ref-instagram-card.has-image {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}


/* ==========================================================================
   MARIA CLARA V16 — CATEGORIAS EM GRADE E HEADER CONSISTENTE
   ========================================================================== */

/* Corrige o olhinho gigante quando algum template não recebe mc-ref-body */
.mc-ref-random-btn {
  display: grid !important;
  place-items: center !important;
  width: 48px !important;
  height: 58px !important;
  color: #ec3f94 !important;
  text-decoration: none !important;
  flex: 0 0 48px !important;
  overflow: hidden !important;
}
.mc-ref-random-btn svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  display: block !important;
  fill: currentColor !important;
}
.mc-ref-search svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
}

/* Página de categorias */
body.mc-ref-body .mcr16-main {
  background: radial-gradient(circle at 50% 0%, rgba(236,63,148,.09), transparent 34%), #030204 !important;
}
body.mc-ref-body .mcr16-archive-hero {
  padding: 42px 0 24px !important;
}
body.mc-ref-body .mcr16-archive-hero span {
  display: inline-flex !important;
  margin-bottom: 10px !important;
  color: #ec3f94 !important;
  text-transform: uppercase !important;
  letter-spacing: .22em !important;
  font-size: 12px !important;
  font-weight: 1000 !important;
}
body.mc-ref-body .mcr16-archive-hero h1 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: clamp(38px, 6vw, 76px) !important;
  line-height: .92 !important;
  font-weight: 1000 !important;
  letter-spacing: -.05em !important;
  text-transform: uppercase !important;
}
body.mc-ref-body .mcr16-archive-hero p,
body.mc-ref-body .mcr16-archive-description {
  max-width: 760px !important;
  color: #ded4dc !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
}
body.mc-ref-body .mcr16-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 340px !important;
  gap: 42px !important;
  align-items: start !important;
  padding-bottom: 54px !important;
}
body.mc-ref-body .mcr16-category-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
}
body.mc-ref-body .mcr16-category-card {
  overflow: hidden !important;
  background: #070508 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 10px !important;
}
body.mc-ref-body .mcr16-category-img {
  display: block !important;
  height: 220px !important;
  background: radial-gradient(circle at 50% 0%, rgba(236,63,148,.2), transparent 42%), #160b14 center/cover no-repeat !important;
  text-decoration: none !important;
}
body.mc-ref-body .mcr16-category-img.has-image {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
body.mc-ref-body .mcr16-category-content {
  padding: 16px !important;
}
body.mc-ref-body .mcr16-category-content h2 {
  margin: 12px 0 9px !important;
  color: #fff !important;
  font-size: 23px !important;
  line-height: 1.08 !important;
  font-weight: 1000 !important;
}
body.mc-ref-body .mcr16-category-content h2 a {
  color: #fff !important;
  text-decoration: none !important;
}
body.mc-ref-body .mcr16-category-content h2 a:hover {
  color: #ec3f94 !important;
}
body.mc-ref-body .mcr16-excerpt {
  color: #e3d9e1 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}
body.mc-ref-body .mcr16-more-sections {
  margin-top: 34px !important;
}
body.mc-ref-body .mcr16-more-sections .mcr6-page-title {
  display: none !important;
}

@media (max-width: 1180px) {
  body.mc-ref-body .mcr16-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 980px) {
  body.mc-ref-body .mcr16-layout {
    grid-template-columns: 1fr !important;
  }
  body.mc-ref-body .mcr16-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 640px) {
  body.mc-ref-body .mcr16-category-grid {
    grid-template-columns: 1fr !important;
  }
  body.mc-ref-body .mcr16-category-img {
    height: 210px !important;
  }
}


/* ==========================================================================
   MARIA CLARA V20 — CORREÇÃO DO MENU, RODAPÉ E LAYOUT DAS CATEGORIAS
   ========================================================================== */

/* As correções abaixo são globais porque algumas páginas internas do WordPress/FSE
   não entregam a classe body.mc-ref-body de forma consistente. */

/* Header / menu */
.mc-ref-header,
.mcr6-header {
  background: #030204 !important;
  color: #fff !important;
  width: 100% !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
}
.mc-ref-container {
  width: min(1360px, calc(100% - 56px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.mc-ref-brand-line {
  display: grid !important;
  grid-template-columns: 420px minmax(260px,1fr) 260px !important;
  gap: 42px !important;
  align-items: center !important;
  padding: 28px 0 !important;
}
.mc-ref-logo {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}
.mc-ref-logo img {
  width: min(390px, 100%) !important;
  height: auto !important;
  display: block !important;
}
.mc-ref-slogan {
  padding-left: 32px !important;
  border-left: 1px solid rgba(255,255,255,.2) !important;
}
.mc-ref-slogan p {
  margin: 0 !important;
  color: #fff !important;
  font-size: 21px !important;
  line-height: 1.12 !important;
}
.mc-ref-slogan strong {
  color: #ec3f94 !important;
}
.mc-ref-socials {
  display: grid !important;
  gap: 9px !important;
  justify-content: end !important;
  text-align: center !important;
}
.mc-ref-socials span {
  color: #fff !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: .06em !important;
}
.mc-ref-socials > div {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}
.mc-ref-socials a {
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  color: #fff !important;
  text-decoration: none !important;
}
.mc-ref-socials svg {
  width: 19px !important;
  height: 19px !important;
  max-width: 19px !important;
  max-height: 19px !important;
  fill: currentColor !important;
}
.mc-social-instagram {
  background: radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%) !important;
}
.mc-social-whatsapp {
  background: #25d366 !important;
}
.mc-social-youtube {
  background: #ff0033 !important;
}
.mc-ref-menu-wrap {
  background: #020203 !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}
.mc-ref-menu-row {
  display: grid !important;
  grid-template-columns: 58px minmax(0,1fr) 48px 74px !important;
  align-items: center !important;
}
.mc-ref-home-btn {
  display: grid !important;
  place-items: center !important;
  width: 58px !important;
  height: 58px !important;
  background: #ec3f94 !important;
  color: #fff !important;
  text-decoration: none !important;
}
.mc-ref-home-btn svg {
  width: 25px !important;
  height: 25px !important;
  fill: currentColor !important;
}
.mc-ref-menu {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.mc-ref-menu li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.mc-ref-menu a {
  display: flex !important;
  align-items: center !important;
  height: 58px !important;
  padding: 0 20px !important;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}
.mc-ref-menu a:hover {
  color: #ec3f94 !important;
}
.mc-ref-random-btn {
  display: grid !important;
  place-items: center !important;
  width: 48px !important;
  height: 58px !important;
  color: #ec3f94 !important;
  overflow: hidden !important;
}
.mc-ref-random-btn svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  fill: currentColor !important;
}
.mc-ref-search {
  display: flex !important;
  align-items: center !important;
  justify-content: end !important;
  margin: 0 !important;
}
.mc-ref-search input {
  display: none !important;
}
.mc-ref-search button {
  appearance: none !important;
  border: 0 !important;
  background: transparent !important;
  color: #ec3f94 !important;
  cursor: pointer !important;
}
.mc-ref-search svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  fill: currentColor !important;
}

/* Categoria / arquivo com grade e sidebar */
.mcr16-layout,
body.mc-ref-body .mcr16-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 340px !important;
  gap: 42px !important;
  align-items: start !important;
  padding-bottom: 54px !important;
}
.mcr16-post-area {
  min-width: 0 !important;
}
.mcr16-category-grid,
body.mc-ref-body .mcr16-category-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
}
.mcr16-category-card {
  overflow: hidden !important;
  background: #070508 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 10px !important;
}
.mcr16-category-img {
  display: block !important;
  height: 220px !important;
  background: radial-gradient(circle at 50% 0%, rgba(236,63,148,.20), transparent 42%), #160b14 center/cover no-repeat !important;
  text-decoration: none !important;
}
.mcr16-category-img.has-image {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.mcr16-category-content {
  padding: 16px !important;
}
.mcr16-category-content h2 {
  margin: 12px 0 9px !important;
  color: #fff !important;
  font-size: 23px !important;
  line-height: 1.08 !important;
  font-weight: 1000 !important;
}
.mcr16-category-content h2 a {
  color: #fff !important;
  text-decoration: none !important;
}
.mcr16-category-content h2 a:hover {
  color: #ec3f94 !important;
}
.mcr16-excerpt {
  color: #e3d9e1 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

/* Sidebar: não deixar virar lista gigante full width */
.mcr6-sidebar {
  position: sticky !important;
  top: 24px !important;
  display: grid !important;
  gap: 22px !important;
  min-width: 0 !important;
}
.mcr6-sidebar .mc-ref-side-block {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
.mcr6-sidebar .mc-ref-side-title {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 12px !important;
}
.mcr6-sidebar .mc-ref-side-title strong {
  color: #ec3f94 !important;
  font-size: 24px !important;
}
.mcr6-sidebar .mc-ref-side-title span {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #fff !important;
  text-transform: uppercase !important;
  font-size: 18px !important;
  font-weight: 1000 !important;
}
.mcr6-sidebar .mc-ref-side-title span::after {
  content: "" !important;
  height: 1px !important;
  flex: 1 !important;
  background: #ec3f94 !important;
}
.mc-ref-event {
  display: grid !important;
  grid-template-columns: 58px 1fr auto !important;
  gap: 12px !important;
  align-items: center !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.12) !important;
}
.mc-ref-date {
  display: grid !important;
  place-items: center !important;
  min-height: 50px !important;
  border: 1px solid #ec3f94 !important;
  color: #fff !important;
}
.mc-ref-date b {
  color: #ec3f94 !important;
  font-size: 24px !important;
  line-height: 1 !important;
}
.mc-ref-date small {
  color: #fff !important;
  font-size: 11px !important;
}
.mc-ref-event-info b,
.mc-ref-event-info small {
  display: block !important;
}
.mc-ref-event-info b {
  color: #fff !important;
  font-size: 14px !important;
}
.mc-ref-event-info small {
  color: #cfc6ce !important;
  font-size: 12px !important;
}
.mc-ref-event > a,
.mc-ref-column-row a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 28px !important;
  padding: 0 10px !important;
  border-radius: 2px !important;
  background: #ec3f94 !important;
  color: #050407 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 10px !important;
  font-weight: 1000 !important;
}
.mc-ref-column-row {
  display: grid !important;
  grid-template-columns: 74px 1fr !important;
  gap: 14px !important;
  align-items: center !important;
}
.mc-ref-avatar {
  display: grid !important;
  place-items: center !important;
  width: 74px !important;
  height: 74px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #ffca52, #ec3f94 62%, #8338ec) !important;
  color: #050407 !important;
  font-weight: 1000 !important;
}
.mc-ref-column-row p {
  margin: 0 0 8px !important;
  color: #fff !important;
  font-size: 14px !important;
}
.mcr6-recent-item {
  display: grid !important;
  grid-template-columns: 82px 1fr !important;
  gap: 12px !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.11) !important;
}
.mcr6-recent-thumb {
  display: block !important;
  height: 62px !important;
  border-radius: 5px !important;
  background: #21101d center/cover no-repeat !important;
}
.mcr6-recent-item h4 {
  margin: 0 0 5px !important;
  font-size: 13px !important;
  line-height: 1.16 !important;
}
.mcr6-recent-item h4 a {
  color: #fff !important;
  text-decoration: none !important;
}
.mcr6-recent-item time {
  color: #bbb2b9 !important;
  font-size: 11px !important;
}

/* Rodapé corrigido: grid real e categorias sem duplicar slug */
.mc-ref-footer-rich,
body.mc-ref-body .mc-ref-footer-rich {
  background: #030204 !important;
  border-top: 1px solid rgba(236,63,148,.18) !important;
  padding: 0 !important;
  text-align: left !important;
}
.mc-ref-footer-grid,
body.mc-ref-body .mc-ref-footer-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 1.15fr 1fr .8fr !important;
  gap: 44px !important;
  align-items: start !important;
  padding: 54px 0 !important;
}
.mc-ref-footer h3,
body.mc-ref-body .mc-ref-footer h3 {
  margin: 0 0 18px !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 1000 !important;
}
.mc-ref-footer-brand img {
  width: 280px !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}
.mc-ref-footer-about p {
  max-width: 360px !important;
  color: #ddd4dc !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}
.mc-ref-footer-socials {
  display: flex !important;
  gap: 10px !important;
  margin-top: 18px !important;
}
.mc-ref-footer-socials a {
  width: 38px !important;
  height: 38px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  color: #fff !important;
  text-decoration: none !important;
}
.mc-ref-footer-socials svg {
  width: 21px !important;
  height: 21px !important;
  max-width: 21px !important;
  max-height: 21px !important;
  fill: currentColor !important;
}
.mc-ref-footer-recent article {
  display: grid !important;
  grid-template-columns: 78px 1fr !important;
  gap: 14px !important;
  margin-bottom: 15px !important;
  padding-bottom: 15px !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}
.mc-ref-footer-thumb {
  display: block !important;
  height: 68px !important;
  border-radius: 5px !important;
  background: #171017 center/cover no-repeat !important;
}
.mc-ref-footer-recent h4 {
  margin: 0 0 7px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}
.mc-ref-footer-recent h4 a {
  color: #fff !important;
  text-decoration: none !important;
}
.mc-ref-footer-recent time {
  color: #bdb4bc !important;
  font-size: 11px !important;
}
.mc-ref-footer-cat-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px 18px !important;
}
.mc-ref-footer-cat-grid a {
  display: flex !important;
  align-items: center !important;
  min-height: 28px !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
}
.mc-ref-footer-cat-grid a:hover {
  color: #ec3f94 !important;
}
.mc-ref-footer-cat-grid small {
  display: none !important;
}
.mc-ref-footer-tags div {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}
.mc-ref-footer-tags a {
  display: inline-flex !important;
  padding: 7px 10px !important;
  background: rgba(255,255,255,.10) !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}
.mc-ref-footer-bottom {
  background: #020203 !important;
  border-top: 1px solid rgba(236,63,148,.16) !important;
  padding: 16px 0 !important;
}
.mc-ref-footer-bottom .mc-ref-container {
  display: flex !important;
  justify-content: space-between !important;
  gap: 20px !important;
  align-items: center !important;
}
.mc-ref-footer-bottom p {
  margin: 0 !important;
  color: #d7ced5 !important;
  font-size: 13px !important;
}
.mc-ref-footer-bottom nav {
  display: flex !important;
  gap: 18px !important;
}
.mc-ref-footer-bottom a {
  color: #fff !important;
  text-decoration: none !important;
}
.mc-ref-footer-bottom a:hover {
  color: #ec3f94 !important;
}

/* Mobile/tablet */
@media (max-width: 1120px) {
  .mc-ref-brand-line {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 18px !important;
  }
  .mc-ref-logo {
    justify-content: center !important;
  }
  .mc-ref-slogan {
    border-left: 0 !important;
    padding-left: 0 !important;
  }
  .mc-ref-socials {
    justify-content: center !important;
  }
  .mc-ref-menu-row {
    grid-template-columns: 58px 1fr 48px 60px !important;
  }
  .mc-ref-menu {
    overflow-x: auto !important;
    white-space: nowrap !important;
  }
  .mc-ref-menu a {
    padding: 0 14px !important;
    font-size: 12px !important;
  }
  .mcr16-layout {
    grid-template-columns: 1fr !important;
  }
  .mcr6-sidebar {
    position: static !important;
  }
  .mc-ref-footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 720px) {
  .mc-ref-container {
    width: min(100% - 28px, 1360px) !important;
  }
  .mc-ref-menu-row {
    grid-template-columns: 48px 1fr 44px 48px !important;
  }
  .mc-ref-home-btn {
    width: 48px !important;
    height: 52px !important;
  }
  .mc-ref-menu a {
    height: 52px !important;
    padding: 0 10px !important;
    font-size: 11px !important;
  }
  .mcr16-category-grid {
    grid-template-columns: 1fr !important;
  }
  .mc-ref-footer-grid {
    grid-template-columns: 1fr !important;
  }
  .mc-ref-footer-bottom .mc-ref-container {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}


/* ==========================================================================
   MARIA CLARA V24 — INSTAGRAM CACHE LOCAL SEM ALTERAR O LAYOUT V20
   ========================================================================== */
.mc-ref-instagram-feed-maria {
  background: #030204 !important;
  border-top: 1px solid rgba(236,63,148,.18) !important;
}
.mc-ref-instagram-grid-cache {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}
.mc-ref-instagram-grid-cache .mc-ref-instagram-card {
  min-height: 176px !important;
  background-color: #160b14 !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.mc-ref-instagram-grid-cache .mc-ref-instagram-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(0deg, rgba(0,0,0,.52), rgba(0,0,0,.05) 62%) !important;
  pointer-events: none !important;
}
.mc-ref-instagram-grid-cache .mc-ref-instagram-card span {
  z-index: 3 !important;
}
.mc-ref-instagram-plugin-shell {
  overflow: hidden !important;
  padding: 0 !important;
  background: transparent !important;
}
.mc-ref-instagram-plugin-shell #sb_instagram,
.mc-ref-instagram-plugin-shell .sbi {
  background: transparent !important;
}
.mc-ref-instagram-plugin-shell #sb_instagram .sbi_photo,
.mc-ref-instagram-plugin-shell .sbi_photo {
  border-radius: 8px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.12) !important;
}
.mc-ref-instagram-plugin-shell #sb_instagram .sbi_follow_btn,
.mc-ref-instagram-plugin-shell #sb_instagram .sbi_load_btn {
  display: none !important;
}
@media (max-width: 1180px) {
  .mc-ref-instagram-grid-cache {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 680px) {
  .mc-ref-instagram-grid-cache {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .mc-ref-instagram-grid-cache .mc-ref-instagram-card {
    min-height: 145px !important;
  }
}


/* ==========================================================================
   MARIA CLARA V25 — MINIATURAS REAIS DO INSTAGRAM BAIXADAS NO UPLOADS
   ========================================================================== */
.mc-ref-instagram-feed-maria {
  background: #030204 !important;
  border-top: 1px solid rgba(236,63,148,.18) !important;
}
.mc-ref-instagram-grid-cache {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}
.mc-ref-instagram-grid-cache .mc-ref-instagram-card {
  min-height: 176px !important;
  background-color: #160b14 !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.mc-ref-instagram-grid-cache .mc-ref-instagram-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(0deg, rgba(0,0,0,.52), rgba(0,0,0,.05) 62%) !important;
  pointer-events: none !important;
}
.mc-ref-instagram-grid-cache .mc-ref-instagram-card span {
  z-index: 3 !important;
}
.mc-ref-instagram-plugin-shell {
  overflow: hidden !important;
  padding: 0 !important;
  background: transparent !important;
}
@media (max-width: 1180px) {
  .mc-ref-instagram-grid-cache {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 680px) {
  .mc-ref-instagram-grid-cache {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .mc-ref-instagram-grid-cache .mc-ref-instagram-card {
    min-height: 145px !important;
  }
}

/* ==========================================================================
   PORTAL FEST TV V26 — layout referência enviado pelo usuário
   ========================================================================== */
:root{
  --pf-black:#050506;
  --pf-card:#0b0b0f;
  --pf-line:rgba(255,255,255,.14);
  --pf-purple:#9a00ff;
  --pf-pink:#ff0f9d;
  --pf-orange:#ff6b00;
  --pf-yellow:#ffb000;
  --pf-white:#ffffff;
  --pf-muted:#bfc0c9;
}
html body.portal-fest-body,
body.portal-fest-body,
body.mc-ref-body{
  background:#050506 !important;
  color:#fff !important;
}
.pf-container{
  width:min(1180px, calc(100% - 52px)) !important;
  margin:0 auto !important;
  box-sizing:border-box !important;
}
.pf-header{
  background:#050506 !important;
  border-bottom:1px solid rgba(255,255,255,.12) !important;
}
.pf-topbar{
  padding:22px 0 18px !important;
  background:#050506 !important;
}
.pf-header-grid{
  display:grid !important;
  grid-template-columns:210px 1fr auto 210px !important;
  align-items:center !important;
  gap:28px !important;
}
.pf-logo img{
  width:190px !important;
  height:auto !important;
  display:block !important;
}
.pf-tagline{
  color:#fff !important;
  text-transform:uppercase !important;
  font-size:16px !important;
  line-height:1.18 !important;
  font-weight:800 !important;
  padding-left:26px !important;
  border-left:1px solid rgba(255,255,255,.22) !important;
  letter-spacing:.02em !important;
}
.pf-tagline strong{
  color:#ff9d00 !important;
  font-weight:1000 !important;
}
.pf-socials{
  display:flex !important;
  align-items:center !important;
  gap:13px !important;
  color:#fff !important;
}
.pf-socials span{
  font-size:11px !important;
  line-height:1.2 !important;
  text-transform:uppercase !important;
  color:#fff !important;
  text-align:right !important;
  margin-right:6px !important;
}
.pf-socials strong{
  text-transform:none !important;
  font-size:14px !important;
  color:#fff !important;
}
.pf-social,
.pf-footer-social a{
  width:32px !important;
  height:32px !important;
  display:grid !important;
  place-items:center !important;
  border:1px solid rgba(255,255,255,.28) !important;
  border-radius:999px !important;
  color:#fff !important;
  text-decoration:none !important;
}
.pf-social svg,
.pf-footer-social svg{
  width:16px !important;
  height:16px !important;
  fill:currentColor !important;
}
.pf-search{
  display:flex !important;
  align-items:center !important;
  height:40px !important;
  border:1px solid rgba(255,255,255,.25) !important;
  border-radius:6px !important;
  padding:0 10px !important;
  background:#09090b !important;
}
.pf-search input{
  border:0 !important;
  background:transparent !important;
  color:#fff !important;
  outline:0 !important;
  width:145px !important;
  font-size:13px !important;
}
.pf-search input::placeholder{color:#c7c7cc !important;}
.pf-search button{
  border:0 !important;
  background:transparent !important;
  color:#fff !important;
  display:grid !important;
  place-items:center !important;
  cursor:pointer !important;
}
.pf-search svg{width:21px !important;height:21px !important;fill:currentColor !important;}
.pf-nav{
  border-top:2px solid #a000ff !important;
  border-bottom:2px solid #ff5a00 !important;
  background:#070707 !important;
}
.pf-menu{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:0 !important;
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
  overflow-x:auto !important;
  white-space:nowrap !important;
}
.pf-menu li{list-style:none !important;margin:0 !important;padding:0 !important;}
.pf-menu a{
  display:flex !important;
  align-items:center !important;
  min-height:43px !important;
  padding:0 29px !important;
  color:#fff !important;
  text-decoration:none !important;
  text-transform:uppercase !important;
  font-size:13px !important;
  font-weight:900 !important;
  letter-spacing:.03em !important;
}
.pf-menu a:hover{color:#ff7a00 !important;}
.pf-main{
  background:#050506 !important;
  padding:22px 0 0 !important;
}
.pf-hero-layout{
  display:grid !important;
  grid-template-columns:minmax(0,2fr) minmax(280px,1fr) !important;
  gap:18px !important;
  margin-bottom:30px !important;
}
.pf-main-hero,
.pf-side-hero{
  position:relative !important;
  overflow:hidden !important;
  border-radius:7px !important;
  background:radial-gradient(circle at 50% 20%, rgba(255,15,157,.2), transparent 40%), #101012 center/cover no-repeat !important;
  border:1px solid rgba(255,255,255,.08) !important;
}
.pf-main-hero{
  min-height:360px !important;
}
.pf-main-hero::before,
.pf-side-hero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  background:linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.28) 55%, rgba(0,0,0,.1)) !important;
}
.pf-hero-overlay{
  position:absolute !important;
  left:24px !important;
  bottom:26px !important;
  width:min(620px, calc(100% - 48px)) !important;
  z-index:2 !important;
}
.pf-badge{
  display:inline-flex !important;
  align-items:center !important;
  width:max-content !important;
  padding:7px 10px !important;
  border-radius:3px !important;
  background:linear-gradient(135deg, #a000ff, #ff3a9a) !important;
  color:#fff !important;
  text-transform:uppercase !important;
  text-decoration:none !important;
  font-size:10px !important;
  line-height:1 !important;
  font-weight:1000 !important;
}
.pf-main-hero h1{
  margin:18px 0 10px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  font-size:31px !important;
  line-height:1.08 !important;
  font-weight:1000 !important;
  max-width:560px !important;
}
.pf-main-hero p{
  margin:0 0 16px !important;
  color:#fff !important;
  max-width:520px !important;
  font-size:14px !important;
  line-height:1.35 !important;
}
.pf-orange-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:30px !important;
  padding:0 16px !important;
  background:linear-gradient(135deg, #ff5400, #ff8d00) !important;
  color:#fff !important;
  border-radius:3px !important;
  text-decoration:none !important;
  text-transform:uppercase !important;
  font-size:11px !important;
  font-weight:1000 !important;
}
.pf-dots{
  position:absolute !important;
  left:50% !important;
  bottom:18px !important;
  transform:translateX(-50%) !important;
  z-index:3 !important;
  display:flex !important;
  gap:10px !important;
}
.pf-dots span{
  width:10px !important;height:10px !important;border-radius:999px !important;background:#bfc0c9 !important;display:block !important;
}
.pf-dots .active{background:#ff0f9d !important;}
.pf-hero-side{
  display:grid !important;
  gap:18px !important;
}
.pf-side-hero{
  min-height:171px !important;
  padding:26px 18px 18px !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:flex-start !important;
}
.pf-side-hero>*{position:relative !important;z-index:2 !important;}
.pf-side-hero h2{
  color:#fff !important;
  font-size:22px !important;
  line-height:1.05 !important;
  text-transform:uppercase !important;
  font-weight:1000 !important;
  max-width:220px !important;
  margin:22px 0 18px !important;
}
.pf-page-grid{
  display:grid !important;
  grid-template-columns:minmax(0, 2fr) 320px !important;
  gap:24px !important;
}
.pf-content-main{min-width:0 !important;}
.pf-section{
  padding-bottom:28px !important;
  margin-bottom:28px !important;
  border-bottom:1px solid rgba(255,255,255,.12) !important;
}
.pf-section-title{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:20px !important;
  margin-bottom:16px !important;
}
.pf-section-title h2,
.pf-section-head h2{
  margin:0 !important;
  color:#fff !important;
  text-transform:uppercase !important;
  font-size:24px !important;
  line-height:1 !important;
  font-weight:1000 !important;
  position:relative !important;
  padding-bottom:10px !important;
}
.pf-section-title h2::after,
.pf-section-head h2::after{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  bottom:0 !important;
  width:42px !important;
  height:3px !important;
  background:linear-gradient(90deg, #ff6b00, #ff0f9d) !important;
}
.pf-section-title a{
  border:1px solid #a000ff !important;
  color:#c72fff !important;
  text-decoration:none !important;
  padding:9px 15px !important;
  border-radius:4px !important;
  text-transform:uppercase !important;
  font-size:11px !important;
  font-weight:900 !important;
}
.pf-news-grid{
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0,1fr)) !important;
  gap:15px !important;
}
.pf-news-card,
.pf-video-card{
  background:#0a0a0d !important;
  border-radius:6px !important;
  overflow:hidden !important;
  border:1px solid rgba(255,255,255,.08) !important;
}
.pf-card-image{
  display:block !important;
  position:relative !important;
  min-height:174px !important;
  background:radial-gradient(circle at 50% 20%, rgba(255,15,157,.20), transparent 40%), #121214 center/cover no-repeat !important;
  text-decoration:none !important;
}
.pf-card-content{
  padding:12px 11px 13px !important;
}
.pf-card-content h3{
  margin:10px 0 12px !important;
  color:#fff !important;
  font-size:17px !important;
  line-height:1.16 !important;
  text-transform:uppercase !important;
  font-weight:1000 !important;
}
.pf-card-content h3 a{
  color:#fff !important;
  text-decoration:none !important;
}
.pf-card-content h3 a:hover{color:#ff6b00 !important;}
.pf-card-content time{
  display:flex !important;
  align-items:center !important;
  gap:8px !important;
  color:#fff !important;
  opacity:.88 !important;
  font-size:12px !important;
}
.pf-card-content time svg{width:14px !important;height:14px !important;fill:currentColor !important;}
.pf-video-grid{
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0,1fr)) !important;
  gap:15px !important;
}
.pf-video-card .pf-card-image{min-height:118px !important;}
.pf-video-card .pf-card-content h3{font-size:13px !important;margin-bottom:0 !important;}
.pf-play{
  position:absolute !important;
  inset:0 !important;
  margin:auto !important;
  width:48px !important;
  height:48px !important;
  display:grid !important;
  place-items:center !important;
  border:2px solid #fff !important;
  border-radius:999px !important;
  background:rgba(0,0,0,.35) !important;
  color:#fff !important;
}
.pf-play svg{width:24px !important;height:24px !important;fill:currentColor !important;margin-left:3px !important;}
.pf-gallery-grid{
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0,1fr)) !important;
  gap:14px !important;
}
.pf-gallery-card{
  min-height:112px !important;
  display:flex !important;
  align-items:flex-end !important;
  gap:8px !important;
  padding:14px !important;
  border:1px solid #b500ff !important;
  border-radius:6px !important;
  background:linear-gradient(0deg, rgba(0,0,0,.86), rgba(0,0,0,.18)), #171018 center/cover no-repeat !important;
  color:#fff !important;
  text-decoration:none !important;
  text-transform:uppercase !important;
  font-weight:1000 !important;
}
.pf-gallery-card span{font-size:25px !important;color:#ff8a00 !important;line-height:1 !important;}
.pf-gallery-card strong{font-size:16px !important;}
.pf-artists-row{
  display:grid !important;
  grid-template-columns:34px repeat(6, minmax(0,1fr)) 34px !important;
  gap:14px !important;
  align-items:center !important;
}
.pf-arrow{
  width:34px !important;height:34px !important;display:grid !important;place-items:center !important;border-radius:999px !important;background:#c013d8 !important;color:#050506 !important;text-decoration:none !important;font-size:28px !important;font-weight:900 !important;
}
.pf-artist{
  display:grid !important;
  justify-items:center !important;
  gap:8px !important;
  color:#fff !important;
  text-decoration:none !important;
  text-transform:uppercase !important;
  font-size:11px !important;
  font-weight:900 !important;
}
.pf-artist span{
  width:78px !important;height:78px !important;border-radius:999px !important;background:linear-gradient(135deg, #ff6b00, #9a00ff) center/cover no-repeat !important;border:1px solid #ce2eff !important;display:grid !important;place-items:center !important;color:#fff !important;font-size:26px !important;
}
.pf-sidebar{
  display:grid !important;
  gap:32px !important;
  align-content:start !important;
  border-left:1px solid rgba(255,255,255,.16) !important;
  padding-left:24px !important;
}
.pf-event-row{
  display:grid !important;
  grid-template-columns:54px 1fr !important;
  gap:15px !important;
  padding:13px 0 !important;
  border-bottom:1px solid rgba(255,255,255,.13) !important;
}
.pf-event-date{
  display:grid !important;
  place-items:center !important;
  border-right:1px solid rgba(255,255,255,.16) !important;
  min-height:50px !important;
}
.pf-event-date strong{
  color:#ff6b00 !important;
  font-size:27px !important;
  line-height:1 !important;
  font-weight:1000 !important;
}
.pf-event-date span{
  color:#fff !important;
  font-size:12px !important;
  font-weight:900 !important;
}
.pf-event-info strong{
  display:block !important;
  color:#fff !important;
  text-transform:uppercase !important;
  font-size:14px !important;
  line-height:1.2 !important;
  font-weight:1000 !important;
}
.pf-event-info span{
  display:block !important;
  color:#c8c8d0 !important;
  margin-top:4px !important;
  font-size:13px !important;
}
.pf-agenda-button{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:40px !important;
  margin-top:18px !important;
  border-radius:4px !important;
  background:linear-gradient(135deg, #ff0f9d, #ff6b00) !important;
  color:#fff !important;
  text-decoration:none !important;
  text-transform:uppercase !important;
  font-size:12px !important;
  font-weight:1000 !important;
}
.pf-watch-card img{
  display:block !important;
  width:100% !important;
  border:1px solid #af00ff !important;
  border-radius:6px !important;
}
.pf-footer{
  background:#111112 !important;
  border-top:1px solid rgba(255,255,255,.14) !important;
  margin-top:36px !important;
}
.pf-footer-grid{
  display:grid !important;
  grid-template-columns:1.15fr 1.25fr .8fr .8fr !important;
  gap:34px !important;
  align-items:start !important;
  padding:22px 0 !important;
}
.pf-footer section{
  min-height:86px !important;
  border-right:1px solid rgba(255,255,255,.18) !important;
  padding-right:28px !important;
}
.pf-footer section:last-child{border-right:0 !important;}
.pf-footer-brand img{width:160px !important;height:auto !important;display:block !important;}
.pf-footer-brand p{
  margin:5px 0 0 !important;
  color:#fff !important;
  text-transform:uppercase !important;
  font-size:10px !important;
  line-height:1.25 !important;
  letter-spacing:.06em !important;
}
.pf-footer h3{
  margin:0 0 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  font-size:14px !important;
  font-weight:1000 !important;
}
.pf-footer p{
  margin:0 0 8px !important;
  color:#e4e4ea !important;
  font-size:13px !important;
}
.pf-footer-contact span{color:#2de66e !important;margin-right:8px !important;}
.pf-footer-social div{display:flex !important;gap:10px !important;}
.pf-footer-partners div{
  width:128px !important;
  min-height:62px !important;
  border:1px solid rgba(255,255,255,.28) !important;
  display:grid !important;
  place-items:center !important;
  color:#aaa !important;
  text-align:center !important;
  text-transform:uppercase !important;
  font-size:14px !important;
  line-height:1.2 !important;
}
.pf-footer-bottom{
  border-top:1px solid rgba(255,255,255,.14) !important;
  padding:8px 0 !important;
  background:#0a0a0b !important;
}
.pf-footer-bottom .pf-container{
  display:flex !important;
  justify-content:space-between !important;
  gap:20px !important;
}
.pf-footer-bottom p{margin:0 !important;color:#d5d5db !important;font-size:11px !important;}
.pf-footer-bottom span{color:#ff0f9d !important;}
.pf-empty-category{
  padding:46px 24px !important;text-align:center !important;border:1px solid rgba(255,15,157,.45) !important;border-radius:7px !important;background:radial-gradient(circle at 50% 20%, rgba(154,0,255,.14), transparent 40%), #0a080d !important;color:#fff !important;
}
.pf-empty-category img{width:180px !important;display:block !important;margin:0 auto 18px !important;}
.pf-empty-category h2{text-transform:uppercase !important;font-size:36px !important;line-height:1.05 !important;margin:0 0 10px !important;}
.pf-empty-category p{color:#ddd !important;max-width:600px !important;margin:0 auto 22px !important;}
.pf-empty-category a{display:inline-flex !important;margin:5px !important;padding:10px 18px !important;background:linear-gradient(135deg,#ff0f9d,#ff6b00) !important;color:#fff !important;border-radius:4px !important;text-decoration:none !important;text-transform:uppercase !important;font-size:12px !important;font-weight:1000 !important;}
/* Ajuste de páginas internas do V20 para a nova identidade */
.mcr16-archive-hero h1{color:#fff !important;}
.mcr16-archive-hero span{color:#ff6b00 !important;}
.mcr16-category-content h2 a:hover{color:#ff6b00 !important;}
.mcr16-category-card{border-color:rgba(255,255,255,.12) !important;}
@media (max-width: 980px){
  .pf-header-grid{grid-template-columns:1fr !important;text-align:center !important;justify-items:center !important;}
  .pf-tagline{border-left:0 !important;padding-left:0 !important;}
  .pf-socials{flex-wrap:wrap !important;justify-content:center !important;}
  .pf-hero-layout,.pf-page-grid{grid-template-columns:1fr !important;}
  .pf-sidebar{border-left:0 !important;padding-left:0 !important;}
  .pf-news-grid,.pf-video-grid,.pf-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
  .pf-artists-row{grid-template-columns:34px repeat(3,minmax(0,1fr)) 34px !important;}
  .pf-footer-grid{grid-template-columns:1fr 1fr !important;}
}
@media (max-width: 620px){
  .pf-container{width:min(100% - 28px, 1180px) !important;}
  .pf-menu{justify-content:flex-start !important;}
  .pf-menu a{padding:0 16px !important;}
  .pf-main-hero{min-height:430px !important;}
  .pf-news-grid,.pf-video-grid,.pf-gallery-grid{grid-template-columns:1fr !important;}
  .pf-artists-row{grid-template-columns:34px repeat(2,minmax(0,1fr)) 34px !important;}
  .pf-footer-grid{grid-template-columns:1fr !important;}
  .pf-footer section{border-right:0 !important;border-bottom:1px solid rgba(255,255,255,.13) !important;padding:0 0 18px !important;}
  .pf-footer-bottom .pf-container{flex-direction:column !important;}
}


/* ========================================================================== 
   PORTAL FEST V27 — RODAPÉ, INSTAGRAM E BOTÕES FLUTUANTES
   ========================================================================== */
.pf-footer-brand-logoformat a {
  display: inline-flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  background: #08080b !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  padding: 8px !important;
  max-width: 230px !important;
}
.pf-footer-brand-logoformat img {
  width: 206px !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}
.pf-footer-brand-logoformat p {
  display: none !important;
}
.pf-footer .pf-footer-contact p:first-of-type span {
  color: #25d366 !important;
}
.mc-ref-instagram-feed-maria,
.mc-ref-instagram-feed {
  background: #030305 !important;
  padding: 42px 0 46px !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}
.mc-ref-instagram-head {
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 24px !important;
  padding-bottom: 16px !important;
  margin-bottom: 18px !important;
  border-bottom: 1px solid #c000ff !important;
}
.mc-ref-instagram-head span {
  display: block !important;
  color: #ff7a00 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  margin-bottom: 4px !important;
}
.mc-ref-instagram-head h2 {
  margin: 0 !important;
  color: #fff !important;
  font-family: Oswald, Arial, sans-serif !important;
  font-size: 34px !important;
  line-height: .98 !important;
  text-transform: uppercase !important;
}
.mc-ref-instagram-head p {
  margin: 6px 0 0 !important;
  color: #d7d7df !important;
  font-size: 14px !important;
}
.mc-ref-instagram-head a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  padding: 0 18px !important;
  border-radius: 4px !important;
  background: linear-gradient(90deg,#d000ff,#ff6a00) !important;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}
.mc-ref-instagram-grid,
.mc-ref-instagram-grid-cache {
  display: grid !important;
  grid-template-columns: repeat(6,minmax(0,1fr)) !important;
  gap: 12px !important;
}
.mc-ref-instagram-card {
  position: relative !important;
  min-height: 168px !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  border: 1px solid rgba(202,0,255,.52) !important;
  background: #120516 center/cover no-repeat !important;
  text-decoration: none !important;
}
.mc-ref-instagram-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.08) 60%) !important;
  z-index: 1 !important;
}
.mc-ref-instagram-card span {
  position: absolute !important;
  left: 10px !important;
  bottom: 10px !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 25px !important;
  padding: 0 9px !important;
  border-radius: 3px !important;
  background: linear-gradient(90deg,#d000ff,#ff6a00) !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}
.mc-floating-socials {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 9999 !important;
  display: grid !important;
  gap: 12px !important;
  font-size: 0 !important;
  line-height: 0 !important;
}
.mc-floating-socials a {
  width: 58px !important;
  height: 58px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.38) !important;
  transition: transform .18s ease, filter .18s ease !important;
}
.mc-floating-socials a:hover {
  transform: translateY(-3px) scale(1.03) !important;
  filter: brightness(1.08) !important;
}
.mc-floating-socials .mc-floating-instagram {
  background: radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%) !important;
}
.mc-floating-socials .mc-floating-whatsapp {
  background: #25d366 !important;
}
.mc-floating-socials svg {
  width: 28px !important;
  height: 28px !important;
  display: block !important;
  fill: currentColor !important;
}
@media (max-width: 980px) {
  .mc-ref-instagram-grid,
  .mc-ref-instagram-grid-cache { grid-template-columns: repeat(3,minmax(0,1fr)) !important; }
  .mc-ref-instagram-head { align-items: flex-start !important; flex-direction: column !important; }
}
@media (max-width: 620px) {
  .mc-ref-instagram-grid,
  .mc-ref-instagram-grid-cache { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
  .mc-ref-instagram-card { min-height: 145px !important; }
  .mc-floating-socials { right: 14px !important; bottom: 14px !important; }
  .mc-floating-socials a { width: 52px !important; height: 52px !important; }
  .mc-floating-socials svg { width: 25px !important; height: 25px !important; }
}


/* ==========================================================================
   PORTAL FEST V28 — OLHINHO DE MATÉRIA ALEATÓRIA NO MENU
   ========================================================================== */
.pf-nav .pf-nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}
.pf-nav .pf-menu {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}
.pf-random-eye {
  flex: 0 0 46px !important;
  width: 46px !important;
  min-width: 46px !important;
  height: 43px !important;
  display: grid !important;
  place-items: center !important;
  color: #ff2cc7 !important;
  text-decoration: none !important;
  border-left: 1px solid rgba(255,255,255,.10) !important;
  border-right: 1px solid rgba(255,255,255,.10) !important;
  transition: background .18s ease, color .18s ease, transform .18s ease !important;
}
.pf-random-eye:hover {
  background: linear-gradient(135deg, #a000ff, #ff5a00) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}
.pf-random-eye svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  display: block !important;
  fill: currentColor !important;
}
@media (max-width: 760px) {
  .pf-nav .pf-nav-inner {
    gap: 6px !important;
  }
  .pf-random-eye {
    flex-basis: 42px !important;
    width: 42px !important;
    min-width: 42px !important;
  }
}
