/**
 * SEÇÃO DE CONTATO
 */

 .contato {
    position: relative;
    padding: 60px 20px 80px;
    background: #0a0a0a;
    border-top: 4px solid #e6b800;
    border-bottom: 4px solid #e6b800;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .contato::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;
  }
  
  .contato-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
  }
  
  .contato-texto {
    flex: 1;
    background: rgba(20, 20, 20, 0.8);
    padding: 40px;
    border-radius: 10px;
    border-left: 3px solid #e6b800;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
  }
  
  .contato-texto::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
      transparent, 
      #e6b800, 
      transparent);
    opacity: 0.7;
  }
  
  .contato-texto h2 {
    font-size: 2.5rem;
    color: #e6b800;
    margin-bottom: 20px;
    font-family: "Bebas Neue", sans-serif;
  }
  
  .contato-texto h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(230, 184, 0, 0.5),
      transparent
    );
  }
  
  .contato-texto p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-left: 25px;
  }
  
  .contato-texto p::before {
    content: "◉";
    position: absolute;
    left: 0;
    color: #e6b800;
    font-size: 0.8rem;
    top: 7px;
  }
  
  .contato-imagem {
    flex: 1;
    position: relative;
    text-align: center;
  }
  
  .contato-imagem::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid rgba(230, 184, 0, 0.2);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s;
  }
  
  .contato-imagem:hover::before {
    border-color: rgba(230, 184, 0, 0.4);
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
  }
  
  .contato-imagem img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 50%;
    border: 3px solid rgba(230, 184, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
  }
  
  .contato-imagem img:hover {
    border-color: rgba(230, 184, 0, 0.6);
    box-shadow: 0 15px 40px rgba(230, 184, 0, 0.2);
  }
  
  .contato-imagem p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-top: 20px;
    font-family: "";
    letter-spacing: 1px;
  }
  
  .whatsapp-button {
    font-size: 1.1rem;
    padding: 15px 35px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .whatsapp-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #25d366, #1da851);
    z-index: -1;
    transition: opacity 0.3s;
    opacity: 1;
  }
  
  .whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .whatsapp-button:hover::before {
    opacity: 0.9;
  }
  
  .whatsapp-button i {
    font-size: 1.3rem;
  }