body {
  font-family: Verdana, sans-serif;
  background-color: #f0ebd8;
  color: #2e282a;
  margin: 0;
}

header {
  position: relative;
  width: 100%;
  height: 100vh;
  color: #f0ebd8;
  overflow: hidden;
  background-color: #2e282a;
  z-index: 1000;
  top: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contenido_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.logo {
  color: #f0ebd8;
  width: 12.5rem;
  height: 5rem;
  object-fit: cover;
}

.backvideo {
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #f0ebd8;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #9e643c;
}

/*Main*/
.contenedor_0_preparacion {
  display: flex;
  height: 100vh;
  width: 100%;
  background-color: #f0ebd8;
}

.contenedor_1_video_titulo, .contenedor_1_cafe_manual {
  flex: 1;
}

.contenedor_1_video_titulo {
  position: relative;
  overflow: hidden;
  align-content: center;
}

.contenedor_2_video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 30%;
}

.contenedor_2_titulo {
  position: relative;
  margin: 5rem;
  background-color: #F0EBD8;
  padding: 0.5rem;
  border-radius: 1rem;
  z-index: 2;
  text-align: center;
}

.contenedor_2_interno_preparacion_cafe_manual {
  margin: 3rem;
  padding: 2rem;
  border-width: 2rem;
  border-radius: 2rem;
  border-color: #2E282A;
}

/*Tabla*/
.contenedor_0_tabla {
  background-color: #9E643C;
  width: 100%;
  height: 100vh;
  text-align: center;
  align-content: center;
}

.contenedor_1_titulo_tabla {
  position: relative;
  display:inline-flex;
  border-radius: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  margin: 1rem;
  background-color: #F0EBD8;
}

table {
  border-radius: 1rem;
  background-color: #F0EBD8;
  margin-left: auto;
  margin-right: auto;
  padding: 0.8rem;
  border: 0.1rem solid #2E282A;
  border-collapse: collapse;
}

th,
td {
  border: 0.1rem solid gray;
  padding: 0.8rem;
}

/*Imágenes*/
.contenedor_bebidas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  height: 100vh;
  align-content: center;
  justify-content: center;
}

.caja {
  background-color: #9e643c;
  border-radius: 1.5rem;
  padding: 0.2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 16rem;
  height: 30rem;
}

.caja img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.7rem;
}

/*Prueba carrusel*/
.contenedor_carrusel {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 2.5rem auto;
  justify-content: space-around;
  border-radius: 0.6rem;
  box-shadow: 0 0 1rem #2e282a;
}

.carrusel_imagenes {
  display: flex;
  width: 100%;
  animation: deslizar 150s infinite linear;
}

.carrusel_imagenes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes deslizar {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-100%); }
  50%  { transform: translateX(-200%); }
  75%  { transform: translateX(-300%); }
  100% { transform: translateX(0); }
}

/*Contactenos*/
.contenedor_contacto {
  background-color: #f0ebd8;
  display: flex;
  margin: 0rem;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.contacto {
  background-color: #2e282a;
  color: #f0ebd8;
  border-radius: 2rem;
  height: 80vh;
  padding: 3.5rem;
}

.contacto input,
textarea {
  background: #f0ebd8;
  border-radius: 0.8rem;
  border-width: 0.2rem;
  border-color: #9e643c;
  width: 15rem;
  height: 2rem;
  text-align: center;
  font-weight: bold;
  color: #2e282a;
}

.contacto textarea {
  max-inline-size: 15rem;
}

.contacto button {
  background-color: #9e643c;
  border-radius: 1.7rem;
  border-width: 0rem;
  color: #f0ebd8;
  width: 12.5rem;
  height: 2rem;
}

/*Pie de página y redes sociales*/
footer {
  position: sticky;
  width: 100%;
  height: 7.5rem;
  color: #f0ebd8;
  text-align: center;
  overflow: hidden;
  background-color: #2e282a;
  z-index: 1000;
  top: 0;
}

.redes_sociales {
  color: #f0ebd8;
}
.redes_sociales:hover {
  color: #9e643c;
}
