* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}

:root {
  --color-principal: #21493f;
  --color-secundario: #2e6e5e;
  --color-details: #a2dfcf;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  height: 76vh;
}

.bg-image {
  background-image: url(/img/Fondo\ web\ compositor\ 3.png );
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  position: fixed;
  background-size: cover;
  opacity: 60%;
  z-index: -1;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 130px;
  margin: 20px 0 10px 0;
  width: 100vw;
}

#logo-header {
  height: 55px;
  /* animation: animation-logo 1s ease-in-out 0.1s 1 normal forwards; */
  transition: all .3s ease-in-out;
}


ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  font-size: 17px;
  /* animation: animation-logo 1s ease-in-out 0 1 normal forwards; */
  display: inline-block;
  transition: all .3s ease-in-out;

}

#contact {
  color: var(--color-principal);
  scale: 1.1;
}

a:hover {
  color: var(--color-principal);
  scale: 1.05;
}

.hamburguer-menu {
  display: none;
  justify-content: space-evenly;
  margin-top: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.menu-options {
  display: none;
  /* background-color: #181818ef; */
  background-image: linear-gradient(#181818ef 75%, transparent 100%);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 200;
  justify-content: center;
  align-items: flex-start;
  /* animation: menu-anim 1s ease-in-out 0s 1 normal forwards; */


}

.aparecer {
  animation: menu-anim 1s ease-in-out 0s 1 normal forwards;
}

.desaparecer {
  animation: menu-anim-close 1s ease-in-out 0s 1 normal forwards;
}

.menu-options i {
  position: absolute;
  top: 0;
  right: 0;
  margin: 30px;

}

#close-icon {
  font-size: 43px;
  color: var(--color-details);
  cursor: pointer;
}


.menu-options ul {

  position: relative;
  top: 19%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.menu-options ul li a {
  color: var(--color-details);
  font-size: 26px;
  margin: 17px;
}

.menu-options ul li a:hover {
  color: #e4e4e4;
}

.icon-menu {
  height: 34px;
  display: flex;
  align-items: center;

}

.icon-menu i {
  font-size: 37px;
  cursor: pointer;
  z-index: 200;
}

/* #logo-header:hover {
    scale: 1.05;
    cursor: pointer;
} */


/* @keyframes animation-logo {
    0% {
        opacity: 0;
        transform: rotateX(70deg);
        transform-origin: top;
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
        transform-origin: top;
    }
} */

footer {
  position: fixed;
  /* position: relative; */
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 54px;
  margin-bottom: 12px;
}

.footer-content {

  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  width: 80%;
  position: relative;
  right: 10px;
}

.footer-content div {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
}

.footer-content div img {
  width: 25px;
  margin: 0 20px;
}

.instagram,
.email {
  display: flex;
  align-items: flex-end;
  transition: all .3s ease-in-out;
}



/* ==========================
        FORMULARIO
===================== */

.contact-box {
  width: 800px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
 /* transform: scale(0.95);  Reducir el tamaño al 50% */
}

#formulario {
  /* background-color: #333; */
  /* color: white; */
  background-color: #8ca7a127;
  color: #000;
  padding: 20px;
  border-radius: 7px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.473);
  width: 100%;
  /* margin-top: 30px; */
}



h3 {
  font-size: 23px;
  text-align: center;
}

label {

  display: block;
  margin-bottom: 10px;
  margin-top: 8px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  /* border: none; */
  border-radius: 5px;
  border-color: #000;
}

.btn-send {
  background-color: #4e9276;
  color: white;
  margin-top: 20px;
  cursor: pointer;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.452);
  border: none;
  padding: 10px;
  text-align: center;
  display: block;
  width: 25%;
  position: relative;
  left: 50%;
  transform: translate(-50%, -6%);
  transition: all .1s ease-in-out;
}

.btn-send:hover {
  background-color: #35775b;
  /* Cambiar el color de fondo al pasar el ratón */
}


textarea {
  resize: none;
}




@keyframes animation-body {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menu-anim {
  0% {
    opacity: 0;
    transform: rotateX(-100deg);
    transform-origin: top;
  }

  100% {
    opacity: 1;
    transform: rotateX(0deg);
    transform-origin: top;
  }
}

@keyframes menu-anim-close {
  0% {
    opacity: 1;
    transform: rotateX(0deg);
    transform-origin: top;
  }

  100% {
    opacity: 0;
    transform: rotateX(-100deg);
    transform-origin: top;
  }
}