
.video-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 0;
  }
  
  .video-text {
    flex: 1;
    min-width: 280px;
    color: #fff;
  }
  
  .video-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .video-text p {
    font-size: 1.2rem;
  }
  
  .video-frame {
    flex: 1;
    min-width: 280px;
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .video-content.vertical-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .video-text h2 {
    font-size: 3.2rem;
    /* título maior */
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .video-text p {
    font-size: 1.6rem;
    /* descrição maior */
    text-align: center;
    font-weight: bold;
  }
  
  .video-frame {
    flex: 1;
    min-width: 320px;
    max-width: 800px;
    /* limite máximo, se quiser */
    width: 100%;
  }
  
  .video-container {
    padding-bottom: 56.25%;
    /* mantém proporção 16:9 */
    height: 0;
  }
  
  .video-content.vertical-layout {
    gap: 40px;
  }

  .video-container,
  .video-text h2,
  .video-text p {
    transition: all 0.3s ease;
  }

  .video-container {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 20px 8px var(--primary-color-checked);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    transform: translateY(0) scale(1);
  }
  
  .video-container:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 35px 14px var(--primary-color-checked);
  }

  @media screen and (max-width: 768px) {
    .video-content {
      flex-direction: column;
      gap: 20px;
    }
  
    .video-text h2 {
      font-size: 3rem;
    }
  
    .video-text p {
      font-size: 1.4rem;
    }
  
    .video-frame {
      max-width: 100%;
    }
  }