/* Seção de Vídeo - Estilo baseado no modelo visual */

.video-section {
  background-color: #ffffff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
}

.video-section-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Título principal */
.video-section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color2);
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

/* Container do vídeo */
.video-player-container {
  width: 100%;
  max-width: 560px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.video-player-container iframe {
  width: 100%;
  height: 315px;
  border: none;
  border-radius: 12px;
}

/* Seção CTA */
.video-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.video-cta-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color2);
  margin: 0;
}

.video-cta-description {
  font-size: 1.1rem;
  color: #666666;
  margin: 0;
  line-height: 1.4;
}

.video-cta-button {
  background-color: var(--color2);
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.video-cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.video-cta-button a {
  color: #ffffff;
  text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
  .video-section {
    padding: 40px 15px;
  }

  .video-section-container {
    gap: 30px;
  }

  .video-section-title {
    font-size: 1.8rem;
  }

  .video-cta-title {
    font-size: 1.5rem;
  }

  .video-cta-description {
    font-size: 1rem;
  }

  .video-player-container iframe {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .video-section-title {
    font-size: 1.5rem;
  }

  .video-cta-title {
    font-size: 1.3rem;
  }

  .video-player-container iframe {
    height: 200px;
  }

  .video-cta-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
