*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

header{
    display: flex;
    height: 135px;
    padding: 30px;
    justify-content: space-between;
    font-family: "mali" , serif;
    
}   




header img{
    height: 80px;
}

nav{
    max-width: 350px;
    padding-top: 15px;
}

.menu-horizontal{
    list-style: none;
    display: flex;
    justify-content: space-around;
}

.menu-horizontal > li > a{
    display: block;
    color: #0f6296;
    padding: 3px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-left: 30px;
    transition: transform 0.3s ease-in-out;

}


.menu-horizontal > li a:hover{
    background-color: #EB8489;
    transform: rotate(5deg);
    font-weight: 700;
    color: #FAFBCC;

}

.menu-vertical{
    list-style: none;
    position: absolute;
    text-align: center;
    display: none;
    width: 150px;
    background-color: #0f6296;
    
    
}

.swing-in-top-bck {
	-webkit-animation: swing-in-top-bck 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	        animation: swing-in-top-bck 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-7-23 16:38:27
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation swing-in-top-bck
 * ----------------------------------------
 */
 @-webkit-keyframes swing-in-top-bck {
    0% {
      -webkit-transform: rotateX(70deg);
              transform: rotateX(70deg);
      -webkit-transform-origin: top;
              transform-origin: top;
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateX(0deg);
              transform: rotateX(0deg);
      -webkit-transform-origin: top;
              transform-origin: top;
      opacity: 1;
    }
  }
  @keyframes swing-in-top-bck {
    0% {
      -webkit-transform: rotateX(70deg);
              transform: rotateX(70deg);
      -webkit-transform-origin: top;
              transform-origin: top;
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateX(0deg);
              transform: rotateX(0deg);
      -webkit-transform-origin: top;
              transform-origin: top;
      opacity: 1;
    }
  }
  

.menu-horizontal li:hover .menu-vertical{
    display: block;
}

.menu-vertical li a{
    display: block;
    color: #fff8eb;
    padding: 15px;
    font-family: "bitter" , serif;
    font-size: 13px;
    text-decoration: none;


}

.menu-vertical li a:hover{
    background-color: #EB8489;
    padding: 16px;
    font-family: "mali" , serif;
    transform: none;
    font-weight: 650;
    font-size: 16px;
    color: #fff8eb;
}

body{
    background-image: url(../img/fondocontactos1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

main{
    height: 600px;
}

.seccion-principal {
    display: flex;
    justify-content: space-between;
}

.equipo-y-acerca-de {
    display: flex;
    align-items: center;
    
}

.imagen-equipo {
    max-height: 120px;
    margin-bottom: 30px;
}

.imagenes-equipo {
    display: flex;
    flex-direction: column;
    margin-right: 30px; 
   
}

.imagenes-equipo img{
    border-radius: 2px;
    transition: transform 300ms ease-in-out;
    box-shadow: 3px 3px 9px 0px rgba(161,159,161,1);
}



.imagenes-equipo :hover {
    transform: rotate(-6deg);
    transition: transform 300ms ease-in-out;
}


.acerca-de {
    align-self: flex-start;
}

.acerca-de h2 {
    font-family: 'lato', sans-serif;
    font-weight: 700; 
    color: #0f6296;
    font-size: 18px;
    margin-bottom: 15px;
}



.acerca-de span {
    font-weight: 600; 
    font-size: 24px;
    font-style: italic;
    font-family: "bitter" , serif;
    
}


.acerca-de p {
    max-width: 450px;
    margin-bottom: 15px;
    color: #0f6296;
    font-family: "bitter" , serif;
    font-size: 13px;
   
}

.columna-izquierda{
    margin-left: 50px;
    padding: 0 45px 35px 0; 
}



.columna-derecha {
    padding: 0 45px 35px 0; 
    
}

.contactos h2 {
    font-family: 'lato', sans-serif;
    font-weight: 700; 
    color: #0f6296;
    font-size: 18px;
    

}

.contactos span {
    font-weight: 600; 
    font-size: 24px;
    font-style: italic;
    font-family: "bitter" , serif;
    
}

.contactos p{
    margin-bottom: 20px;
    font-family: "bitter" , serif;
    color: #0f6296;
    
}

.formulario {
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(9px); 
    padding: 20px;
    border: 1px outset #ffff;
    border-radius: 10px; 
    max-width: 500px; 
    color: #0f6296;
    box-shadow: 3px 3px 9px 0px rgb(59, 59, 59);
   
    
}

.formulario form{
    font-family: "mali", sans-serif;
}


.formulario input{
    border: none;
    width: 100%;
    height: 30px;
    margin: 7px 0 20px 0; 
    border-radius: 10px;
    font-family: "bitter" , serif;
}

.formulario textarea{
    border: none;
    width: 100%;
    height: 70px;
    margin: 7px 0 20px 0; 
    border-radius: 10px;
    font-family: "bitter" , serif;
}

.formulario ::placeholder{
    padding: 15px;
}


.enviar {
    background-color: #EB8489; 
    color: white; 
    padding: 10px 20px; 
    border-radius: 10px; 
    border: none; 
    cursor: pointer;
    margin: 0 auto; 
    
    
}

.enviar:hover{
    background-color: #0f6296; 
    color: #EB8489;
     
}


.iconos-compartir {
    display: flex;
    align-items: center; 
    width: 150px; 
    
}

.icono-social {
    display: block;
    width: 30px; 
    margin-right: 10px;
    height: auto;
    -webkit-animation: pulsate-bck 0.6s ease-in-out 3 both;
	animation: pulsate-bck 0.6s ease-in-out 3 both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-6-25 18:42:23
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation pulsate-bck
 * ----------------------------------------
 */
 @-webkit-keyframes pulsate-bck {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
              transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes pulsate-bck {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
              transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  


  footer{
    display: flex;
    justify-content: space-between;
    padding: 25px;
    font-family: "bitter" , serif;
    font-size: 12px;
    font-style: italic;
    height: auto;
    background-color: #0f6296;
    color: #FAFBCC;
    
  }

  .copy{
    display: flex;
    justify-content: space-around;
    align-items: center;
    
    
  }


  footer img{
    height: 35px;
    margin-right: 35px;
  }

  .contactoarriba{
    display: flex;
    align-items: center;
  }

  .contactoarriba a{
    text-decoration: none;
    background-color: #EB8489; 
    color: white; 
    padding: 7px 12px; 
    border-radius: 10px; 
    border: none; 
    cursor: pointer;
    margin: 0 auto; 

  }

.contactoarriba a:hover{
    background-color: #FAFBCC; 
    color: #EB8489;
    font-weight: 700;
     
}

