/**
 * SEÇÃO SOBRE NÓS
 */

 .sobre-nos {
    position: relative;
    padding: 80px 20px;
    background: #0a0a0a;
    border-top: 4px solid #e6b800;
    border-bottom: 4px solid #e6b800;
    overflow: hidden;
  }
  
  .sobre-nos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(77, 77, 77, 0.03) 0%,
      rgba(77, 77, 77, 0.03) 25%,
      transparent 25%,
      transparent 50%,
      rgba(77, 77, 77, 0.03) 50%,
      rgba(77, 77, 77, 0.03) 75%,
      transparent 75%,
      transparent 100%
    );
    background-size: 30px 30px;
    z-index: 0;
  }
  
  .sobre-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .sobre-nos h2 {
    font-size: 2.5rem;
    color: #e6b800;
    text-align: center;
    margin-bottom: 40px;
    font-family: "Bebas Neue", sans-serif;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .sobre-nos h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e6b800, transparent);
  }
  
  .sobre-content {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  
  .sobre-text {
    flex: 1;
    background: rgba(20, 20, 20, 0.7);
    padding: 30px;
    border-radius: 8px;
    border-left: 3px solid #e6b800;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .sobre-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-left: 20px;
  }
  
  .sobre-text p::before {
    content: "»";
    position: absolute;
    left: 0;
    color: #e6b800;
    font-weight: bold;
  }
  
  .sobre-image {
    flex: 1;
    overflow: hidden;
    position: relative;
  }
  
  .sobre-image::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid rgba(230, 184, 0, 0.2);
    border-radius: 15px;
    z-index: -1;
    transition: all 0.3s;
  }
  
  .sobre-image:hover::before {
    border-color: rgba(230, 184, 0, 0.4);
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
  }
  
  .sobre-image img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid rgba(230, 184, 0, 0.3);
    transition: all 0.3s;
  }
  
  .sobre-image img:hover {
    border-color: rgba(230, 184, 0, 0.6);
  }