/**
 * SEÇÃO HERO (BANNER PRINCIPAL)
 */

 .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    padding-top: 80px;
    overflow: hidden;
    text-align: center;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 0;
    pointer-events: none;
  }
  
  .hero-text {
    max-width: 50%;
    text-align: center;
    position: relative;
    z-index: 10;
  }
  
  .hero-text h1 {
    font-size: 4.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: "Bebas Neue", sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    text-align: center;
    position: relative;
    z-index: 10;
  }
  
  .hero h1 span {
    color: #e6b800;
    font-family: "Bebas Neue", sans-serif;
  }
  
  .gold-text {
    color: #e6b800 !important;
    font-family: "Bebas Neue", sans-serif;
  }
  
  .speed-text {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
    font-family: "Roboto-Black", sans-serif;
    letter-spacing: 2px;
  }
  
  .cta-button {
    background-color: #e6b800;
    color: #111;
    padding: 15px 40px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    animation: pulse 2s infinite;
    font-family: "Roboto-Black", sans-serif;
    display: inline-block;
    position: relative;
    z-index: 10;
  }
  
  .cta-button:hover {
    background-color: #d39e00;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }