* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.contacto {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FBFFE4;
    padding: 50px;
  }
  
  .contacto h1 {
    width: 100%;
    text-align: center;
    color: #3D8D7A;
    margin-bottom: 15px;
  }
  
  .sectionForm{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    margin-bottom: 2px;
    font-weight: 400;
    color:#3D8D7A;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #3D8D7A;
    border-radius: 5px;
    font-size: 16px;
  }
  
  .form-group textarea {
    resize: none;
    
  }
  
  .error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
  }
  
  .btnForm{
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #3D8D7A;
    color: #FBFFE4;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .btnForm:hover {
    background-color: #A3D1C6;
  }


  .infoForm{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .infoForm h2{
    color: #3D8D7A;
    font-size: 25px;
    width: 70%;
  }

  .infoForm p{
    margin: 10px;
    font-size: 20px;
    color: #3D8D7A;
    width: 70%;
  }

  .infoForm img{
    max-width: 300px;
    
  }


  .form{
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #3D8D7A;
    width: 75%;
  }

  .form h2{
    color: #3D8D7A;
  }

  .form-social {
    margin-bottom: 50px;
    display: flex;
    gap: 15px;
  }
  
  .form-social a {
    color: #3D8D7A;
    font-size: 30px;
    transition: color 0.3s;
  }
  
  .form-social a:hover {
    color: #B3D8A8;
  }

  .tituloSocial{
    color: #3D8D7A;
    font-size: 20px
    
  }
  

  @media screen and (max-width: 768px) {
    .contacto{
        flex-direction: column;
    }

    .form{
        width: 100%;
        margin: 0;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 2px solid #3D8D7A;
      border-radius: 5px;
      font-size: 16px;
    }


    .infoForm{
        width: 90%;
    }

    .infoForm h2,p{
        width: auto;
        color: #3D8D7A;
    }

    .sectionForm{
      width: 75%;
    }

  }