/* ====================================================
   landing.css — Styles specific to landing.html
   Global styles (variables, navbar, modals, footer) are in style.css
   ==================================================== 
   landing.css — Styles specific to landing.html
   ==================================================== */

/* ── Body override for landing ── */
.landing-body {
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 60px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  width: 100%;
  align-items: start;
}

.hero-content {
  max-width: 540px;
  min-width: 0;
}

/* Coluna direita */
.hero-video-showcase {
  position: relative;
  width: 100%;
  min-width: 0;
  align-self: stretch;
}

/* O vídeo acompanha exatamente a altura da linha */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #0d0d0d;
  border: 1.5px solid rgba(255, 215, 0, 0.35);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(255, 215, 0, 0.15);
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-video-controls {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-video-btn {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  width: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Outfit', sans-serif;
}

.hero-video-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--gold-primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  animation: fadeSlideUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin: 0 0 20px;
  animation: fadeSlideUp 0.6s 0.1s ease both;
}

.hero-gradient {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 36px;
  font-weight: 300;
  animation: fadeSlideUp 0.6s 0.2s ease both;
}

.hero-subtitle strong {
  color: var(--text-main);
  font-weight: 600;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.6s 0.3s ease both;
}

.hero-cta-primary {
  width: auto;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--gold-gradient);
  color: #111;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
}

.hero-cta-primary.large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.hero-cta-primary:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.45);
}

.hero-cta-secondary {
  width: auto;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.25s ease;
  box-shadow: none;
}

.hero-cta-secondary:hover:not(:disabled) {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: none;
}

.hero-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #555;
  animation: fadeSlideUp 0.6s 0.4s ease both;
}

/* ── Floating mock clips ── */

@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTIONS ── */
.section-how,
.section-features,
.section-cta {
  width: 100%;
  padding: 80px 0;
}

.section-how {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-features {
  background: transparent;
}

.section-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 50px;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: #1a1a1a;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.feature-card:hover {
  border-color: rgba(255, 215, 0, 0.25);
  background: #161616;
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* CTA Banner */
.section-cta {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
  border-top: 1px solid var(--border-color);
}

.cta-inner {
  text-align: center;
}

.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 14px;
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 36px;
}

/* ── CLIENTS ── */

.section-clients {
  width: 100%;
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--border-color);
}

.client-card {
  display: block;
  text-decoration: none;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* Imagem do episódio */

.client-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #181818;
}

.client-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.client-card:hover .client-image {
  transform: scale(1.04);
}

/* Logo sobre a imagem */

.client-logo {
  position: absolute;
  left: 16px;
  bottom: 16px;

  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 8px;

  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Nome + link */

.client-info {
  padding: 18px 20px 20px;
}

.client-info h3 {
  margin: 0 0 5px;

  font-size: 1rem;
  font-weight: 700;

  color: var(--text-main);
}

.client-info span {
  font-size: 0.8rem;
  font-weight: 600;

  color: var(--gold-primary);

  transition: opacity 0.2s ease;
}

.client-card:hover .client-info span {
  opacity: 0.75;
}

/* ── CLIENTS CAROUSEL ── */

.clients-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.clients-track-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  width: 100%;
  /* esconde a scrollbar nativa */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.clients-track-wrapper::-webkit-scrollbar {
  display: none;
}

.clients-track {
  display: flex;
  gap: 24px;
}

.clients-track .client-card {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 por vez no desktop */
  min-width: 0;
  scroll-snap-align: start;
}

.carousel-arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.25);
  background: #161616;
  color: var(--gold-primary);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 2;
}

.carousel-arrow:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--gold-primary);
  transform: scale(1.08);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold-primary);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 860px) {
  .clients-track .client-card {
    flex: 0 0 100%; /* card cheio, sem sobra/offset no mobile */
  }
  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}

/* ── Responsive ── */
@media (max-width: 860px) {
  section {
    padding: 20px 0 !important;
  }
  .section-title,
  .section-label {
    text-align: center;
  }
  .hero {
    min-height: auto;
    padding: 40px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  
  .hero-content {
    max-width: 100%;
  }

  .hero-video-showcase {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .hero-video-wrapper {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  .hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .client-card {
    width: 80%;
    margin: 0 10%;
  }
  .client-logo {
    width: 25%;
    height: 25%;
  }

  .step-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 24px !important;
    position: relative !important;
    overflow: visible !important;
  }

  /* Remove aquele número flutuando quebrado na borda */
  .step-num {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    margin: 0 !important;
    font-size: 0.85rem !important;
    background: rgba(255, 215, 0, 0.1) !important;
    border: 1px solid rgba(255, 215, 0, 0.25) !important;
    color: var(--gold-primary) !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
  }

  /* Organiza o ícone e o título com respiro */
  .step-icon {
    font-size: 2rem !important;
    margin-bottom: 12px !important;
  }

  .step-card h3 {
    width: 100% !important;
    font-size: 1.1rem !important;
    margin: 0 0 8px 0 !important;
  }

  .step-card p {
    width: 100% !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 35% 65%; /* Esquerda (ícone+título) e Direita (parágrafo) */
    align-items: center;
    text-align: left;
    gap: 14px;
  }

  .feature-card .feature-icon {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 6px 0; /* Dá um respiro embaixo do ícone */
    font-size: 1.8rem;
    text-align: left;
  }

  .feature-card h3 {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    font-size: 0.95rem;
    margin-top: -15px;
  }

  .feature-card p {
    grid-column: 2;
    grid-row: 1 / span 2; /* O parágrafo ocupa a altura da coluna da direita inteira */
    margin: 0;
    font-size: 0.82rem;
  }

  .steps-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    text-align: center;
  }

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

/* ── GLOBAL NETWORK ── */
.section-network {
  width: 100%;
  padding: 80px 0;
  background: transparent;
  border-top: 1px solid var(--border-color);
}

.network-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin: -30px 0 40px;
  max-width: 620px;
  line-height: 1.6;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.network-card {
  display: block;
  text-decoration: none;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
}

.network-card.is-live {
  border-color: rgba(255, 215, 0, 0.25);
}

.network-card.is-soon {
  opacity: 0.72;
}

.network-card:hover {
  transform: translateY(-3px);
  background: #161616;
  border-color: rgba(255, 215, 0, 0.35);
}

.network-flag {
  font-size: 2.4rem;
  margin-bottom: 10px;
  line-height: 1;
}

.network-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 10px;
}

.network-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.status-live {
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.status-soon {
  color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
}

.network-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Responsive */
@media (max-width: 860px) {
  .network-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .network-subtitle {
    margin-top: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

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

/* ── 24/7 CLIPS CHANNEL ── */
.section-247 {
  width: 100%;
  padding: 80px 0;
  background: rgba(255, 215, 0, 0.02);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-247-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.section-247-image-wrapper {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s, transform 0.3s;
}

.section-247-image-wrapper:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.5);
}

.section-247-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.section-247-image-wrapper:hover .section-247-image {
  transform: scale(1.03);
}

.section-247-image-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.section-247-content {
  min-width: 0;
}

.section-247-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 30px;
  font-weight: 300;
}

@media (max-width: 860px) {
  .section-247-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .section-247-content {
    text-align: center;
  }
  .section-247-content .hero-cta-primary {
    width: 100%;
  }
}