/* Default Color File  */



:root {
    --theme-color: #EF2A04;
    --video-banner-height: 100vh;
  --video-banner-overlay-color: rgba(0, 0, 0, 0.3);
  --video-banner-text-color: #ffffff;
  --video-banner-padding: 2rem;
}

.video-banner {
    position: relative;
    width: 100%;
    height: var(--video-banner-height);
    overflow: hidden;
  }
  
  .video-banner__container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .video-banner__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .video-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--video-banner-overlay-color);
  }
  
  .video-banner__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  /* Adiciona centralização horizontal */
    padding: var(--video-banner-padding);
    z-index: 2;
  }
  
  .video-banner__title {
    font-size: 2.5rem;
    color: var(--video-banner-text-color);
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  
  /* Responsividade para telas menores */
  @media (max-width: 768px) {
    .video-banner__title {
      font-size: 1.8rem;
    }
  }











