/* TÍTULO DA PÁGINA DE VÍDEOS */
.videos-header {
  text-align: center;
  padding: 60px 18px;
  background: linear-gradient(
    135deg,
    #cbd1e6,
    #dbe6f5,
    #c7e3f9
  );
  color: #0b2c4d;
}

.videos-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.videos-header p {
  font-size: 18px;
  opacity: 0.85;
}

/* CONTAINER */
.videos-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.video-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.video-card iframe {
  width: 100%;
  height: 230px;
  border-radius: 6px;
}

.video-card h3 {
  margin-top: 12px;
  font-size: 18px;
  color: #0a2c5d;
}

.video-card p {
  font-size: 14px;
  margin-top: 6px;
  color: #555;
}

/* BOTÃO VOLTAR */
.voltar-pagina {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

.voltar-pagina a {
  text-decoration: none;
  color: #0a2c5d;
  font-weight: 600;
}

.voltar-pagina a:hover {
  text-decoration: underline;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .videos-container {
    grid-template-columns: 1fr;
  }

  .video-card iframe {
    height: 210px;
  }
}

/* ===== MELHORIA VISUAL DOS VÍDEOS ===== */

.video-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.video-card iframe {
  width: 100%;
  height: 240px;
  border-radius: 10px;
}

.video-card h3 {
  margin-top: 16px;
  font-size: 19px;
  font-weight: 600;
  color: #0b2c4d;
}

.video-card p {
  font-size: 15px;
  margin-top: 6px;
  color: #555;
  line-height: 1.5;
}

.videos-bloco {
  margin-bottom: 70px;
}

.videos-subtitulo {
  font-size: 28px;
  color: #0b2c4d;
  margin-bottom: 10px;
}

.videos-descricao {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  max-width: 600px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}
.videos-subtitulo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  color: #0b2c4d;
  margin-bottom: 10px;
}

.videos-subtitulo i {
  color: #7ac9e2; /* azul claro igual identidade */
  font-size: 26px;
}
/* ===== CALL TO ACTION ===== */

.videos-cta {
  background: linear-gradient(135deg, #e6eef6, #f7f9fc);
  padding: 80px 20px;
  margin-top: 40px;
}

.cta-conteudo {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.cta-conteudo h2 {
  font-size: 32px;
  color: #0b2c4d;
  margin-bottom: 15px;
}

.cta-conteudo p {
  font-size: 17px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.6;
}

.cta-botao {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0c4a73;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-botao:hover {
  background: #093654;
  transform: translateY(-2px);
}
.video-card iframe {
  aspect-ratio: 16 / 9;
  height: auto;
}

