@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,500;0,700;1,300&family=Roboto:ital,wght@0,400;1,500;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

/* ==================== navigation bar ===================== */

.nav__bar {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  background: #ffffff;
  padding: 15px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: fixed;
  height: 70px;
}
.nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.nav__link a {
  text-decoration: none;
  color: #3c6e71;
  font-weight: 800;
}

.btns {
  font-size: 15px;
  padding: 0.5em 2em;
  border: transparent;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  background: #3c6e71;
  color: white;
  border-radius: 5px;
}

.log a {
  text-decoration: none;
  color: #ffffff;
}
.reg a {
  text-decoration: none;
  color: #ffffff;
}

.btns:hover {
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(60, 110, 113, 1) 0%,
    rgba(0, 212, 255, 1) 100%
  );
}

.btns:active {
  transform: translate(0em, 0.2em);
}

.name__nombre {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.name__nombre h2 {
  font-size: small;
  font-weight: 300;
}

/* ==================== menu hambburgueza ===================== */

.nav__bar i {
  font-size: 25px;
  display: none;
}

#toggle-menu {
  display: none;
}
/* ==================== contenido principal ===================== */

.logo__container {
  background-image: url(./backg/fondo.jpeg);
  background-position: center;
  background-size: cover;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slogan__container {
  height: 250px;
  width: 500px;
  background-color: rgba(255, 255, 255, 0.514);
}
.img__logo {
  height: 50px;
  width: auto;
}

.logo__imag {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img__intro {
  height: 250px;
  width: auto;
  border-radius: 10px;
}

.intro__container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  flex-wrap: wrap;
  gap: 15px;
}

.info__container {
  background-color: rgba(255, 255, 255, 0.514);
  box-shadow: 0px 9px 41px 20px rgba(0, 0, 0, 0.1);
  height: 450px;
  width: 400px;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 15px;
}

.info__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.info__text p {
  text-align: justify;
}

.info__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 15px;
}
/* ==================== contenido contenido del footer ===================== */
.footer {
  text-align: center;
  background-color: #3c6e71;
  color: white;
  padding: 20px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  margin: 0 10px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
}

.social-icons img {
  width: 30px;
  height: 30px;
}
