*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: FonAquaFon Made;
    src: url(../Font/FontAquaFon\ Made\ -\ \ Tommy\ Regular.otf) format('truetype');
   
}
/*MENU PRINCIPIAL*/
header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

#menuPrincipial{
    padding: 20px 0px 20px 0;
    box-sizing: border-box;
    display: flex;
    background-color: rgb(0, 0, 0);
    justify-content: space-around;
    height: 90px;
    box-shadow: 0px 10px 20px rgba(0,0,0,1);
}

.menuIcon{ 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;    
    font-size: 1em;
    color: #ccc;
    height: 50px;
    transition: transform .3s;
   
}
.menuIcon:hover:not(:nth-child(2)){
    transform: scale(1.1);
    background-color: #ffcd48;
}

#menuPrincipial > .menuIcon:not(:nth-child(2)) {
    border-radius: 25px; /* ajusta el valor según tu preferencia */
    border: 2px solid #ffcd48; /* ajusta el color y el grosor del borde según tu preferencia */
  }
.menuIcon img{
transition: transform 0.3s ease;
}
.menuIcon img:hover{ 
    transform: scale(1.1);
}
.menuIcon nav{
  display: flex;  
  justify-content: center;
  align-items: center;  
  padding: 20px;
  
}

.menuIcon nav a{ 
    font-size: 700;
    color: white;
    text-decoration: none;
}
nav ul{
    list-style-type:none;
}
.logoMenu{
    max-width: 100%;
    height: auto;
}

body {
    font-family:'FonAquaFon Made';
    background:#051633;
    color: white;
}
.espacioDeHeader{
    height:  92px;
}
.contact-container{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 50px;
    
}
.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contact-left-title h2{
    font-weight: 600;
    color: #FFCE48;
    font-size: 2em;
    margin-bottom: 5px;
}
.contact-left-title hr{
    border: none;
    width:90%;
    height: 2px;
    background-color: #FFCE48;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contact-inputs{
    border: 1px solid rgb(230, 0, 0);
    width: 75%;
    border: none;
    outline: none;
    padding: 10px 25px;
    border-radius: 35px;
    color: #000000;
}
.contact-left textarea {
    height: 200px;
    font-family: FonAquaFon Made ;
    border-radius: 20px;
}    
.contact-inputs:focus{
    border: 2px solid #ffcd48;
    background-color: #e9e9e9;
}
.contact-inputs::placeholder{
    color: #686868;
}
.contact-left button{
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 1em;
    color:#ffffff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(290deg,#ffc423,#f59e1b);
    cursor: pointer;
}
.contact-left button img{
    height: 15px;
}
.contact-right img{
    width: 500px;
}
@media (max-width:600px){
    .contact-inputs{
        width: 100%;
    }
    .contact-right{
        display: none;
    }
    .infoContact{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
}
.infoContact{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 30px;
    text-align: center;
      
}
.infoContact .iconWp:hover{
        transform: scale(1.1);

}
.redesSociales{
    display: flex;
    flex-direction: row;
    border: 1px solid wheat;
    padding: 10px;
    border-radius: 30px;
    gap: 25px;
}
.redesSociales img{
    width: 50px;
    height: 50px;
}
.titleContact2{
    text-align: center;
}
.Tarjetas{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    padding: 20px;
}
.Tarjetas img{
    margin: 20px;
    width: 50%;
    max-width: 100%;
    border-radius: 25px;
    border: 1px solid #ffce48;
    box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.4)
}