.destaque_match-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
  }
  
  .destaque_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .destaque_overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 80%, #333 100%);
    pointer-events: none;
  }
  
  .destaque_content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
  }
  
  .destaque_content h1 {
    font-size: 4.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 300;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.7);
  }
  
  @media (max-width: 768px) {
    .destaque_content h1 {
      font-size: 3rem;
      margin-bottom: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .destaque_content h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }
  }
  
  .destaque_watch-button {
    background-color: #E35D25;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .destaque_watch-button:hover {
    background-color: #d44f1f;
  }
  