:root {
  --azul: #4fb0b9;
  --azul2: #4361ee;
  --roxo: #7c3aed;
  --rosa: #ff006e;
  --laranja: #fb5607;
  --verde: #22c55e;
  --escuro: #050816;
  --escuro2: #080d22;
  --escuro3: #0f172a;
  --texto: #ffffff;
  --muted: #aab4c8;
  --borda: rgba(255, 255, 255, 0.09);
  --glass: rgba(255, 255, 255, 0.055);

  --gradient:
    radial-gradient(
      circle at top left,
      rgba(214, 79, 145, 0.95) 0%,
      rgba(214, 79, 145, 0.45) 30%,
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(79, 176, 185, 0.95) 0%,
      rgba(79, 176, 185, 0.55) 35%,
      transparent 60%
    ),
    linear-gradient(135deg, #d64f91 0%, #8b89c5 50%, #4fb0b9 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    font-family: "Inter", sans-serif;
    background:
        radial-gradient(
            circle at top left,
            rgba(67, 97, 238, 0.22),
            transparent 35%
        ),
        radial-gradient(
            circle at top right,
            rgba(124, 58, 237, 0.18),
            transparent 32%
        ),
        linear-gradient(180deg, #050816 0%, #070b1d 45%, #050816 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--texto);
    overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font-family: inherit;
}

.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

section {
  padding: 40px 0;
  position: relative;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--azul);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.section-header p {
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-top: 15px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  opacity: 0.85;
  transition: 0.3s;
  white-space: nowrap;
}

.section-link:hover {
  color: var(--azul);
  opacity: 1;
}

/* =========================
           HEADER
        ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--borda);
  background: rgba(5, 8, 22, 0.78);
  backdrop-filter: blur(22px);
}

.navbar {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  letter-spacing: -1px;
  font-size: 24px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  box-shadow: 0 18px 40px rgba(0, 183, 255, 0.22);
}

.logo img {
  height: 60px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s;
  padding: 10px;
}

.menu a:hover {
  color: var(--azul);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-mini {
  display: flex;
  gap: 8px;
}

.social-mini a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--borda);
  color: #fff;
  transition: 0.3s;
}

.social-mini a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.social-mini a:hover {
  transform: translateY(-3px);
  background: rgba(0, 183, 255, 0.12);
  color: var(--azul);
}

.btn-live {
  position: relative;
  height: 46px;
  padding: 0 20px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  background: var(--gradient);
  box-shadow: 0 18px 35px rgba(255, 0, 110, 0.22);
  white-space: nowrap;
}

.btn-live::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.75);
  }

  100% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
  }
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--borda);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle i {
  width: 24px;
  height: 24px;
}

/* =========================
           HERO
        ========================= */

.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 30px 0 30px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: -260px;
  right: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 183, 255, 0.3), transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: -210px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.25),
    transparent 65%
  );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 17px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--borda);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  margin-bottom: 28px;
}

.hero-tag i {
  color: var(--azul);
}

.hero h1 {
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -4px;
  max-width: 850px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--azul), #fff, var(--roxo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
  max-width: 680px;
  margin-top: 26px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.btn-primary,
.btn-secondary {
  height: 60px;
  padding: 0 30px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 900;
  transition: 0.3s;
}

.btn-primary {
  background: var(--gradient);
  box-shadow: 0 22px 55px rgba(0, 183, 255, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--borda);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-4px);
}

.hero-stats {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 700px;
}

.hero-stat {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--borda);
}

.hero-stat strong {
  display: block;
  font-size: 28px;
  color: #fff;
  margin-bottom: 6px;
}

.hero-stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.45);
}

.hero-card img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 8, 22, 0.85), transparent 48%),
    linear-gradient(to right, rgba(5, 8, 22, 0.45), transparent 45%);
}

.floating-player {
  position: absolute;
  left: -35px;
  bottom: 35px;
  width: min(420px, 92%);
  z-index: 3;
  padding: 20px;
  border-radius: 28px;
  background: rgba(5, 8, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.player-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.player-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff6b6b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.player-status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff3b3b;
}

.player-title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 5px;
}

.player-desc {
  color: var(--muted);
  font-size: 14px;
}

.player-wave {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 38px;
}

.player-wave span {
  width: 5px;
  border-radius: 10px;
  background: linear-gradient(to top, var(--azul), var(--roxo));
  animation: wave 1s infinite ease-in-out;
}

.player-wave span:nth-child(1) {
  height: 14px;
  animation-delay: 0.1s;
}

.player-wave span:nth-child(2) {
  height: 28px;
  animation-delay: 0.2s;
}

.player-wave span:nth-child(3) {
  height: 20px;
  animation-delay: 0.3s;
}

.player-wave span:nth-child(4) {
  height: 34px;
  animation-delay: 0.4s;
}

.player-wave span:nth-child(5) {
  height: 18px;
  animation-delay: 0.5s;
}

.player-wave span:nth-child(6) {
  height: 30px;
  animation-delay: 0.6s;
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.55;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* =========================
           RESPONSIVO PARTE 1
        ========================= */

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 500px;
  }

  .floating-player {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 700px) {
  .navbar {
    height: 78px;
  }

  .logo {
    font-size: 19px;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .header-actions .btn-live {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 430px;
  }

  .floating-player {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
           NOTÍCIAS
        ========================= */

.news-section {
  padding-top: 90px;
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.9fr);
  gap: 28px;
}

.news-featured {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 38px;
  background: var(--glass);
  border: 1px solid var(--borda);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.news-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s;
}

.news-featured:hover img {
  transform: scale(1.05);
}

.news-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  background: linear-gradient(
    to top,
    rgba(5, 8, 22, 0.96) 0%,
    rgba(5, 8, 22, 0.68) 38%,
    transparent 72%
  );
}

.news-tag {
  width: fit-content;
  padding: 9px 16px;
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, var(--azul), var(--roxo));
  margin-bottom: 20px;
}

.news-featured h3 {
  max-width: 780px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.news-featured p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  font-size: 17px;
  margin-bottom: 24px;
}

.news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.news-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.news-meta i {
  width: 17px;
  height: 17px;
  color: var(--azul);
}

.news-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.news-small {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 18px;
  min-height: 150px;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--borda);
  transition: 0.35s;
  overflow: hidden;
}

.news-small:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 183, 255, 0.28);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.news-small img {
  width: 155px;
  height: 100%;
  min-height: 126px;
  border-radius: 20px;
  object-fit: cover;
}

.news-small-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-small-content span {
  color: var(--azul);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.news-small-content h4 {
  font-size: 18px;
  line-height: 1.38;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.news-small-content small {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1050px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-featured {
    min-height: 560px;
  }

  .news-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-small {
    grid-template-columns: 1fr;
  }

  .news-small img {
    width: 100%;
    height: 190px;
  }
}

@media (max-width: 700px) {
  .news-featured {
    min-height: 520px;
    border-radius: 28px;
  }

  .news-overlay {
    padding: 28px;
  }

  .news-side {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FALE CIENTISTA - CARDS
========================= */

.scientist-section {
  padding-top: 90px;
}

.scientist-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.scientist-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--borda);
  border-radius: 30px;
  overflow: hidden;
  transition: 0.35s;

  display: flex;
  flex-direction: column;
}

.scientist-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 183, 255, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.scientist-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.scientist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s;
}

.scientist-card:hover .scientist-thumb img {
  transform: scale(1.06);
}

.scientist-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 22, 0.75), transparent 60%);
}

.scientist-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--rosa), var(--laranja));
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scientist-play {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 16px 35px rgba(0, 183, 255, 0.25);
}

.scientist-play:hover {
  transform: scale(1.08);
}

.scientist-play i {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.scientist-info {
  padding: 26px;
  flex: 1;

  display: flex;
  flex-direction: column;
}

.scientist-category {
  display: inline-flex;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 100px;
  margin-bottom: 16px;
  color: var(--azul);
  background: rgba(0, 183, 255, 0.1);
  border: 1px solid rgba(0, 183, 255, 0.15);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scientist-info h3 {
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: -0.7px;
  margin-bottom: 14px;
}

.scientist-info p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 24px;
}

.scientist-link {
  height: 46px;
  padding: 0 18px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--borda);
  transition: 0.3s;

  margin-top: auto;
  width: fit-content;
}

.scientist-link:hover {
  background: linear-gradient(135deg, var(--azul), var(--roxo));
  border-color: transparent;
}

.scientist-link i {
  width: 17px;
  height: 17px;
}

@media (max-width: 1100px) {
  .scientist-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .scientist-cards {
    grid-template-columns: 1fr;
  }

  .scientist-thumb {
    height: 300px;
  }
}

/* =========================
   GRADE DE PROGRAMAÇÃO
========================= */
/* =========================
   GRADE DE PROGRAMAÇÃO
========================= */

.schedule-section {
  padding-top: 90px;
}

.schedule-now {
  position: relative;
  overflow: hidden;
  margin-bottom: 34px;
  padding: 34px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 0, 110, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.88));
  border: 1px solid var(--borda);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.schedule-now::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 183, 255, 0.25), transparent 65%);
  pointer-events: none;
}

.schedule-now-info {
  position: relative;
  z-index: 2;
}

.schedule-now-info span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ff6b6b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.schedule-now-info span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.8);
  animation: livePulseRed 1.5s infinite;
}

@keyframes livePulseRed {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.75);
  }

  100% {
    box-shadow: 0 0 0 14px rgba(255, 59, 59, 0);
  }
}

.schedule-now-info h3 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

.schedule-now-info p {
  color: var(--muted);
  font-weight: 700;
}

.schedule-now-button {
  position: relative;
  z-index: 2;
  height: 56px;
  padding: 0 26px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
  background: var(--gradient);
  box-shadow: 0 18px 35px rgba(255, 0, 110, 0.22);
  transition: 0.3s;
}

.schedule-now-button:hover {
  transform: translateY(-3px);
}

.schedule-now-button i {
  width: 19px;
  height: 19px;
}

.schedule-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.schedule-tabs button {
  height: 50px;
  padding: 0 22px;
  border-radius: 100px;
  border: 1px solid var(--borda);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s;
}

.schedule-tabs button:hover {
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(0, 183, 255, 0.28);
}

.schedule-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--azul), var(--azul2), var(--roxo));
  border-color: transparent;
  box-shadow: 0 16px 35px rgba(0, 183, 255, 0.16);
}

.schedule-slider-area {
  position: relative;
}

.scheduleSwiper {
  padding: 4px 4px 64px;
}

.scheduleSwiper .swiper-wrapper {
  align-items: stretch;
}

.scheduleSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.schedule-card {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--borda);
  transition: 0.35s;

  display: flex;
  flex-direction: column;
}

.schedule-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 183, 255, 0.3);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.schedule-thumb {
  position: relative;
  height: 230px;
  overflow: hidden;
  flex-shrink: 0;
}

.schedule-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s;
}

.schedule-card:hover .schedule-thumb img {
  transform: scale(1.06);
}

.schedule-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 22, 0.78), transparent 58%);
}

.schedule-time {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(5, 8, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.schedule-live {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 100px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--rosa), var(--laranja));
  box-shadow: 0 14px 30px rgba(255, 0, 110, 0.22);
}

.schedule-content {
  padding: 26px;
  flex: 1;

  display: flex;
  flex-direction: column;
}

.schedule-content h3 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.7px;
  margin-bottom: 13px;
}

.schedule-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 22px;
}

.schedule-host {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--borda);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;

  margin-top: auto;
}

.schedule-host i {
  width: 18px;
  height: 18px;
  color: var(--azul);
}

.schedule-arrow {
  position: absolute;
  top: 42%;
  z-index: 10;
  width: 52px;
  height: 52px;
  border: 1px solid var(--borda);
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 8, 22, 0.82);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.schedule-arrow:hover {
  background: linear-gradient(135deg, var(--azul), var(--roxo));
  border-color: transparent;
  transform: translateY(-3px);
}

.schedule-prev {
  left: -26px;
}

.schedule-next {
  right: -26px;
}

.schedule-arrow i {
  width: 25px;
  height: 25px;
}

.scheduleSwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

.scheduleSwiper .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--azul), var(--roxo));
}

@media (max-width: 1100px) {
  .schedule-prev {
    left: 8px;
  }

  .schedule-next {
    right: 8px;
  }
}

@media (max-width: 700px) {
  .schedule-now {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .schedule-now-button {
    width: 100%;
  }

  .schedule-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .schedule-tabs::-webkit-scrollbar {
    height: 4px;
  }

  .schedule-tabs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 100px;
  }

  .schedule-tabs button {
    flex: 0 0 auto;
  }

  .schedule-arrow {
    display: none;
  }

  .schedule-thumb {
    height: 260px;
  }
}

/* =========================
   NEWSLETTER
========================= */

.newsletter-section {
  padding-top: 90px;
}

.newsletter-box {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border-radius: 42px;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 183, 255, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(124, 58, 237, 0.2),
      transparent 38%
    ),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(8, 13, 34, 0.96));
  border: 1px solid var(--borda);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.newsletter-box::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -220px;
  top: -230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    transparent 65%
  );
  pointer-events: none;
}

.newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.newsletter-content h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.newsletter-content p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.newsletter-form {
  position: relative;
  z-index: 2;
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
}

.newsletter-input {
  height: 62px;
  padding: 0 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--borda);
}

.newsletter-input i {
  width: 20px;
  height: 20px;
  color: var(--azul);
  flex: 0 0 auto;
}

.newsletter-input input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 15px;
}

.newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.newsletter-form button {
  height: 62px;
  padding: 0 30px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient);
  box-shadow: 0 18px 40px rgba(0, 183, 255, 0.18);
  transition: 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-3px);
}

.newsletter-form button i {
  width: 18px;
  height: 18px;
}

/* =========================
   RODAPÉ
========================= */

.footer {
  margin-top: 90px;
  padding: 80px 0 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 183, 255, 0.12),
      transparent 35%
    ),
    #040612;
  border-top: 1px solid var(--borda);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr;
  gap: 50px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  letter-spacing: -1px;
  font-size: 24px;
  margin-bottom: 24px;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 430px;
}

.footer-social {
  margin-top: 28px;
  display: flex;
  gap: 10px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--borda);
  transition: 0.3s;
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: var(--azul);
  background: rgba(0, 183, 255, 0.11);
}

.footer-social i {
  width: 19px;
  height: 19px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 22px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 14px;
  color: var(--muted);
}

.footer-column a {
  color: var(--muted);
  transition: 0.3s;
}

.footer-column a:hover {
  color: var(--azul);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.footer-contact i {
  width: 18px;
  height: 18px;
  color: var(--azul);
  margin-top: 3px;
  flex: 0 0 auto;
}

.footer-bottom {
  margin-top: 70px;
  padding: 28px 0;
  border-top: 1px solid var(--borda);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: var(--azul);
}

.footer-bottom i {
  width: 17px;
  height: 17px;
}

/* =========================
   RESPONSIVO FINAL
========================= */

@media (max-width: 1000px) {
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  section {
    padding: 80px 0;
  }

  .newsletter-box {
    padding: 38px 26px;
    border-radius: 30px;
  }

  .newsletter-content h2 {
    letter-spacing: -1px;
  }

  .newsletter-input,
  .newsletter-form button {
    height: 58px;
  }

  .footer {
    margin-top: 60px;
    padding-top: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   MENU MOBILE LATERAL FINAL
========================= */

.navbar {
  position: relative;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--borda);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4001;
}

.menu-toggle i {
  width: 24px;
  height: 24px;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 3000;
}

.menu-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .social-mini {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex !important;
  }

  #menu.menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;

    width: min(390px, 88vw);
    height: 100vh;

    padding: 110px 26px 30px;

    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;

    background:
      radial-gradient(
        circle at top right,
        rgba(0, 183, 255, 0.16),
        transparent 35%
      ),
      linear-gradient(180deg, rgba(5, 8, 22, 0.98), rgba(8, 13, 34, 0.98));

    border-left: 1px solid var(--borda);
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(24px);

    transform: translateX(105%) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none;

    transition: transform 0.35s ease;

    z-index: 3500;
  }

  #menu.menu.open {
    transform: translateX(0) !important;
    pointer-events: auto;
  }

  #menu.menu a {
    width: 100%;
    padding: 18px;

    border-radius: 18px;

    color: #fff;

    font-size: 17px;
    font-weight: 900;

    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);

    transition: 0.3s;
  }

  #menu.menu a:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--azul), var(--azul2), var(--roxo));
    border-color: transparent;
    transform: translateX(-4px);
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 700px) {
  #menu.menu {
    width: 86vw;
    padding-top: 100px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    z-index: 9000;
  }

  .menu-backdrop {
    z-index: 8000 !important;
  }

  #menu.menu {
    z-index: 9500 !important;
  }

  .menu-toggle {
    z-index: 10000 !important;
  }
}

/* =========================
   CLIENTES / LOGOS
========================= */

.clients-section {
  padding-top: 90px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
}

.client-logo {
  width: 100%;
  height: 130px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 28px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--borda);

  overflow: hidden;
  transition: 0.35s;
}
.client-logo::before {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.12),
    transparent 45%
  );

  opacity: 0;

  transition: 0.35s;
}

.client-logo:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.client-logo:hover::before {
  opacity: 1;
}

.client-logo img {
  position: relative;
  z-index: 2;

  max-width: 150px;
  max-height: 62px;

  object-fit: contain;

  filter: brightness(0) invert(1);
  opacity: 0.82;

  transition: 0.35s;
}

.client-logo:hover img {
  opacity: 1;
  transform: scale(1.04);
}

@media (max-width: 1100px) {
  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .client-logo {
    height: 110px;
    padding: 22px;
    border-radius: 22px;
  }

  .client-logo img {
    max-width: 120px;
    max-height: 52px;
  }
}

/* =========================
   CONTATO DESTACADO
========================= */

.contact-highlight-section {
  padding-top: 90px;
}

.contact-highlight-box {
  position: relative;
  overflow: hidden;

  padding: 70px;

  border-radius: 42px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;

  background:
    radial-gradient(
      circle at top left,
      rgba(214, 79, 145, 0.34),
      transparent 38%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(79, 176, 185, 0.3),
      transparent 42%
    ),
    linear-gradient(135deg, rgba(214, 79, 145, 0.22), rgba(79, 176, 185, 0.18));

  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.contact-highlight-box::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -220px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.14),
    transparent 65%
  );
  pointer-events: none;
}

.contact-highlight-content {
  position: relative;
  z-index: 2;
}

.contact-highlight-content h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.contact-highlight-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-size: 17px;
}

.contact-highlight-actions {
  position: relative;
  z-index: 2;

  display: grid;
  gap: 18px;
}

.contact-card {
  min-height: 110px;

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 24px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);

  transition: 0.35s;
}

.contact-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.contact-icon {
  width: 58px;
  height: 58px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  flex: 0 0 auto;
}

.contact-icon img {
  filter: brightness(0) invert(1);
}

.contact-card.whatsapp .contact-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.contact-card.instagram .contact-icon {
  background: linear-gradient(135deg, #d64f91, #833ab4);
}

.contact-icon i {
  width: 28px;
  height: 28px;
}

.contact-info {
  flex: 1;
}

.contact-info small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.contact-info strong {
  display: block;
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.8px;
}

.contact-arrow {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.68);
  flex: 0 0 auto;
  transition: 0.3s;
}

.contact-card:hover .contact-arrow {
  color: #fff;
  transform: translate(4px, -4px);
}

@media (max-width: 1000px) {
  .contact-highlight-box {
    grid-template-columns: 1fr;
    padding: 52px;
  }
}

@media (max-width: 700px) {
  .contact-highlight-section {
    padding-top: 70px;
  }

  .contact-highlight-box {
    padding: 34px 24px;
    border-radius: 30px;
    gap: 34px;
  }

  .contact-highlight-content h2 {
    letter-spacing: -1px;
  }

  .contact-card {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }

  .contact-info strong {
    font-size: 21px;
  }
}
