    body {
      background-image: url("./img/fondo.png");
      background-repeat: repeat;
      margin-top: 15px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;     
      color: #2e3339;
      display: flex;
      justify-content: center;
      font-size: 1rem;
      margin-left: 2%;
      margin-right: 2%;
    
      
    }

    .content{           
        background-color: white;   
        border-radius: 5px;        

    }
    header {   
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color:#2e3339 ;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);       
      border-radius: 5px;
     
    }

    header h1 {
      font-size: 1.5rem;
      color: #fbc82e;
    }

    .logo img{
        width: 180px;
    }

    .tagline{
        color: #2e3339;
    }
    main {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: calc(100vh - 70px);
      /* align-items: center; */
      padding: 2rem;
      gap: 2rem;
    }

    .con_info{    
      margin: 2%;
    }

    .img_info{
      width: 70%;
    }
    .info {
      padding-top: 2rem;
      /* max-width: 500px; */
    }

    .info h2 {
      font-size: 2.2rem;
      color: #2e3339;
      margin-bottom: 1rem;
    }

    .info p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .formulario {
      background: #fff;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .formulario h3 {
      margin-bottom: 1rem;
      color: #fbc82e;
      font-size: 1.5rem;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    input, select, textarea {
      padding: 0.8rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      width: 95%;
    }

    button {
      padding: 1rem;
      border: none;
      border-radius: 8px;
      background: #fbc82e;
      color: white;
      font-size: 1rem;
      cursor: pointer;
     
    }

    button:hover {
      background: #f4b404;
    }

    .botonera{
      text-align: end;
    }
    
  
    footer{     
      padding: 1rem 1rem;
      background-color:#2e3339 ;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);       
      border-radius: 5px;
      color: white;
      text-align: center;
    }

    .redes{    
    display: inline-flex;
     
      
   }

.redes img{
    margin-right: 20px;
    width: 30px;
    height: 30px;
}
.rotate:hover{
	transform: rotateZ(-45deg);
	transition: transform 1s;
	cursor: pointer;
}



    @media (max-width: 900px) {
      main {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .info {
        margin-bottom: 2rem;
      }

      
    .img_info{
      width: 95%;
      margin-bottom: 1.5rem;
    }

    footer{     
      font-size:0.8rem ;
      }
   
    
    
    }
