/*=========================================
  SEÇÃO 4 - VÍDEO "POR DENTRO"
=========================================*/
.video-inside-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  /* Elementos de fundo */
  .video-inside-section::before {
    content: '';
    position: absolute;
    left: -150px;
    top: -150px;
    width: 400px;
    height: 400px;
    background-color: rgba(241, 143, 28, 0.05);
    border-radius: 50%;
    z-index: 1;
  }
  
  .video-inside-section::after {
    content: '';
    position: absolute;
    right: -150px;
    bottom: -150px;
    width: 400px;
    height: 400px;
    background-color: rgba(10, 77, 64, 0.05);
    border-radius: 50%;
    z-index: 1;
  }
  
  /* Container principal */
  .video-inside-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
  }
  
  /* Título principal */
  .video-inside-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
    font-weight: 800;
    position: relative;
  }
  
  .video-inside-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 4px;
  }
  
  /* Container do vídeo com efeito spotlight */
  .video-feature-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
    background-color: var(--black);
    aspect-ratio: 16/9;
  }
  
  /* Efeito spotlight */
  .video-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 10%);
    z-index: 5;
    pointer-events: none;
  }
  
  /* Thumbnail do vídeo */
  .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .video-feature-container:hover .video-thumbnail {
    transform: scale(1.02);
  }
  
  /* Botão de play grande */
  .video-play-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(241, 143, 28, 0.5);
    transition: all 0.3s ease;
  }
  
  .video-play-large::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid var(--white);
    margin-left: 7px;
  }
  
  .video-play-large:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(241, 143, 28, 0.6);
  }
  
  /* Preview em loop (para o autoplay mudo) */
  .video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
  }
  
  .video-feature-container:hover .video-preview {
    opacity: 1;
  }
  
  /* Lista de benefícios do vídeo */
  .video-benefits-title {
    font-size: 24px;
    text-align: center;
    margin: 30px 0;
    color: var(--primary);
    font-weight: 700;
  }
  
  .video-benefits-list {
    max-width: 800px;
    margin: 0 auto 40px;
    list-style: none;
    padding: 0;
  }
  
  .video-benefits-list li {
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 18px;
    line-height: 1.5;
  }
  
  .video-benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 25px;
    height: 25px;
    background-color: var(--secondary);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
  }
  
  /* Botão de CTA principal */
  .video-inside-cta {
      background-color: var(--secondary);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(241, 143, 28, 0.3);
      width: fit-content;
      margin: 2rem auto 0;
      white-space: nowrap;
      display: flex;
  }
  
  .video-inside-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(241, 143, 28, 0.4);
    background-color: var(--secondary-light);
  }
  
  /* Responsividade */
  @media (max-width: 992px) {
    .video-inside-section {
      padding: 80px 0;
    }
    
    .video-inside-title {
      font-size: 32px;
    }
    
    .video-benefits-title {
      font-size: 22px;
    }
    
    .video-benefits-list li {
      font-size: 16px;
    }
  }
  
  @media (max-width: 768px) {
    .video-inside-section {
      padding: 60px 0;
    }
    
    .video-inside-title {
      font-size: 28px;
    }
    
    .video-feature-container {
      border-radius: 15px;
    }
    
    .video-play-large {
      width: 80px;
      height: 80px;
    }
    
    .video-play-large::after {
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
      border-left: 25px solid var(--white);
    }
    
    .video-benefits-list li {
      padding-left: 35px;
    }
    
    .video-benefits-list li::before {
      width: 22px;
      height: 22px;
      top: 13px;
    }
  }
  
  @media (max-width: 576px) {
    .video-inside-section {
      padding: 50px 0;
    }
    
    .video-inside-title {
      font-size: 24px;
      margin-bottom: 30px;
    }
    
    .video-inside-title::after {
      width: 60px;
      height: 3px;
      bottom: -10px;
    }
    
    .video-feature-container {
      border-radius: 10px;
      margin-bottom: 30px;
    }
    
    .video-play-large {
      width: 60px;
      height: 60px;
    }
    
    .video-play-large::after {
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      border-left: 20px solid var(--white);
    }
    
    .video-benefits-title {
      font-size: 20px;
      margin: 20px 0;
    }
    
    .video-benefits-list li {
      font-size: 15px;
      padding: 10px 0 10px 30px;
    }
    
    .video-benefits-list li::before {
      width: 20px;
      height: 20px;
      top: 11px;
    }
    
    .video-inside-cta {
      padding: 14px 20px;
      font-size: 15px;
      margin-top: 30px;
    }
  }