* {
  box-sizing: border-box;
}
body {
  margin: 0;
  width:100%;
  background-color: #181717;
  font-family: Arial, Helvetica, sans-serif;
}
.contenedor {
  width: 100%;
  margin: 0 auto;
  overflow:hidden;
}
/* inicio del header*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #181717;
  color: #fff;
  padding: 20px;
}

#logo a {
  display: block;
}

#logo img {
  width: 14%;
  height: auto;
}

#nav {
  display: flex;
}

#nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 86%;
}

#nav li {
  margin: 0 10px;
}

#nav a {
  color: #fff;
  text-decoration: none;
  font-size: larger;
}

#nav a:hover {
  color: #ccc;
}
/*fin del header*/

/*inicio del hero*/
.hero-text {
  text-align: center;
  position: absolute;
  font-size: x-large;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.hero-text .btn {
  display: inline-block;
  font-size: 1.2em;
  padding: 15px 30px;
  border: 2px solid #fff;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.hero-text .btn:hover {
  background-color: #fff;
  color: #333;
}

.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("cocina.png");
  min-height: 1000px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  background-attachment: fixed;
}
/* fin del hero*/

/* inicio de columnas con productos*/


h2 {
  text-align: center;
  margin-top: 50px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.column {
  flex: 50%;
  padding: 5px;
}
.column img {
  max-width: 100%;
  height: auto;
}
.content {
  background-color: #181717;
  padding: 20px;
  color: #fff;
}

.btn {
  display: inline-block;
font-size: 1.2em;
padding: 15px 30px;
border: 2px solid #fff;
border-radius: 5px;
color: #fff;
text-decoration: none;
transition: background-color 0.2s, color 0.2s;
}
.btn:hover {
  background-color: #fff;
  color: #333;
}
@media only screen and (max-width: 600px) {
  .column {
      flex: 100%;
  }
}


/* fin de columnas con productos*/


/* inicio de footer*/
/* Estilos generales */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h3 {
  font-size: 1.2em;
  margin: 0 0 20px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  font-size: 0.9em;
  line-height: 1.5;
}

a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #ccc;
}

/* Estilos del footer */
#footer {
  background-color: #333;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

#footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

#footer .column {
  flex-basis: 100%;
  margin-bottom: 30px;
}

#footer .column:last-child {
  margin-bottom: 0;
}

#footer .column h3 {
  font-size: 1.2em;
}

#footer .column ul {
  text-align: center;
}

#footer .column ul li {
  text-align: left;
}

#footer .column a img {
  max-width: 25px;
  height: auto;
}

/* Media queries para adaptabilidad */
@media only screen and (min-width: 768px) {
  #footer .column {
    flex-basis: calc(33.33% - 20px);
    margin-right: 20px;
  }

  #footer .column:last-child {
    margin-right: 0;
  }

  #footer .column h3 {
    font-size: 1.5em;
  }
}
/* fin de footer*/

