.hero-section {
    max-width: 1200px;
    padding: 40px 20px;
    margin: 0 auto;
    display: grid;
    margin-bottom: 60px;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    align-items: center;
  }

  .hero-section h1 {
    font-size: 4.5rem;
    line-height: 1.125;
    margin-bottom: 30px;
    margin-left: 80px;
    position: relative;
  }
  
  .hero-section h1::before {
    content: "";
    display: block;
    width: 130px;
    height: 100px;
    background: url("../assets/detalhe.svg") no-repeat center;
    position: absolute;
    top: -15px;
    left: -40px;
    z-index: -1;
  }
  
  .hero-section p {
    font-size: 1.5rem;
    margin-left: 80px;
    color: #525252;
  }
  
  @media (max-width: 1000px) {
    .hero-section h1 {
      font-size: 3rem;
    }
  }
  
  @media (max-width: 800px) {
    .hero-section {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .hero-section h1 {
      font-size: 2rem;
    }
    .hero-section h1::before {
      width: 30px;
      height: 10px;
      left: 0px;
    }
  }
  
  @media (max-width: 400px) {
    .hero-section {
      grid-template-columns: 1fr;
    }
    .hero-section img {
      display: none;
    }
  }
  