body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.9;
}

html, body {
  height: 100vh;
}

header {
  position: relative;
  background-color: #f0f0f0;
  padding: 0;
  width: 100%;
  line-height: .5;
}

.full-width-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 40px 0;
  background-color: #f0f0f0;
}

.full-width-nav li {
  margin: 0 25px;
}

.full-width-nav li:hover {
  background-color: #050505;
  transition: background-color 0.6s ease-in-out;
}

.full-width-nav a {
  text-decoration: none;
  color: #070707;
  font-weight: bold;
  font-size: 1.2em;
}

.full-width-nav a:hover {
  color: #e2e1e1;
  background-color: #050505;
  transition: background-color 0.4s ease-in-out;
}

.hero {
  text-align: center;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.logo-hero img {
  max-width: 50%;
  height: auto;
}

.hero h1 {
  font-size: 2.0em;
  margin-bottom: 0px;
}

.hero h1 span {
  font-style: italic;
  color: #000000; /* O un color de acento */
  font-size: 0.9em;
  font-weight: bold; /* Opcional, pero recomendado */
  display: block;
  margin-top: 5px;
}

.hero h2 {
  font-size: 1.5em;
  margin-bottom: 0px;
}

.hero p {
  font-size: 1.3em;
  margin-bottom: 20px;
  margin-left: 50px;
  margin-right: 50px;
  width: 75%;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 15px 30px; /* Aumentado el padding para hacerlos más grandes */
  background-color: #6b6b6c; /* Color azul para que resalte más */
  color: #fff;
  text-decoration: none;
  border-radius: 8px; /* Borde más redondeado */
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.320, 1.275);
  font-size: 1.2em; /* Texto un poco más grande */
  margin: 0 15px; /* Espacio uniforme entre los botones */
}

.btn:hover {
  background-color: #1d1d1d; /* Un azul más oscuro al pasar el mouse */
  transform: scale(1.1); /* Efecto de escala al 110% */
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #f0f0f0;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  padding: 20px;
}

@media (max-width: 600px) {
  .full-width-nav ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #f0f0f0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0 0;
  }

  .full-width-nav ul.show {
    max-height: 500px;
  }
 
  .full-width-nav ul.initial-hide {
    max-height: 0;
  }  

  .full-width-nav li {
    margin: 15px 0;
  }

  .menu-toggle {
    display: block;
  }

  .full-width-nav ul.show {
    display: flex;
  }

  .hero h1 {
    font-size: 1.6em;
  }

  .logo-hero img {
    max-width: 60%;
  }
}

@media (max-width: 768px) {
  .button-container {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    margin: 10px 0;
  }
}