:root {
  --bg: #0a0510;
  --bg-2: #0e0716;
  --bg-3: #120a1c;
  --card: #150c22;
  --card-2: #1a1030;
  --pink: #e83a8e;
  --pink-2: #ff4fa3;
  --pink-glow: rgba(232, 58, 142, 0.5);
  --magenta: #d6248a;
  --text: #f4eef8;
  --muted: #a99bb8;
  --muted-2: #7d7089;
  --border: rgba(232, 58, 142, 0.15);
  --purple: #8b3ad6;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.pink {
  color: var(--pink);
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 12px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.btn-pink {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 18px var(--pink-glow);
}

.btn-pink:hover {
  background: var(--pink-2);
  box-shadow: 0 0 26px var(--pink-glow);
}

.btn-dark {
  background: #140b20;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-dark:hover {
  border-color: var(--pink);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--pink);
  padding: 9px 20px;
}

.btn-outline:hover {
  background: var(--pink);
  color: #fff;
}

.btn-lg {
  padding: 15px 26px;
  font-size: 13px;
}

.arrow {
  font-size: 18px;
  line-height: 1;
}

.play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 9px;
  padding-left: 2px;
}

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 5, 16, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
}

.logo img {
  width: 110px;
}

.logo-main {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.02em;
}

.logo-six {
  color: var(--pink);
}

.logo-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--pink);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link.active {
  color: var(--pink);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink-glow);
}

.caret {
  font-size: 9px;
}

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

.btn-login {
  padding: 9px 16px;
  font-size: 12px;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  display: flex;
  padding: 4px;
}

.icon-btn:hover {
  color: var(--pink);
}

.menu-toggle {
  display: none;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 6%, rgba(10, 5, 16, 0.85) 30%, rgba(10, 5, 16, 0.15) 60%, rgba(10, 5, 16, 0.4) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  width: 100%;
}

.hero-logo-vi {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 3;
}

.hero-logo-vi img {
  width: 190px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 22px rgba(0, 0, 0, 0.6));
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0% {
    transform: translateY(0px);
    filter: drop-shadow(0 4px 22px rgba(0, 0, 0, 0.6));
  }

  50% {
    transform: translateY(-8px);
    filter: drop-shadow(0 8px 30px rgba(255, 80, 200, 0.35));
  }

  100% {
    transform: translateY(0px);
    filter: drop-shadow(0 4px 22px rgba(0, 0, 0, 0.6));
  }
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 0.92;
  margin-bottom: 18px;
}

.hero-title span {
  display: block;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.line-1 {
  font-size: 40px;
  letter-spacing: 0.02em;
}

.line-2 {
  font-size: 92px;
  letter-spacing: 0.01em;
  margin: -4px 0;
}

.line-2 .pink {
  text-shadow: 0 0 30px var(--pink-glow);
}

.line-3 {
  font-size: 40px;
  letter-spacing: 0.02em;
}

.hero-desc {
  max-width: 340px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 26px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.countdown-box {
  max-width: 460px;
  background: rgba(15, 8, 24, 0.72);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 24px;
  backdrop-filter: blur(6px);
}

.countdown-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.countdown {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.cd-item {
  display: flex;
  flex-direction: column;
  min-width: 62px;
}

.cd-num {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  text-shadow: 0 0 18px var(--pink-glow);
}

.cd-unit {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 4px;
}

.countdown-date {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ================= SECTION TITLE ================= */
.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.section-title.center {
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink-glow);
  border-radius: 2px;
  left: 0;
}

.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ================= EXPLORE ================= */
.explore {
  padding: 60px 0;
  background: var(--bg-2);
}

.explore .section-title {
  margin-bottom: 40px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.explore-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.25s, box-shadow 0.25s;
}

.explore-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(232, 58, 142, 0.2);
}

.explore-card .card-img {
  position: absolute;
  inset: 0;
}

.explore-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--card) 30%, rgba(21, 12, 34, 0.4) 60%, transparent 100%);
}

.explore-card .card-body {
  position: relative;
  z-index: 2;
  padding: 20px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 14px;
  box-shadow: 0 0 16px var(--pink-glow);
}

.explore-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.explore-card p {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 12px;
}

.card-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.card-link:hover {
  color: var(--pink-2);
}

/* ================= NEWS ================= */
.news {
  padding: 60px 0;
  background: var(--bg);
}

.news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.news-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
}

.news-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-content: start;
}

.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-img {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 3px;
}

.news-content {
  padding: 16px;
}

.news-content h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.news-meta {
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dot-icon {
  color: var(--pink);
  font-size: 9px;
}

.news-content p {
  font-size: 12.5px;
  color: var(--muted);
}

/* SIDEBAR */
.news-side {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 18px;
  align-self: start;
}

.side-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.side-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.side-list li:last-child {
  border-bottom: none;
}

.side-list a {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  align-items: center;
}

.side-list img {
  width: 64px;
  height: 46px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.side-headline {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.2s;
}

.side-list a:hover .side-headline {
  color: var(--pink);
}

.side-date {
  font-size: 10px;
  color: var(--muted-2);
}

/* ================= NEWSLETTER ================= */
.newsletter {
  padding: 44px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #6a1a5a, #a52b7f 45%, #7a1e63);
}

.newsletter::before,
.newsletter::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200px;
  height: 100%;
  background: radial-gradient(circle at bottom, rgba(0, 0, 0, 0.35), transparent 70%);
}

.newsletter::before {
  left: 0;
}

.newsletter::after {
  right: 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-icon {
  width: 66px;
  height: 66px;
  border-radius: 10px;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.newsletter-title {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  letter-spacing: 0.03em;
  color: #fff;
}

.newsletter-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 360px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  background: transparent;
}

.newsletter-form input {
  border: none;
  padding: 13px 18px;
  font-size: 13px;
  width: 260px;
  border-radius: 4px 0 0 4px;
  background: #f4eef8;
  color: #1a1030;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #8a7d95;
}

.newsletter-form .btn {
  border-radius: 0 4px 4px 0;
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr 1.3fr;
  gap: 30px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-about {
  font-size: 12.5px;
  color: var(--muted);
  max-width: 240px;
  margin-bottom: 18px;
}

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

.social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--card-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}

.social:hover {
  background: var(--pink);
  color: #fff;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  font-size: 12.5px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--text);
}

.partner-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.partner {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.partner small {
  font-size: 9px;
  letter-spacing: 0.2em;
}

.partner-star {
  color: var(--pink);
}

.partner-social {
  font-style: italic;
  font-family: 'Inter', serif;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.footer-bottom .container {
  text-align: center;
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .explore-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .news-main {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .line-2 {
    font-size: 72px;
  }
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .btn-login span,
  .btn-login .icon {}

  .hero-logo-vi {
    display: none;
  }

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

@media (max-width: 640px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .line-1,
  .line-3 {
    font-size: 30px;
  }

  .line-2 {
    font-size: 60px;
  }

  .cd-num {
    font-size: 30px;
  }

  .cd-item {
    min-width: 48px;
  }

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

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input {
    flex: 1;
    width: auto;
  }

  .section-title {
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }

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

/* Mobile menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
  color: var(--pink);
}


/* DESTAQUE PRINCIPAL*/


.highlight-banner {
  margin: 20px 0;
}

.highlight-link {
  display: flex;
  align-items: center;
  gap: 25px;

  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 4px;

  padding: 16px 25px;

  text-decoration: none;
  color: #111;

  transition: .2s;
}

.highlight-link:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}


.highlight-image img {
  width: 75px;
  height: 75px;

  object-fit: cover;
  border-radius: 50%;
}


.highlight-content {
  flex: 1;
}


.highlight-label {
  display: block;

  font-size: 13px;
  color: #ff2d8d;

  margin-bottom: 5px;
}


.highlight-content h3 {
  margin: 0;

  font-size: 18px;
  font-weight: 700;
}


.highlight-content p {
  margin: 5px 0 0;

  font-size: 14px;
  color: #555;
}


.highlight-action {
  font-size: 13px;
  font-weight: 700;

  white-space: nowrap;

  color: #111;
}

.highlight-link {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 80, 0.35);
}

.highlight-link::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 4px;

  background: linear-gradient(90deg,
      transparent,
      #ff0055,
      transparent);

  background-size: 300% 300%;
  animation: borderRun 3s linear infinite;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

@keyframes borderRun {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

/* DESTAQUES SECUNDARIOS */

.secondary-highlights {
  padding: 40px 0;
}

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

.secondary-highlight-card {
  background: #151019;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
}

.secondary-highlight-card:hover {
  transform: translateY(-4px);
}

.secondary-highlight-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.secondary-highlight-card div {
  padding: 14px;
}

.secondary-highlight-card span {
  color: #ff2d8d;
  font-size: 12px;
  font-weight: 700;
}

.secondary-highlight-card h3 {
  font-size: 16px;
  margin-top: 8px;
}


/* PAGINA DETALHE **/

/* PAGINA DETALHE */

.article-page {
  padding: 60px 0;
}

.article-container {
  max-width: 1080px;
}

.article-main {
  background: rgba(10, 5, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 42px;
}

.article-title {
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  line-height: 1.08;
  margin: 18px 0;
  color: #fff;
}

.article-summary {
  font-size: 20px;
  color: #cfc7d8;
  margin-bottom: 20px;
}

.article-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.article-meta {
  font-size: 13px;
  color: #b7aebe;
  text-transform: uppercase;
}

.article-share-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-inline-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s;
}

.share-inline-btn:hover {
  transform: translateY(-2px);
}

.share-facebook {
  background: #1877f2;
}

.share-x {
  background: #111;
}

.share-whatsapp {
  background: #25d366;
}

.article-cover img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
}

.article-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 30px 0;
  overflow: hidden;
  border-radius: 16px;
}

.article-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

.article-content {
  font-size: 19px;
  line-height: 1.9;
  color: #e8e2ee;
}

.article-content p {
  margin-bottom: 22px;
}

.related-news {
  margin-top: 55px;
}

.related-news h2 {
  font-family: "Oswald", sans-serif;
  color: #fff;
  margin-bottom: 25px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-card {
  text-decoration: none;
  color: #fff;
  background: #151019;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.2s;
}

.related-card:hover {
  transform: translateY(-4px);
}

.related-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.related-card h3 {
  padding: 12px;
  font-size: 15px;
}

/* COMENTARIOS */

.comments-section {
  margin-top: 60px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comments-section h2 {
  font-family: "Oswald", sans-serif;
  color: #fff;
  margin-bottom: 25px;
  font-size: 28px;
}

.comment-form-fake {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 35px;
}

.comment-form-fake input,
.comment-form-fake textarea {
  width: 100%;
  background: #151019;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 15px;
  color: #bfb7c9;
  font-size: 15px;
}

.comment-form-fake textarea {
  min-height: 140px;
  resize: none;
}

.comment-form-fake input:disabled,
.comment-form-fake textarea:disabled {
  opacity: 1;
  cursor: not-allowed;
}

.comment-form-fake button {
  width: fit-content;
  opacity: 0.75;
  cursor: not-allowed;
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comment-item {
  background: #151019;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
}

.comment-item strong {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}

.comment-item span {
  display: block;
  font-size: 12px;
  color: #a89fb3;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.comment-item p {
  margin: 0;
  color: #e8e2ee;
  line-height: 1.7;
  font-size: 15px;
}

.comments-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.comments-head span {
  color: #b7aebe;
  font-size: 13px;
  text-transform: uppercase;
}

.comment-item {
  display: flex;
  gap: 15px;
}

.comment-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2d8d, #8a2be2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.comment-body {
  flex: 1;
}

.comment-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.comment-actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

.comment-actions button {
  background: transparent;
  border: 0;
  color: #ff2d8d;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

/** BOTAO DE BUSCA **/
/* BUSCA DO HEADER */
.header-search-form {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.header-search-form .search-btn {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.header-search-input {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);

  width: 0;
  opacity: 0;
  pointer-events: none;

  padding: 0;
  border: 0;
  outline: none;

  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  height: 42px;

  transition:
    width .25s ease,
    opacity .25s ease,
    padding .25s ease,
    border .25s ease;
}

.header-search-form.active .header-search-input {
  width: 260px;
  opacity: 1;
  pointer-events: auto;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.header-search-input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

/* DROPDOWN DOS RESULTADOS */
.search-results-box {
  position: absolute;
  top: calc(100% + 12px);
  left: 10px;
  width: 340px;

  background: #151019;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;

  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .2s ease;

  z-index: 9999;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.search-results-box.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-result-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #151019;
  transition: background .2s ease;
}

.search-result-item:hover {
  background: rgba(255,255,255,.06);
}

.search-result-item img {
  width: 58px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.search-result-item div {
  min-width: 0;
}

.search-result-item span {
  display: block;
  font-size: 11px;
  color: #ff2d8d;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: .04em;
}

.search-result-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: #fff;
}

.search-see-all,
.search-empty {
  display: block;
  padding: 13px;
  text-align: center;
  color: #ff2d8d;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  background: #151019;
}

.search-see-all:hover {
  background: rgba(255,255,255,.05);
}

/** PAGINACAO **/

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 40px;
}

.pagination a {
    padding: 10px 18px;
    border-radius: 999px;
    background: #ff2d8d;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.pagination span {
    color: #cfc7d8;
    font-size: 13px;
    font-weight: 700;
}


/** CADASTRO E LOGIN */

.auth-page {
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.auth-box {
    width: 100%;
    max-width: 420px;
    background: rgba(10, 5, 16, 0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 35px;
}

.auth-box h1 {
    font-family: "Oswald", sans-serif;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

.auth-box form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-box input {
    background: #151019;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 14px;
    color: #fff;
}

.auth-box p {
    color: #cfc7d8;
    text-align: center;
    margin-top: 18px;
}

.auth-box a {
    color: #ff2d8d;
    font-weight: 700;
}

/*/ CSS PARA MENSAGENS DE CADASTRO DO USUARIO */


.auth-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.auth-message {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.auth-message.error {
    background: rgba(255, 59, 92, 0.12);
    border: 1px solid rgba(255, 59, 92, 0.25);
    color: #ff8ca4;
}

.auth-message.success {
    background: rgba(0, 200, 120, 0.12);
    border: 1px solid rgba(0, 200, 120, 0.25);
    color: #7ef0b6;
}

.user-menu {
  position: relative;
}

.user-menu-toggle {
  cursor: pointer;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: #151019;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 8px;
  display: none;
  flex-direction: column;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.user-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: .2s;
}

.user-dropdown a:hover {
  background: rgba(255,255,255,.06);
  color: #ff2d8d;
}

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


/*/ CSS PARA PERFIL DO USUARIO */


.profile-preview {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.profile-preview img,
.profile-avatar-default {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-avatar-default {
    background: linear-gradient(135deg, #ff2d8d, #8a2be2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}

.auth-box textarea {
    background: #151019;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 14px;
    color: #fff;
    min-height: 120px;
    resize: vertical;
}
/* RESPONSIVO - DESTAQUES SECUNDÁRIOS */

@media (max-width: 768px) {
  .secondary-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .secondary-highlight-card img {
    height: 120px;
  }

  .secondary-highlight-card h3 {
    font-size: 14px;
  }
}


/** SEÇÃO COMENTARIOS EM DETALHAR **/

.comment-login-warning {
  color: #cfc7d8;
  margin-bottom: 30px;
}

.comment-login-warning{
  color: #ff2d8d;
  font-weight: 700;
  text-decoration: none;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 12px;
}

.comment-actions button,
.comment-action-link {
    background: none;
    border: 0;
    padding: 0;
    color: #b7aebe;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: .2s;
}

.comment-actions button:hover,
.comment-action-link:hover {
    color: #ff2d8d;
}

.comment-login-box {
  background: #151019;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 30px;
  text-align: center;
}

.comment-login-box p {
  color: #cfc7d8;
  margin-bottom: 15px;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 12px;
}

.comment-actions button,
.comment-actions .comment-action-link {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #b7aebe;
    font-size: 13px;
    font-family: inherit;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
}

.comment-actions button:hover,
.comment-actions .comment-action-link:hover {
    color: #ff2d8d;
}


/** RESPOSTA EM CIMA DE COMENTARIOS */

.reply-form {
  margin-top: 14px;
}

.reply-form textarea {
  width: 100%;
  background: #151019;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px;
  color: #fff;
  min-height: 90px;
  resize: vertical;
  margin-bottom: 10px;
}

.reply-list {
  margin-top: 16px;
  padding-left: 28px;
  border-left: 2px solid rgba(255,255,255,0.08);
}

.reply-item {
  margin-top: 14px;
}

/* CURTIR COMENTARIO */

.comment-actions button,
.comment-actions .comment-action-link {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #b7aebe;
    font-size: 13px;
    font-family: inherit;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;

    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.comment-like-btn span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transform: translateY(5px);
}

/* BOTAO CURTIR PAGINA (NOTICIA) */

.article-like-btn {
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 0;
    background: #151019;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

.article-like-btn:hover,
.article-like-btn.liked {
    background: #ff2d8d;
    color: #fff;
}

.article-like-btn span {
    font-size: 13px;
}

.article-like-btn.like-pop {
    animation: likePop .35s ease;
}

@keyframes likePop {
    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}