body {
  margin: 0;
  font-family: 'Caudex', serif;
  background-color: #000;
  color: #d5b154;
}

/*Header landing page*/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 30px;
  background-color: #000;
  position: relative;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-header img {
  height: 200px;
}

.header-centro {
  flex: 1;
  text-align: center;
}

.header-titulo {
  font-family: 'Caudex', serif;
  font-size: 2.6rem;
  font-style: italic;
  background: linear-gradient(90deg, #d5b154);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto;
  white-space: nowrap;
}

.menu-escritorio {
  display: flex;
  gap: 10px;
}

.menu-escritorio button {
  background-color: #000;
  border: 1px solid #d5b154;
  color: #d5b154;
  padding: 10px 15px;
  cursor: pointer;
  font-family: 'Caudex', serif;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-escritorio button:hover {
  background-color: #d5b154;
  color: #000;
}

.menu-hamburguesa {
  display: none;
}

.menu-hamburguesa button {
  background-color: #000;
  border: 2px solid #d5b154;
  color: #d5b154;
  padding: 10px 15px;
  font-size: 1.2rem;
  cursor: pointer;
  font-family: 'Caudex', serif;
}

/*Main landing page*/

main, section {
  padding: 20px 30px 30px 30px;
}

#imagen-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.imagen-main {
  max-width: 50%;
}

.imagen-main img {
  width: 100%;
  height: auto;
}

.contenido-main {
  max-width: 45%;
}

.contenido-main h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contenido-main p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.contenido-main input[type="email"] {
  padding: 10px;
  width: 100%;
  border: 1px solid #d5b154;
  background-color: #000;
  color: #d5b154;
  font-family: 'Caudex', serif;
  margin-bottom: 10px;
}

.contenido-main button {
  padding: 10px 20px;
  background-color: #000;
  border: 2px solid #d5b154;
  color: #d5b154;
  cursor: pointer;
  font-family: 'Caudex', serif;
}

#sobre-mi {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 40px;
}

.texto {
  flex: 1;
  max-width: 600px;
}

#testimonios {
  flex: 1;
}

#testimonios h2 {
  margin-bottom: 20px;
}

#testimonios .cajas-testimonios {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.caja {
  border: 0px solid #d5b154;
  padding: 10px;
  flex: 1;
  background-color: #111;
}

/*Products landing page*/

#products {
  margin-top: 0;
}

#products h2 {
  text-align: center;
  margin-bottom: 140px;
}

.productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.producto {
  width: 200px;
  text-align: center;
  border: 1px solid #d5b154;
  padding: 10px;
  background-color: #111;
}

.producto img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.agenda-btn {
  text-align: center;
  margin-top: 50px;
}

.agenda-btn button {
  background-color: #000;
  border: 2px solid #d5b154;
  color: #d5b154;
  padding: 10px 20px;
  cursor: pointer;
  font-family: 'Caudex', serif;
}

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

footer .footer-nav button {
  background-color: #000;
  border: 1px solid #d5b154;
  color: #d5b154;
  font-family: 'Caudex', serif;
  padding: 10px 15px;
  margin: 5px;
  cursor: pointer;
}

footer .footer-nav button:hover {
  background-color: #d5b154;
  color: #000;
}

.redes-sociales img {
  width: 40px;
  height: 40px;
  margin: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-escritorio {
    display: none;
  }

  .menu-hamburguesa {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  #menu {
    display: flex;
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 100%;
    right: 0;
    border: 1px solid #d5b154;
    padding: 10px;
  }

  #menu button {
    background: none;
    border: none;
    color: #d5b154;
    text-align: right;
    padding: 10px 0;
    font-family: 'Caudex', serif;
  }

  #menu.oculto {
    display: none;
  }

  .header-centro {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .header-titulo {
    font-size: 2rem;
  }

  #imagen-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .imagen-main {
    order: 1;
    max-width: 100%;
  }

  .contenido-main {
    order: 2;
    max-width: 100%;
    margin-top: 20px;
  }

  #sobre-mi {
    order: 3;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 30px;
  }

  #testimonios {
    order: 4;
    text-align: center;
    width: 100%;
  }

  #testimonios .cajas-testimonios {
    flex-direction: column;
    align-items: center;
  }

  .caja {
    width: 90%;
    margin-bottom: 15px;
  }
}
