﻿:root {
  --red: #f5333f;
  --orange: #ff9f2f;
  --pink: #ed3d94;
  --purple: #8b4aa1;
  --green: #7dbb3a;
  --teal: #008f87;
  --blue: #36a6d9;
  --gray: #767b91;
  --brown: #b84616;
  --dark: #202124;
}

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

body {
  margin: 0;
  color: var(--dark);
  background: #f7f7f7;
  font-family: 'Noticia Text', serif;
  transition: background 0.25s ease, color 0.25s ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: #fff;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
}

.top-color-bar {
  position: relative;
  height: 22px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--red) 0 12.5%, var(--orange) 12.5% 25%, var(--gray) 25% 37.5%, var(--green) 37.5% 50%, var(--teal) 50% 62.5%, var(--blue) 62.5% 75%, var(--purple) 75% 87.5%, var(--pink) 87.5% 100%);
}

.bar-section.red { background: var(--red); }
.bar-section.orange { background: var(--orange); }
.bar-section.green { background: var(--green); }
.bar-section.blue { background: var(--blue); }

.date-badge {
  position: absolute;
  top: 50%;
  left: 18%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 24px;
  padding: 0 13px;
  border-radius: 0;
  color: #222;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(-50%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
}

.date-badge i {
  color: var(--red);
  font-size: 13px;
}

.social-strip {
  position: absolute;
  top: 0;
  right: 18%;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 22px;
}

.social-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  opacity: 0.95;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.social-strip a:focus,
.social-strip a:active,
.social-strip a:hover {
  text-decoration: none;
}

.social-strip a:hover {
  background: #fff;
  opacity: 1;
  transform: translateY(-1px);
}

.social-strip .social-tiktok:hover { color: #111; }
.social-strip .social-youtube:hover { color: #ff0000; }
.social-strip .social-x:hover { color: #000; }
.social-strip .social-instagram:hover { color: #e4405f; }
.social-strip .social-facebook:hover { color: #1877f2; }
.social-strip .social-whatsapp:hover { color: #25d366; }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: transparent;
  font-size: 14px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover {
  color: #111;
  background: #fff;
  transform: translateY(-1px);
}

.main-header {
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.header-grid {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  min-height: 62px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-left,
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions {
  justify-content: flex-end;
}

.menu-toggle,
.search-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #222;
  background: transparent;
  font-size: 22px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-toggle {
  font-size: 17px;
}

.menu-toggle:hover,
.search-toggle:hover {
  background: #f1f1f1;
  transform: scale(1.04);
}

.weather-widget {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 6px 12px 6px 7px;
  border: 1px solid rgba(54, 166, 217, 0.2);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff 0%, #eef8ff 100%);
  box-shadow: 0 10px 24px rgba(54, 166, 217, 0.12);
}

.weather-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  font-size: 14px;
  animation: weatherFloat 2.8s ease-in-out infinite;
}

.weather-widget strong {
  display: block;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.weather-widget small {
  display: block;
  color: #657081;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
}

.legal-ad-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(245, 51, 63, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.legal-ad-btn:hover {
  color: #fff;
  background: #d91f2d;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245, 51, 63, 0.28);
}

.brand-logo {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand-logo img {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
  padding:10px 0;
}

.small-logo {
  justify-self: start;
}

.small-logo img {
  height: 68px;
}

.logo-red { color: var(--red); }
.logo-orange { color: var(--orange); }
.logo-yellow { color: var(--yellow); }
.logo-green { color: var(--green); }

.search-panel {
  display: none;
  padding: 14px 0 18px;
  border-top: 1px solid #eee;
  background: #fff;
}

.search-form {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
  padding: 8px 10px 8px 16px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  background: #fafafa;
}

.search-form input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
}

.voice-search {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}

.voice-search.listening,
.voice-search-mobile.listening {
  background: var(--green);
  color: #fff;
  animation: pulse 1s infinite;
}

.category-nav {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.category-nav > .container > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: visible;
}

.category-nav > .container > ul > li {
  position: relative;
}

.category-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #121212;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.category-nav a:hover {
  color: var(--red);
}

.category-nav .fa-chevron-down {
  font-size: 10px;
  margin-left: 3px;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .fa-chevron-down {
  transform: rotate(0deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 230px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #eee;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  width: calc(100% + 40px);
  height: 30px;
}

.submenu::before {
  display: none;
}

.submenu li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: auto;
  padding: 12px 22px;
  border-radius: 0;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.submenu li {
  width: 100%;
  margin: 0;
  padding: 0;
}

.submenu li:last-child a {
  border-bottom: 0;
}

.submenu li a:hover {
  color: var(--red);
  background: #f7f7f7;
}

.diamond {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: 0 0 9px;
}

.diamond.red { background: var(--red); }
.diamond.orange { background: var(--orange); }
.diamond.pink { background: var(--pink); }
.diamond.brown { background: var(--brown); }
.diamond.yellow { background: var(--yellow); }
.diamond.green { background: var(--green); }
.diamond.teal { background: var(--teal); }
.diamond.blue { background: var(--blue); }
.diamond.purple { background: var(--purple); }
.diamond.gray { background: var(--gray); }

.modern-menu {
  border: 0;
  border-radius: 0 26px 26px 0;
}

.mobile-search {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 10px;
}

.mobile-links {
  display: grid;
  gap: 8px;
}

.mobile-links a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  color: #222;
  background: #f5f5f5;
  text-decoration: none;
  font-weight: 800;
}

.mobile-links a:hover {
  color: #fff;
  background: var(--red);
}

.mobile-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 14px;
  color: #222;
  background: #f5f5f5;
  font-weight: 800;
  text-align: left;
}

.mobile-submenu-toggle.active {
  color: #fff;
  background: var(--green);
}

.mobile-submenu {
  display: none;
  gap: 8px;
  padding: 4px 0 4px 14px;
}

.mobile-submenu.open {
  display: grid;
}

.mobile-submenu a {
  min-height: 38px;
  padding-left: 18px;
  border: 1px solid #eee;
  background: #fff;
  font-size: 14px;
}

.top-ad-section {
  padding: 18px 0;
  background: #f5f5f5;
  border-bottom: 1px solid #e8e8e8;
}

.top-ad-section .container {
  display: grid;
  justify-items: center;
}

.ad-label {
  margin-bottom: 5px;
  color: #9a9a9a;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-ad-banner {
  position: relative;
  display: block;
  width: min(970px, 100%);
  overflow: hidden;
  border: 1px solid #e1e1e1;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
}

.top-ad-banner::after {
  content: '×';
  position: absolute;
  top: 4px;
  right: 7px;
  color: #777;
  font-size: 13px;
  line-height: 1;
}

.top-ad-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.featured-section {
  padding: 36px 0 54px;
  background: #fff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-heading span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h1 {
  margin: 0;
  color: #111;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.featured-card {
  margin: 0;
}

.featured-card a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 9 / 13;
  border-radius: 16px;
  color: #fff;
  background: #111;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
}

.featured-card img,
.featured-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.featured-card a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.86) 100%);
}

.featured-card a:hover img,
.featured-card a:hover video {
  transform: scale(1.06);
}

.featured-media-slider {
  position: absolute;
  inset: 0;
}

.featured-media-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.featured-media-item.active {
  opacity: 1;
  visibility: visible;
}

.featured-media-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #111;
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.featured-media-arrow.prev {
  left: 10px;
}

.featured-media-arrow.next {
  right: 10px;
}

.featured-card a:hover .featured-media-arrow {
  opacity: 1;
}

.featured-media-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.content-type {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.featured-volume-toggle {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #111;
  background: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.featured-volume-toggle:hover {
  background: #fff;
  transform: scale(1.08);
}

.featured-volume-toggle.sound-on {
  color: var(--green);
}

.content-type.video { color: var(--red); }
.content-type.gallery { color: var(--purple); }
.content-type.live { color: var(--orange); }
.content-type.podcast { color: var(--blue); }

.featured-overlay {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
}

.category-tag {
  display: flex;
  width: fit-content;
  align-items: center;
  height: 20px;
  margin-bottom: 9px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category-tag.red { background: var(--red); }
.category-tag.green { background: var(--green); }
.category-tag.orange { background: var(--orange); }
.category-tag.blue { background: var(--blue); }

.featured-overlay h2 {
  position: relative;
  display: inline;
  margin: 0 0 11px;
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0.01em;
  word-spacing: 0.08em;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 0.45s ease;
}

.featured-overlay h2:hover {
  background-size: 100% 2px;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 500;
}

.featured-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.latest-section {
  padding: 8px 0 56px;
  background: #fff;
}

.latest-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.latest-heading span {
  position: relative;
  height: 1px;
  background: #e2e2e2;
}

.latest-heading span::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--blue);
  transform: translateY(-50%) rotate(45deg);
}

.latest-heading span:first-child::before {
  right: 0;
}

.latest-heading span:last-child::before {
  left: 0;
}

.latest-heading h2 {
  margin: 0;
  color: #111;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.latest-card a {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 132px;
  padding: 14px;
  border-radius: 6px;
  color: #111;
  background: #f7f7f7;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.latest-card a:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.latest-card img,
.latest-card video {
  width: 124px;
  height: 104px;
  border-radius: 8px;
  object-fit: cover;
}

.latest-card .category-tag {
  height: 21px;
  margin-bottom: 8px;
  padding: 0 9px;
  font-size: 9px;
}

.latest-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.latest-card h3.title-long {
  font-size: 14px;
  line-height: 1.22;
}

.latest-card h3.title-very-long {
  font-size: 12.5px;
  line-height: 1.18;
}

.latest-card p {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  color: #6f6f6f;
  font-size: 10px;
  font-weight: 500;
}

.news-section {
  padding: 42px 0 64px;
  background: #fff;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 26px;
  align-items: start;
}

.news-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.news-heading h2 {
  margin: 0;
  color: #111;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1;
}

.news-heading span {
  position: relative;
  height: 1px;
  background: #d7d7d7;
}

.news-heading span::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--blue);
  transform: translateY(-50%) rotate(45deg);
}

.news-heading span:first-child::before {
  right: 0;
}

.news-heading span:last-child::before {
  left: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 20px;
}

.news-card.is-hidden {
  display: none;
}

.news-card a {
  display: block;
  height: 100%;
  color: #111;
  text-decoration: none;
}

.news-card img,
.news-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-meta {
  display: block;
  margin-top: 11px;
}

.news-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-meta span.red { background: var(--red); }
.news-meta span.orange { background: var(--orange); }
.news-meta span.pink { background: var(--pink); }
.news-meta span.purple { background: var(--purple); }
.news-meta span.green { background: var(--green); }
.news-meta span.teal { background: var(--teal); }
.news-meta span.blue { background: var(--blue); }
.news-meta span.brown { background: var(--brown); }

.news-card h3 {
  display: inline;
  margin: 7px 0 8px;
  color: #111;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: 0.01em;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 0.45s ease;
}

.news-card h3:hover {
  background-size: 100% 2px;
}

.news-card p {
  margin: 9px 0 0;
  color: #777;
  font-size: 12px;
  font-weight: 600;
}

.news-card a:hover img,
.news-card a:hover video {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.load-more-news {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 170px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.load-more-news i {
  font-size: 13px;
}

.load-more-news.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

.load-more-news.is-loading i {
  animation: spin 0.8s linear infinite;
}

.load-more-news:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(245, 51, 63, 0.28);
}

.news-sidebar {
  position: sticky;
  top: 128px;
  display: grid;
  justify-items: center;
}

.sidebar-ad {
  display: block;
  overflow: hidden;
  width: 100%;
  border: 1px solid #e5e5e5;
  background: #fff;
  text-decoration: none;
}

.sidebar-ad img {
  display: block;
  width: 100%;
  height: auto;
}

.subscribe-section {
  padding: 54px 0 72px;
  background:
    radial-gradient(circle at 18% 20%, rgba(54, 166, 217, 0.18), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f3f7fb 100%);
}

.subscribe-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  min-height: 250px;
  padding: 42px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(8, 28, 24, 0.96), rgba(5, 90, 59, 0.92)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1200&q=80') center/cover;
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.subscribe-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 28%, rgba(125, 187, 58, 0.35), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent);
  pointer-events: none;
}

.subscribe-content,
.subscribe-visual {
  position: relative;
  z-index: 1;
}

.subscribe-content {
  z-index: 2;
}

.subscribe-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  color: #071711;
  background: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subscribe-content h2 {
  max-width: 620px;
  margin: 14px 0 9px;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.04;
}

.subscribe-content p {
  max-width: 620px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.subscribe-message {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.subscribe-message.is-ok {
  color: #0d5c2e;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 92, 46, 0.25);
}

.subscribe-message.is-erro {
  color: #8b1a1a;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(139, 26, 26, 0.25);
}

.subscribe-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr)) auto;
  gap: 12px;
}

.subscribe-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.subscribe-field.has-error {
  border-color: rgba(220, 53, 69, 0.65);
  box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.2);
}

.subscribe-error {
  display: block;
  margin-top: 4px;
  color: #ffb4b4;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.subscribe-field {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
}

.subscribe-field i {
  color: var(--green);
  font-size: 15px;
}

.subscribe-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #111;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.subscribe-form button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.subscribe-form button span,
.subscribe-form button i {
  pointer-events: none;
}

.subscribe-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(54, 166, 217, 0.34);
}

.subscribe-visual {
  min-height: 190px;
  pointer-events: none;
}

.phone-card {
  position: absolute;
  right: 20px;
  pointer-events: none;
  width: 250px;
  height: 118px;
  border: 8px solid #111;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(245, 245, 245, 0.95)),
    url('https://images.unsplash.com/photo-1495020689067-958852a7765e?auto=format&fit=crop&w=600&q=80') center/cover;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
  transform: rotate(-12deg);
}

.phone-card.two {
  top: 58px;
  right: 86px;
  transform: rotate(8deg) scale(0.88);
}

.phone-card.three {
  top: 108px;
  right: -8px;
  transform: rotate(-4deg) scale(0.74);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 58px 0 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 51, 63, 0.12), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(54, 166, 217, 0.18), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #eef3f8 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(720px, 82vw);
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--green), var(--blue), var(--purple));
  transform: translateX(-50%);
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.footer-logo img {
  display: block;
  max-width: 190px;
  max-height: 72px;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr;
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.footer-info h3 {
  margin: 0 0 9px;
  color: #111;
  font-size: 20px;
  font-weight: 900;
}

.footer-info p {
  max-width: 470px;
  margin: 0 0 11px;
  color: #586070;
  font-size: 14px;
  line-height: 1.55;
}

.footer-info span,
.footer-contact > span,
.footer-social > span {
  display: block;
  margin-bottom: 10px;
  color: #111;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  color: #28303d;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--red);
}

.footer-contact i {
  color: var(--green);
  font-size: 17px;
}

.footer-social div {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: #111;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  color: #6c7280;
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 16px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--red);
}

.post-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.post-modal.is-open {
  display: flex;
}

.post-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
}

.post-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 1.35fr) minmax(340px, 0.85fr);
  grid-template-rows: minmax(0, 1fr);
  align-items: stretch;
  width: min(1180px, 96vw);
  max-height: 92vh;
  height: 92vh;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.post-modal-close {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  font-size: 22px;
}

.post-modal-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  background: #050505;
}

.post-modal-media-item {
  display: none;
  width: 100%;
  height: 100%;
}

.post-modal-media-item.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-modal-media-item img,
.post-modal-media-item video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.post-modal-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #111;
  background: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.post-modal-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.post-modal-arrow.prev {
  left: 18px;
}

.post-modal-arrow.next {
  right: 18px;
}

.post-modal-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.post-modal-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.post-modal-dot.active {
  background: #fff;
}

.post-modal-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
  background: #fff;
}

.post-modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 14px 18px;
  border-bottom: 1px solid #efefef;
}

.post-modal-header img,
.post-comment img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #f4f4f4;
}

.post-modal-header div {
  flex: 1;
}

.post-modal-header strong {
  display: block;
  color: #111;
  font-size: 14px;
  font-weight: 900;
}

.post-modal-header span {
  color: #777;
  font-size: 11px;
  font-weight: 700;
}

.post-modal-header span i {
  color: var(--blue);
}

.post-modal-header button,
.post-modal-actions button,
.post-comment button:not(.post-comment-edit-save):not(.post-comment-edit-cancel) {
  border: 0;
  background: transparent;
}

.post-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 18px;
  -webkit-overflow-scrolling: touch;
}

.post-caption {
  margin-bottom: 20px;
  color: #222;
  font-size: 14px;
  line-height: 1.45;
}

.post-caption strong {
  margin-right: 5px;
  font-weight: 900;
}

.post-caption p,
.post-modal-text {
  margin: 10px 0 0;
  color: #555;
}

.post-modal-text {
  font-size: 14px;
  line-height: 1.55;
  word-break: break-word;
}

.post-modal-text p {
  margin: 0 0 12px;
}

.post-modal-text p:last-child {
  margin-bottom: 0;
}

.post-modal-text img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.post-modal-text a {
  color: var(--blue);
  text-decoration: underline;
}

.post-modal-text ul,
.post-modal-text ol {
  margin: 0 0 12px;
  padding-left: 1.25rem;
}

.post-comment {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.post-comment p {
  margin: 0;
  color: #252525;
  font-size: 13px;
  line-height: 1.4;
}

.post-comment p strong {
  margin-right: 4px;
  font-weight: 900;
}

.post-comment div div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  color: #888;
  font-size: 11px;
  font-weight: 800;
}

.post-comment .like-comment {
  margin-left: auto;
  color: #111;
}

.post-comment .edit-comment {
  color: #555;
}

.post-comment.is-editing .post-comment-edit-form {
  margin-bottom: 8px;
}

.post-comment-edit-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
}

.post-comment-edit-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.post-comment .post-comment-edit-save,
.post-comment .post-comment-edit-cancel {
  padding: 4px 12px;
  border: 0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.post-comment .post-comment-edit-save {
  background: #111;
  color: #fff;
}

.post-comment .post-comment-edit-cancel {
  background: #f0f0f0;
  color: #333;
}

.post-modal-actions {
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  padding: 12px 16px 4px;
  border-top: 1px solid #efefef;
}

.post-modal-actions div {
  display: flex;
  gap: 14px;
}

.post-modal-actions button {
  color: #111;
  font-size: 25px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.post-modal-actions button:hover {
  transform: scale(1.08);
}

.post-modal-actions button.is-active,
.post-comment button.is-active {
  color: var(--red);
}

.post-modal-likes,
.post-modal-time {
  flex-shrink: 0;
  padding: 0 18px;
  color: #111;
  font-size: 13px;
}

.post-modal-likes {
  margin-top: 4px;
}

.post-modal-time {
  margin: 7px 0 12px;
  color: #888;
  font-size: 11px;
}

.post-comment-form {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  border-top: 1px solid #efefef;
}

.post-comment-emoji-wrap {
  position: relative;
  flex-shrink: 0;
}

.post-comment-emoji-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.post-comment-emoji-btn:hover {
  opacity: 0.75;
}

.post-comment-emoji-picker {
  position: fixed;
  z-index: 2100;
  overflow: hidden;
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.post-comment-emoji-picker-scroll {
  max-height: 280px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px 12px 12px;
}

.post-comment-emoji-categoria {
  margin-bottom: 12px;
}

.post-comment-emoji-categoria:last-child {
  margin-bottom: 0;
}

.post-comment-emoji-categoria-titulo {
  margin: 0 0 8px;
  color: #8e8e8e;
  font-size: 13px;
  font-weight: 700;
}

.post-comment-emoji-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2px;
}

.post-comment-emoji-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.post-comment-emoji-item:hover {
  background: #f2f2f2;
}

.post-comment-form input {
  flex: 1;
  border: 0;
  outline: 0;
  color: #111;
  font-size: 13px;
}

.post-comment-form > button[type="submit"] {
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 13px;
  font-weight: 900;
}

.featured-empty {
  grid-column: 1 / -1;
  padding: 32px 16px;
  text-align: center;
  color: #666;
  font-size: 15px;
}

.post-comments-empty {
  margin: 0;
  color: #888;
  font-size: 13px;
}

.post-comment-thread {
  margin-bottom: 18px;
}

.post-comment-thread > .post-comment {
  margin-bottom: 0;
}

.post-comment-replies {
  margin-top: 12px;
  padding-left: 50px;
}

.post-comment-replies.is-collapsed {
  display: none;
}

.post-comment.is-reply {
  grid-template-columns: 28px 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.post-comment.is-reply:last-child {
  margin-bottom: 0;
}

.post-comment.is-reply img {
  width: 28px;
  height: 28px;
}

.post-comment-replies-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 0 50px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #888;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.post-comment-replies-toggle:hover {
  color: #555;
}

.post-comment-replies-toggle-line {
  display: block;
  width: 28px;
  height: 1px;
  background: #c7c7c7;
}

.post-auth-panel {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #efefef;
  border-radius: 12px;
  background: #fafafa;
}

.post-auth-panel[hidden] {
  display: none !important;
}

.post-auth-intro {
  margin: 0 0 12px;
  color: #444;
  font-size: 13px;
  font-weight: 700;
}

.post-auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.post-auth-tab {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #333;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.post-auth-tab.is-active {
  border-color: var(--blue);
  color: var(--blue);
}

.post-auth-form {
  display: grid;
  gap: 10px;
}

.post-auth-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.post-auth-email-hint {
  margin: -4px 0 0;
  min-height: 16px;
  font-size: 11px;
  font-weight: 700;
}

.post-auth-email-hint.is-ok {
  color: #1a7f37;
}

.post-auth-email-hint.is-erro {
  color: var(--red);
}

.post-auth-genero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.post-auth-genero legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  padding: 0;
  color: #444;
  font-size: 12px;
  font-weight: 800;
}

.post-auth-genero-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 12px 10px;
  border: 2px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.post-auth-genero-opt:hover {
  border-color: #c5d4f5;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.12);
}

.post-auth-genero-opt:has(input:checked) {
  border-color: var(--blue);
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.18);
  transform: translateY(-1px);
}

.post-auth-genero-opt input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.post-auth-genero-avatar {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-auth-genero-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-auth-genero-label {
  color: #333;
  font-size: 12px;
  font-weight: 800;
}

.post-auth-form.is-hidden {
  display: none;
}

.post-auth-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
}

.post-auth-form button {
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.post-auth-msg {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.post-auth-msg.is-erro {
  color: var(--red);
}

.post-auth-msg.is-ok {
  color: #1a7f37;
}

.post-modal-logout {
  border: 0;
  color: #888;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.post-modal-logout.is-hidden {
  display: none;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 32px rgba(245, 51, 63, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #d91f2d;
  transform: translateY(-3px);
}

.bottom-ad-float {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 1100;
  width: min(728px, calc(100vw - 28px));
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}

.bottom-ad-float.is-collapsed {
  transform: translate(-50%, 100%);
}

.bottom-ad-toggle {
  position: absolute;
  top: -24px;
  left: 50%;
  width: 58px;
  height: 28px;
  border: 0;
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  color: #777;
  background: #fff;
  box-shadow: 0 -5px 14px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
}

.bottom-ad-float.is-collapsed .bottom-ad-toggle i {
  transform: rotate(0deg);
}

.bottom-ad-float:not(.is-collapsed) .bottom-ad-toggle i {
  transform: rotate(180deg);
}

.bottom-ad-toggle i {
  transition: transform 0.25s ease;
}

.bottom-ad-banner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #fff;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.14);
}

.bottom-ad-banner .ad-label {
  position: absolute;
  top: 4px;
  right: 6px;
  z-index: 1;
  padding: 2px 6px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  font-size: 8px;
}

.bottom-ad-banner img {
  display: block;
  width: 100%;
  height: auto;
}

body.dark-theme {
  color: #f2f2f2;
  background: #101114;
}

body.dark-theme .site-header,
body.dark-theme .main-header,
body.dark-theme .category-nav,
body.dark-theme .featured-section,
body.dark-theme .latest-section {
  background: #15171b;
}

body.dark-theme .site-header {
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

body.dark-theme .main-header,
body.dark-theme .category-nav,
body.dark-theme .top-ad-section {
  border-color: #282b31;
}

body.dark-theme .category-nav a,
body.dark-theme .menu-toggle,
body.dark-theme .latest-heading h2,
body.dark-theme .latest-card h3 {
  color: #f5f5f5;
}

body.dark-theme .search-toggle {
  color: #f5f5f5;
}

body.dark-theme .search-toggle:hover,
body.dark-theme .search-toggle:focus {
  color: #222;
}

body.dark-theme .top-ad-section {
  background: #101114;
}

body.dark-theme .date-badge,
body.dark-theme .top-ad-banner,
body.dark-theme .latest-card a,
body.dark-theme .mobile-links a,
body.dark-theme .mobile-submenu-toggle {
  background: #1c1f25;
  color: #f2f2f2;
  border-color: #30343b;
}

body.dark-theme .latest-card a:hover {
  background: #23262d;
}

body.dark-theme .search-panel {
  background: #15171b;
  border-top-color: #282b31;
}

body.dark-theme .search-form {
  background: #1c1f25;
  border-color: #30343b;
}

body.dark-theme .search-form input {
  color: #f2f2f2;
}

body.dark-theme .search-form input::placeholder {
  color: #9ca3af;
}

body.dark-theme .search-form > i {
  color: #9ca3af;
}

body.dark-theme .latest-card p,
body.dark-theme .ad-label {
  color: #b8bcc5;
}

body.dark-theme .theme-toggle {
  color: #111;
  background: #fff;
}

body.dark-theme .news-section {
  background: #15171b;
}

body.dark-theme .news-card a {
  color: #f5f5f5;
}

body.dark-theme .news-card h3 {
  color: #f5f5f5;
}

body.dark-theme .news-heading h2 {
  color: #f5f5f5;
}

body.dark-theme .news-card p {
  color: #b8bcc5;
}

body.dark-theme .sidebar-ad {
  background: #1c1f25;
  border-color: #30343b;
}

body.dark-theme .subscribe-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(54, 166, 217, 0.12), transparent 32%),
    linear-gradient(180deg, #15171b 0%, #101114 100%);
}

body.dark-theme .subscribe-card {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

body.dark-theme .site-footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 51, 63, 0.12), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(54, 166, 217, 0.12), transparent 30%),
    linear-gradient(135deg, #101114 0%, #171a20 100%);
  border-top-color: #282b31;
}

body.dark-theme .footer-logo,
body.dark-theme .footer-grid {
  background: rgba(28, 31, 37, 0.78);
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .footer-info h3,
body.dark-theme .footer-info span,
body.dark-theme .footer-contact > span,
body.dark-theme .footer-social > span {
  color: #f5f5f5;
}

body.dark-theme .footer-info p,
body.dark-theme .footer-contact a,
body.dark-theme .footer-bottom {
  color: #b8bcc5;
}

body.dark-theme .post-modal-dialog,
body.dark-theme .post-modal-panel {
  background: #15171b;
}

body.dark-theme .post-modal-header,
body.dark-theme .post-modal-actions,
body.dark-theme .post-comment-form {
  border-color: #2a2d34;
}

body.dark-theme .post-modal-header strong,
body.dark-theme .post-caption,
body.dark-theme .post-comment p,
body.dark-theme .post-modal-actions button,
body.dark-theme .post-modal-likes,
body.dark-theme .post-comment-emoji-btn,
body.dark-theme .post-comment-form input,
body.dark-theme .post-comment .like-comment {
  color: #f5f5f5;
}

body.dark-theme .post-modal-header span,
body.dark-theme .post-caption p,
body.dark-theme .post-modal-time {
  color: #a9adb6;
}

body.dark-theme .post-comment-form input {
  background: transparent;
}

body.dark-theme .post-comment-emoji-picker {
  border-color: #3a3f48;
  background: #1c1f24;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

body.dark-theme .post-comment-emoji-categoria-titulo {
  color: #a9adb6;
}

body.dark-theme .post-comment-emoji-item:hover {
  background: #2a2f38;
}

body.dark-theme .post-comment-replies-toggle {
  color: #a9adb6;
}

body.dark-theme .post-comment-replies-toggle:hover {
  color: #d5d8de;
}

body.dark-theme .post-comment-replies-toggle-line {
  background: #4a4f58;
}

body.dark-theme .post-auth-panel {
  border-color: #2a2d34;
  background: #1c1f24;
}

body.dark-theme .post-auth-intro,
body.dark-theme .post-auth-genero legend {
  color: #c8ccd4;
}

body.dark-theme .post-auth-tab {
  border-color: #3a3f48;
  color: #e8eaed;
  background: #15171b;
}

body.dark-theme .post-auth-form input {
  border-color: #3a3f48;
  color: #f5f5f5;
  background: #15171b;
}

body.dark-theme .post-auth-genero-opt {
  border-color: #3a3f48;
  background: #15171b;
}

body.dark-theme .post-auth-genero-label {
  color: #e8eaed;
}

body.dark-theme .post-auth-email-hint.is-ok {
  color: #6ee7a0;
}

body.dark-theme .post-auth-email-hint.is-erro {
  color: #ff8a8a;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(57, 170, 71, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(57, 170, 71, 0); }
  100% { box-shadow: 0 0 0 0 rgba(57, 170, 71, 0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 991.98px) {
  .social-strip {
    right: 16px;
  }

  .top-info {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .top-info span:last-child {
    display: none;
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .latest-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    position: static;
  }

  .sidebar-ad {
    max-width: 300px;
  }

  .subscribe-card {
    grid-template-columns: 1fr;
  }

  .subscribe-form {
    grid-template-columns: 1fr 1fr;
  }

  .subscribe-form button {
    grid-column: 1 / -1;
  }

  .subscribe-visual {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .post-modal-dialog {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    width: min(720px, 96vw);
    height: 92vh;
    overflow: hidden;
  }

  .post-modal-media {
    min-height: 0;
    height: auto;
    max-height: 45vh;
  }

  .post-modal-panel {
    min-height: 0;
    max-height: none;
  }
}

@media (max-width: 767.98px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .top-color-bar {
    height: 14px;
  }

  .social-strip {
    display: none;
  }

  .header-grid {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    min-height: 62px;
  }

  .header-left,
  .header-actions {
    gap: 6px;
    min-width: 0;
  }

  .header-left {
    display: contents;
  }

  .header-actions {
    display: contents;
  }

  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
  }

  .brand-logo {
    grid-column: 2;
    grid-row: 1;
  }

  .search-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .menu-toggle,
  .search-toggle {
    width: 34px;
    height: 34px;
    font-size: 18px;
    flex: 0 0 auto;
  }

  .weather-widget {
    display: inline-flex;
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: end;
    max-width: none;
    min-height: 36px;
    margin-top: 4px;
    margin-right: 8px;
    padding: 5px 12px 5px 6px;
    gap: 7px;
  }

  .weather-icon {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .weather-widget strong {
    font-size: 11px;
  }

  .weather-widget small {
    max-width: 52px;
    overflow: hidden;
    font-size: 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .brand-logo img {
    height: 46px;
  }

  .legal-ad-btn {
    display: inline-flex;
    grid-column: 2 / 4;
    grid-row: 2;
    justify-self: start;
    min-height: 36px;
    margin-top: 4px;
    margin-left: 8px;
    padding: 0 16px;
    font-size: 12px;
  }

  .legal-ad-btn::before {
    content: none;
  }

  .category-nav {
    display: none;
  }

  .small-logo img {
    max-height: 78px;
  }

  .featured-section {
    padding: 28px 0 42px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h1 {
    margin-top: 6px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .featured-card a {
    max-width: 330px;
    margin: 0 auto;
  }

  .latest-heading h2 {
    font-size: 21px;
  }

  .latest-card a {
    grid-template-columns: 104px 1fr;
    gap: 12px;
  }

  .latest-card img,
  .latest-card video {
    width: 104px;
    height: 88px;
  }

  .search-form {
    grid-template-columns: auto 1fr auto;
    justify-content: center;
    border-radius: 18px;
  }

  .search-form .voice-search,
  .search-form .btn {
    grid-row: 2;
  }

  .search-form .voice-search {
    grid-column: 2;
    justify-self: end;
  }

  .search-form .btn {
    grid-column: 2;
    justify-self: start;
    min-width: 100px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-heading h2 {
    font-size: 28px;
  }

  .subscribe-card {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-grid {
    padding: 22px;
  }

  .footer-social div,
  .footer-bottom div {
    justify-content: center;
    flex-wrap: wrap;
  }

  .post-modal {
    padding: 0;
  }

  .post-modal-dialog {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .post-modal-close {
    top: 10px;
    right: 10px;
  }

  .post-modal-media {
    min-height: 0;
    max-height: 42vh;
  }
}


/* =====================================
   ASSINATURA DESENVOLVEDOR
===================================== */

.dev-signature{
    margin-top:20px;
    display: flex;
    flex-direction: column;
    min-width:240px;
}
.dev-signature-label{
    font-size:12px;
    color:#000;
    margin-bottom:-5px;
}

/* CONTAINER */
.logo-dev-container{
    display:flex;
    align-items:center;
    position:relative;
    cursor:pointer;
    text-decoration:none;
    width:120px;
    min-height:40px;
    background:transparent;
    border-radius:0;
    color:inherit;
}

.footer-social .logo-dev-container,
.footer-social .logo-dev-container:hover{
    background:transparent;
    width:30px;
    height:auto;
    border-radius:0;
    transform:none;
}

/* IMAGEM FIXA */
.logo-dev-img{
    width:30px;
    position:relative;
    z-index:2;
}

/* MUDA A COR MAS NÃO MOVE */
/* ÁREA DO TEXTO */
.text-area-dev{
    display:flex;
    align-items:center;
    position:absolute;
    left:40px;
    overflow:hidden;
    width:0;
    transition:width .6s ease;
}

/* ABRE O TEXTO */
.logo-dev-container:hover .text-area-dev{
  width: 165px;
}

/* LINHA */
.light-line-dev{
    width:1px;
    height:30px;
    background:#000;
    margin-right:1px;
    transform:scaleY(0);
    transform-origin:center;
    transition:transform .25s ease;
}

.logo-dev-container:hover .light-line-dev{
    transform:scaleY(1);
}

/* TEXTO */
.logo-text-dev{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    opacity:0;
    transform:translateX(-40px);
    transition:
        opacity .35s ease .22s,
        transform .45s ease .22s;
    white-space:nowrap;
    min-width:150px;
    line-height:1;
}

.logo-dev-container:hover .logo-text-dev{
    opacity:1;
    transform:translateX(0);
}

/* TITULO */
.title-dev{    
  display: block;
  width: 100%;
    font-size:14px;
    font-weight:800;
    color:#000;
    line-height:-1;
}
.subtitle-dev{
  display: block;
  width: 100%;
    margin-top:-10px !important;
    font-size:9px;
    letter-spacing:2px;
    color:#0077a3;
    white-space:nowrap;
    line-height:1;
}

@media (max-width: 575.98px) {
    .dev-signature{
        align-items:center !important;
        min-width:0 !important;
        width:100% !important;
    }

    .logo-dev-container{
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        width:100% !important;
        min-height:36px !important;
        gap:7px !important;
    }

    .text-area-dev{
        position:static !important;
        display:flex !important;
        align-items:center !important;
        justify-content:flex-start !important;
        width:auto !important;
        overflow:visible !important;
        transition:none !important;
        flex-wrap:nowrap !important;
    }

    .light-line-dev{
        flex:0 0 1px !important;
        height:30px !important;
        margin:0 6px 0 0 !important;
        transform:scaleY(1) !important;
        transition:none !important;
    }

    .logo-text-dev{
        display:flex !important;
        flex-direction:column !important;
        align-items:flex-start !important;
        opacity:1 !important;
        transform:none !important;
        transition:none !important;
        min-width:auto !important;
        text-align: left !important;
    }

    .title-dev{
        margin:0 !important;
        line-height:1 !important;
    }

    .subtitle-dev{
        margin:-10px 0 0 0 !important;
        line-height:1 !important;
    }
}
