@font-face {
  font-family: 'StainStreet';
  src: url('../fontes/StainStreet_PERSONAL_USE_ONLY.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 60px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.navbar-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.navbar-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffcc00;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after {
  width: 100%;
}

.btn-buscar {
  color: #ffbf00;
  /* altera a cor do texto */
  background-color: #000000;
  /* cor de fundo do botão (opcional) */
  border-radius: 8px;
  /* arredonda as bordas */
  border: 2px solid #ffbf00;
  cursor: pointer;
  /* deixa o cursor em formato de mão */
}

body {
  padding-top: 80px;
}



/* Logo NOPIC */
.navbar-brand {
  width: 05%;
  height: 05%;
}

/* Overlay preto translúcido */
.carousel-item::before {
  position: relative;
  z-index: 1;
}

/* Texto acima do overlay */
.carousel-caption {
  position: absolute;
  z-index: 2;
  text-align: center;
}

/* Container centralizado */
.scroll-indicator {

  display: flex;
  justify-content: center;
}

/* Ícone de mouse estilizado */
.mouse-icon {

  width: 30px;
  height: 50px;
  border: 2px solid #ffc107;
  /* amarelo */
  border-radius: 20px;
  position: relative;
}

/* Bolinha dentro do mouse */
.mouse-icon::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #ffc107;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 1.5s infinite;
}

/* Animação de pulo */
@keyframes scrollBounce {
  0% {
    top: 10px;
    opacity: 1;
  }

  50% {
    top: 25px;
    opacity: 0.5;
  }

  100% {
    top: 10px;
    opacity: 1;
  }
}

.nav-link {
  color: aliceblue;
}


.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
  padding: 60px 40px 30px;
  border-top: 2px solid #ffcc00;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-section h4 {
  color: #ffcc00;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-section p {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcc00;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid #ffcc00;
  border-radius: 50%;
  color: #ffcc00;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #ffcc00;
  color: #000;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.footer-bottom p {
  font-size: 13px;
  color: #999;
  margin: 8px 0;
}

.footer-bottom p strong {
  color: #ffcc00;
}

/* Base comum */
.zebra-marcas {
  width: 100%;
  background: repeating-linear-gradient(45deg,
      #FFD400,
      #FFD400 12px,
      #000 12px,
      #000 24px);
}



/* Keyframes diferentes */
@keyframes zebra-enter-left {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes zebra-enter-right {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

/* =============================
       PARTNERS SECTION
    ============================== */
.partners-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.partners-title {
  color: #FFD400;
  margin-bottom: 4rem;
  text-align: center;
}

/* =============================
       CARROSSEL INFINITO
    ============================== */
.partners-carousel {
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--marquee-distance, 1920px)));
  }
}

.partner-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
}

.partner-item:hover {
  color: #FFD400;
}


/* =============================
       FADE LATERAL
    ============================== */
.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 120px;
  pointer-events: none;
  z-index: 5;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

/* RESET BÁSICO */
body {
  margin: 0;
  background-color: #0f0f0f;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

/* SECTION */
.nopic-about {
  background: linear-gradient(180deg, #2b2a2a, #000000);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* ZEBRA */
.zebra-stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: repeating-linear-gradient(45deg,
      #FFD400,
      #FFD400 12px,
      #000 12px,
      #000 24px);
  z-index: 10;
  animation: zebra-enter-left 1.2s ease-out;
}

/* TÍTULO */
.section-title {
  text-align: center;
  font-weight: 1000;
  letter-spacing: 0.3em;
  margin-bottom: 80px;
  font-size: 1.8rem;
}

/* TÍTULO PROJETO */
.section-project {
  text-align: center;
  font-weight: 1000;
  letter-spacing: 0.3em;
  margin-bottom: 80px;
  font-size: 1.8rem;
  color: #000;
}

/* GRID */
.nopic-card {
  background-color: #2a2a2a;
  padding: 32px;
  border-left: 4px solid #FFD400;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nopic-card:hover {
  transform: translateY(6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.nopic-card h3 {
  color: #FFD400;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.nopic-card p {
  color: #d1d5db;
  margin: 0;
  line-height: 1.6;
}

/* TEXTO FINAL */
.nopic-description {
  margin-top: 80px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e5e7eb;
}

.highlight {
  color: #FFD400;
  font-weight: 600;
}

/* ==================== GRID DE CARDS PRINCIPAIS ==================== */
.nopic-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  /* 🔥 MAIS ESPAÇO */
  margin: 0 auto;
  padding: 0 40px;
  /* 🔥 RESPIRO LATERAL */
}

.nopic-card-main {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 25px 20px;
  /* 🔥 MENOR = MAIS LARGURA VISUAL */
  border: 2px solid rgba(255, 212, 0, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  width: 100%;
  /* 🔥 GARANTE QUE EXPANDA */
  min-height: 260px;
  /* 🔥 MENOS ALTURA DESNECESSÁRIA */

  position: relative;
  overflow: hidden;
}

.nopic-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.nopic-card-main:hover {
  border-color: #FFD400;
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 212, 0, 0.15);
}

.nopic-card-main:hover::before {
  left: 100%;
}

.card-header {
  font-size: 48px;
  color: #FFD400;
  margin-bottom: 20px;
  line-height: 1;
}

.nopic-card-main h5 {
  color: #FFD400;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nopic-card-main p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: auto;
  margin-top: 12px;
}

.card-link {
  color: #FFD400;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.card-link:hover {
  gap: 12px;
  color: #ffd700;
}

.card-link i {
  transition: transform 0.3s ease;
}

.nopic-card-main:hover .card-link i {
  transform: translateX(4px);
}

body {
  margin: 0;
  background: #0f0f0f;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

/* =============================
       SECTION BASE
    ============================== */
.projects-section {
  background: linear-gradient(180deg, #ffd400, #000000);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* =============================
       ZEBRA DIAGONAL 
    ============================== */
.zebra-diagonal {
  position: absolute;
  top: 80px;
  right: -25%;
  width: 150%;
  height: 96px;
  background: repeating-linear-gradient(-45deg,
      #FFD400,
      #FFD400 14px,
      #000 14px,
      #000 28px);
  opacity: 0.18;
  transform: rotate(-12deg);
  z-index: 1;
}

/* =============================
       TÍTULO
    ============================== */
.section-title {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-bottom: 80px;
  font-size: 1.8rem;
  z-index: 2;
  position: relative;
}

/* =============================
       CARD
    ============================== */
.project-card {
  position: relative;
  background: #000;
  padding: 32px;
  border-top: 4px solid #FFD400;
  transition: all 0.3s ease;
  height: 100%;
}

.project-card:hover {
  background: #2a2a2a;
  transform: translateY(-8px);
}

/* ÍCONE */
.project-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #FFD400;
  color: #000;
  margin-bottom: 24px;
  font-size: 28px;
  transition: all 0.3s ease;
}

.project-card:hover .project-icon {
  background: #000;
  color: #FFD400;
  border: 1px solid #FFD400;
}

/* TEXTO */
.project-card h3 {
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.project-card p {
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

/* DETALHE INDUSTRIAL */
.industrial-lines {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 64px;
  height: 64px;
  opacity: 0.15;
}

.industrial-lines::before,
.industrial-lines::after {
  content: '';
  position: absolute;
  background: #FFD400;
}

.industrial-lines::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.industrial-lines::after {
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;

}

/* Remove estilos padrão do Bootstrap */
.custom-tabs .nav-link {
  border: none;
  background: transparent;
}

/* Card */
.tab-card {
  position: relative;
  width: 100%;
  text-align: left;
  padding: 24px 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, #dd0000, #ff0000);
  color: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Barra lateral */
.tab-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #ffeb3b, #ff9800);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Título */
.tab-card h5 {
  color: #ffeb3b;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

/* Texto */
.tab-card p {
  color: #bfbfbf;
  font-size: 14px;
  margin: 0;
}

/* Hover */
.tab-card:hover {
  background: linear-gradient(180deg, #111, #000);
  transform: translateY(-2px);
}

.tab-card:hover::before {
  opacity: 1;
}

/* Active (selecionado) */
.tab-card.active {
  background: linear-gradient(180deg, #111, #000);
}

.tab-card.active::before {
  opacity: 1;
}

/* Remove azul padrão do Bootstrap */
.nav-tabs .nav-link.active {
  background: none !important;
}

/* Reset botão */
.project-card-btn {
  all: unset;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  padding: 32px 28px;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.35s ease;
  margin: 0 20spx;
  /* separação horizontal */

}

/* Linha superior amarela */
.project-card-btn .top-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #ffd400;
}

/* Quadrado amarelo (ícone visual) */
.project-icon-box {
  width: 44px;
  height: 44px;
  background: #ffd400;
  margin-bottom: 6px;
}

/* Título */
.project-card-btn h3 {
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Texto */
.project-card-btn p {
  color: #bfbfbf;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 90%;
}

/* Detalhe industrial no canto */
.project-card-btn .industrial-corner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  border-right: 1px solid #ffd400;
  border-bottom: 1px solid #ffd400;
  opacity: 0.4;
}

/* Hover */
.project-card-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgb(255, 217, 0);
}

/* Hover reforçando o amarelo */
.project-card-btn:hover .industrial-corner {
  opacity: 1;
}

/* Acessibilidade */
.project-card-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.project-card-wrapper {
  padding: 50px;
  /* ✅ respiro real entre os cards */
  height: 100%;
}

.project-card-btn {
  width: 100%;
  /* ✅ ESSENCIAL */
  height: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 36px;
  text-align: left;
  border-radius: 8px;
  position: relative;
  display: block;
}

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

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url("../src/Imagems/Capa/fundo_podcast.webp");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: zoomBackground 8s ease-in-out infinite;

}

/* ==================== MOBILE ==================== */
@media (max-width: 768px) {
  .hero {
    background-image: url("../src/mobili/2.webp");
  }
}

/* ==================== ANIMAÇÃO DE ZOOM ==================== */
@keyframes zoomBackground {
  0% {
    background-size: 110%;
  }

  50% {
    background-size: 110%;
  }

  100% {
    background-size: 110%;
  }
}

/* OVERLAY ESCURO */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 30%, transparent 50%);
  z-index: 1;
}

/* HERO CONTAINER */
.hero-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD WRAPPER COM PERSPECTIVA */
.card-wrapper {
  position: relative;
  width: 100%;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD 3D RESPONSIVO */
.card-3d {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 24px;
  border: 2px solid rgba(255, 212, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow:
    0 0 20px rgba(255, 212, 0, 0.1),
    0 25px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
}

/* IMAGEM DO CARD */
.card-3d img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* EFEITO 3D NO HOVER */
.card-wrapper:hover .card-3d {
  transform: rotateY(6deg) rotateX(4deg) translateZ(30px);
  box-shadow:
    0 0 40px rgba(255, 212, 0, 0.2),
    0 40px 80px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ÍCONE FLUTUANTE - RESPONSIVO NOS 4 CANTOS */
.float-icon {
  position: absolute;
  width: clamp(80px, 15%, 140px);
  height: auto;
  aspect-ratio: 1;
  z-index: 10;
  bottom: -30px;
  right: -30px;
  opacity: 0.8;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  filter: drop-shadow(0 8px 24px rgba(255, 212, 0, 0.3));
}

/* ÍCONE REAGE AO HOVER */
.card-wrapper:hover .float-icon {
  transform: scale(1.1) translateY(-10px);
  opacity: 1;
  filter: drop-shadow(0 12px 32px rgba(255, 212, 0, 0.5));
}

/* ===== NOPIC STATION CARD ===== */
.nopic-station-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
}

.station-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 191, 0, 0.2);
}

.station-content {
  flex: 1;
}

.station-title {
  color: #ffbf00;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.station-description {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.station-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffbf00;
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.station-link:hover {
  background: #e6a800;
  transform: translateY(-2px);
}

.station-image img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== ENTREVISTADORES SECTION ===== */
.interviewers-section {
  padding: 60px 0;
  background: #000;
}

.interviewers-section .section-title {
  color: #facc15;
  margin-bottom: 40px;
  font-size: 50px;
  font-family: 'StainStreet', sans-serif;
  font-weight: normal;
  text-align: center;
}

.interviewers-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.interviewer-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #000;
  border: 2px solid #ffbf00;
  border-radius: 20px;
  padding: 20px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* slight skew to mimic angled card */
  transform: skewY(-1deg);
}

.interviewer-card:hover {
  transform: skewY(-1deg) translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 191, 0, 0.1);
}

.interviewer-photo {
  flex-shrink: 0;
  width: 160px;
  transform: rotate(-3deg);
}

.interviewer-photo img {
  width: 100%;
  border-radius: 15px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.interviewer-photo:hover img {
  filter: grayscale(0%);
}

/* no divider needed in new layout */

.interviewer-info {
  flex: 1;
  color: #fff;
}

.interviewer-info h4 {
  color: #fff;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.interviewer-info p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 12px;
}

.interviewer-social {
  display: flex;
  gap: 15px;
}

.interviewer-social .social-link {
  color: #ffbf00;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.interviewer-social .social-link:hover {
  color: #fff;
}

/* ==================== TABLET RESPONSIVO ==================== */
@media (max-width: 1024px) {
  .hero {
    min-height: 90vh;
  }

  .hero-container {
    width: 92%;
  }

  .card-3d {
    max-width: 800px;
    padding: 16px;
    border-radius: 20px;
  }

  .float-icon {
    width: clamp(80px, 14%, 120px);
    bottom: -25px;
    right: -25px;
  }

  .card-wrapper:hover .card-3d {
    transform: rotateY(4deg) rotateX(2deg) translateZ(20px);
  }

  /* NOPIC Station Card */
  .station-card {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 30px;
  }

  .station-title {
    font-size: 2rem;
  }

  .station-image img {
    width: 250px;
  }

  /* Interviewers */
  .interviewer-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px;
    transform: none;
    /* cancel skew on mobile */
  }

  .interviewer-photo {
    transform: none;
    width: 140px;
  }

  .interviewer-photo img {
    width: 100%;
    height: auto;
    max-width: 140px;
  }

  .interviewer-info h4 {
    font-size: 1.6rem;
  }

}

/* ==================== TABLET RESPONSIVO ==================== */
@media (max-width: 1024px) {

  /* Cards Grid Responsivo */
  .nopic-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .nopic-card-main {
    padding: 30px 25px;
  }

  .nopic-card-main h5 {
    font-size: 1.1rem;
  }

  .nopic-card-main p {
    font-size: 13px;
  }
}

/* ===============================
   AJUSTES MOBILE (até 768px)
=============================== */
@media (max-width: 768px) {

  /* ---------- NAVBAR ---------- */
  .navbar-brand {
    width: 80px;
  }

  .navbar .form-control {
    width: 100%;
    margin-bottom: 10px;
  }

  /* ---------- HERO / CARD 3D ---------- */
  .hero {
    min-height: 80vh;
    padding: 40px 0;
  }

  .hero-container {
    width: 95%;
  }

  .card-3d {
    max-width: 100%;
    aspect-ratio: 16/9;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 212, 0, 0.15);
  }

  .float-icon {
    width: clamp(60px, 16%, 100px);
    bottom: -20px;
    right: -20px;
  }

  /* Remove efeito 3D pesado no mobile */
  .card-wrapper:hover .card-3d {
    transform: scale(1.02);
  }

  .card-wrapper:hover .float-icon {
    transform: scale(1.08) translateY(-8px);
  }

  /* ---------- ZEBRAS ---------- */
  .zebra-marcas,
  .zebra-stripe {
    height: 16px;
  }

  /* ---------- TÍTULOS ---------- */
  .section-title,
  .section-project {
    font-size: 1.2rem;
    margin-bottom: 40px;
    letter-spacing: 0.15em;
  }

  /* ---------- TABS (Equipe / etc) ---------- */
  .custom-tabs {
    flex-direction: column;
    gap: 16px;
  }

  /* ---------- CARDS PROJETOS ---------- */
  .project-card-wrapper {
    padding: 16px;
  }

  .project-card-btn {
    padding: 20px;
  }

  .project-card-btn h3 {
    font-size: 16px;
  }

  .project-card-btn p {
    font-size: 13px;
  }

  /* ---------- PARTNERS ---------- */
  .partners-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .partner-item {
    font-size: 1.4rem;
  }

  /* ---------- FOOTER ---------- */
  .footer {
    padding: 40px 20px;
  }

  .footer-content {
    gap: 20px;
  }

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

  .footer-links {
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  /* Cards Grid Responsivo */
  .nopic-cards-grid {
    grid-template-columns: 1fr;
  }

  .nopic-card-main {
    padding: 30px 20px;
  }

  .card-header {
    font-size: 36px;
  }

  .nopic-card-main h5 {
    font-size: 1.1rem;
  }

  /* NOPIC Station Card */
  .station-card {
    padding: 20px;
  }

  .station-title {
    font-size: 1.8rem;
  }

  .station-description {
    font-size: 1rem;
  }

  .station-image img {
    width: 200px;
  }

  /* Interviewers */
  .interviewers-section .section-title {
    font-size: 1.8rem;
  }

  .interviewer-card {
    padding: 20px;
  }

  .interviewer-photo img {
    width: 100px;
    height: 100px;
  }

  .interviewer-info h4 {
    font-size: 1.3rem;
  }

}

.industrial-stripes {
  background: repeating-linear-gradient(45deg,
      #FFD400,
      #FFD400 12px,
      #000 80px,
      #000 80px);
}

/* ==================== CARROSSEL RESPONSIVO ==================== */
/* Agora usando <picture> element para responsividade nativa */

/* ==================== RESPONSIVIDADE GERAL PARA TODAS AS PÁGINAS ==================== */
@media (max-width: 768px) {

  /* Container principal */
  .container,
  .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Navbar mobile - garantir que funcione */
  .navbar {
    padding: 12px 15px !important;
    flex-wrap: wrap !important;
  }

  .navbar-links {
    display: none !important;
  }

  .hamburger {
    display: block !important;
    cursor: pointer !important;
    padding: 8px !important;
    border-radius: 4px !important;
    transition: background-color 0.3s ease !important;
  }

  .hamburger:hover {
    background-color: rgba(255, 204, 0, 0.1) !important;
  }

  .hamburger span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background-color: #fff !important;
    margin: 5px 0 !important;
    transition: 0.3s !important;
    border-radius: 2px !important;
  }



  /* Cards responsivos */
  .nopic-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 10px !important;
  }

  .nopic-card-main {
    padding: 25px 20px !important;
    margin: 0 auto !important;
    max-width: 100% !important;
  }

  .card-header {
    font-size: 36px !important;
  }

  /* Textos responsivos */
  .section-title {
    font-size: 1.4rem !important;
    margin-bottom: 40px !important;
    padding: 0 10px !important;
  }

  /* Botões responsivos */
  .btn,
  button,
  .card-link {
    width: 100% !important;
    text-align: center !important;
    margin: 10px 0 !important;
  }

  /* Imagens responsivas */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Footer responsivo */
  .footer {
    padding: 30px 15px !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .footer-section {
    text-align: center !important;
  }

  /* Modal responsivo */
  .modal-content,
  .modal-agendamento {
    width: 95% !important;
    max-width: none !important;
    margin: 10px !important;
  }

  /* Formulários responsivos */
  input,
  textarea,
  select {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Grid responsivo geral */
  .grid,
  .grid-cols-12,
  .grid-cols-4,
  .grid-cols-3,
  .grid-cols-2 {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  /* Flex responsivo */
  .flex {
    flex-direction: column !important;
  }

  .flex-wrap {
    flex-wrap: wrap !important;
  }

  /* Espaçamentos responsivos */
  .p-4,
  .px-4,
  .py-4 {
    padding: 15px !important;
  }

  .m-4,
  .mx-4,
  .my-4 {
    margin: 15px !important;
  }

  /* Textos grandes */
  .text-5xl,
  .text-4xl,
  .text-3xl {
    font-size: 2rem !important;
  }

  .text-2xl,
  .text-xl {
    font-size: 1.5rem !important;
  }

  /* Larguras fixas - sobrescrever */
  [style*="width:"],
  [style*="min-width:"],
  [style*="max-width:"] {
    width: 100% !important;
    min-width: auto !important;
    max-width: 100% !important;
  }
}

/* ==================== CORREÇÃO CARROSSEL ==================== */

/* Remove zoom e cortes estranhos */
.carousel-item img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block;
}

/* Ajuste do container */
.carousel-inner {
  width: 100%;
  overflow: hidden;
}

/* ==================== CORREÇÃO DAS SETAS ==================== */

.carousel-control-prev,
.carousel-control-next {
  width: 6% !important;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: 15px !important;
}

.carousel-control-next {
  right: 15px !important;
}

/* Ícones mais visíveis */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 70% 70%;
}

/* ==================== ESPAÇAMENTO DO CARROSSEL ==================== */

.carousel {
  margin-top: -10px;
}

/* ==================== MOBILE ==================== */

@media (max-width: 768px) {
  .carousel-item img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 10% !important;
  }

  .carousel-control-prev {
    left: 5px !important;
  }

  .carousel-control-next {
    right: 5px !important;
  }
}

/* ==================== Torneio  ==================== */

/* ===== HERO TORNEIO - Isolado ===== */
    .hero-torneio {
      position: relative !important;
      width: 100% !important;
      min-height: 100vh !important;
      background-image: url('../src/Imagems/capa-torneio.webp') !important; /* ← Imagem Desktop */
      background-size: cover !important;
      background-position: center !important;
      display: flex !important;
      align-items: flex-end !important;
      justify-content: flex-end !important;
      padding-bottom: 12vh !important;
      padding-right: 8% !important;
      overflow: hidden !important;
      box-sizing: border-box !important;
    }

    .hero-torneio::after {
      content: '' !important;
      position: absolute !important;
      bottom: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 40% !important;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.9)) !important;
      z-index: 1 !important;
    }

    .content-torneio {
      position: relative !important;
      z-index: 2 !important;
      text-align: center !important;
      max-width: 420px !important;
    }

    .btn-torneio {
      display: inline-block !important;
      padding: 18px 48px !important;
      font-size: 1.35rem !important;
      font-weight: 800 !important;
      text-transform: uppercase !important;
      letter-spacing: 1.5px !important;
      background-color: #D4A017 !important;
      color: #000 !important;
      text-decoration: none !important;
      border-radius: 50px !important;
      box-shadow: 0 12px 25px rgba(212, 160, 23, 0.35) !important;
      transition: all 0.3s ease !important;
      border: 3px solid #111 !important;
    }

    .btn-torneio:hover {
      background-color: #000 !important;
      color: #D4A017 !important;
      transform: scale(1.05) translateY(-4px) !important;
      box-shadow: 0 18px 35px rgba(212, 160, 23, 0.4) !important;
    }

    /* ==================== MOBILE ==================== */
    @media (max-width: 468px) {
      .hero-torneio {
        background-image: url('../src/Imagems/capa-torneio-mobile.webp') !important; /* ← Imagem Mobile */
        justify-content: center !important;
        padding-right: 0 !important;
        padding-bottom: 10vh !important;
      }
      
      .btn-torneio {
        padding: 16px 40px !important;
        font-size: 1.2rem !important;
      }
    }