* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #000;
}

header {
  background-color: #000;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-container {
  flex: 0 0 auto;
  text-align: left;
  padding-left: 20px;
}

.logo {
  width: 80px;
  height: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

nav a {
  color: #2980b9;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
nav a:hover {
  background-color: #2980b9;
  color: #fff;
}

footer {
  background-color: #000;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}
footer a {
  color: #2980b9;
  text-decoration: none;
  font-weight: bold;
}
footer a:hover {
  text-decoration: underline;
}

#Inicio {
  text-align: center;
  text-decoration: underline;
  background-color: #000;
  color: #ffffff;
  font-size: 50px;
  background-image: url("../imagenes/imagen1.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transform: scale(1);
  padding: 100px 20px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#Inicio h1 {
  font-size: 50px;
  margin-bottom: 15px;
  text-decoration: underline;
  letter-spacing: 2px;
}

#Inicio p {
  font-size: 30px;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
}

.productos {
  padding: 60px 20px;
  background-color: #121212;
}

.titulo-productos {
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.grid-productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.empresa {
  padding: 60px 20px;
  background-color: #121212;
  text-align: center;
}

.empresa h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.empresa p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #e0e0e0;
}

.contacto {
  padding: 60px 20px;
  background-color: #1a1a1a;
  text-align: center;
}

.contacto h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.contacto p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.btn-productos,
.btn-empresa,
.btn-contacto {
  background-color: #e67e22;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.btn-productos:hover,
.btn-empresa:hover,
.btn-contacto:hover {
  background-color: #d35400;
}

.btn-productos {
  display: block;
  width: fit-content;
  margin: 60px auto 0;
}

.btn-empresa,
.btn-contacto {
  display: inline-block;
  margin-top: 30px;
}

.producto-item {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}
.producto-item:hover {
  transform: translateY(-10px) scale(1.03);
  background: #2c3e50;
  box-shadow: 0 10px 20px rgba(41, 128, 185, 0.3);
}
.producto-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.producto-item img:hover {
  transform: scale(1.05);
}

.parrafos-productos {
  color: #f5f5f5;
  text-align: center;
  text-transform: capitalize;
  font-style: italic;
  font-size: 1rem;
  margin-top: 10px;
}

.mapa-fija {
  display: block;
  max-width: 400px;
  width: 100%;
  height: auto;
  margin: 30px auto 0;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.mapa-fija:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

#carouselExampleFade {
  max-width: 100%;
  margin: 30px auto;
  border-radius: 8px;
  overflow: hidden;
  background-color: #121212;
}
#carouselExampleFade .carousel-item {
  background-color: #121212;
}
#carouselExampleFade .carousel-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pagina-productos {
  padding: 60px 20px;
  background-color: #121212;
  color: #ffffff;
}

.parrafo-productos {
  color: #e0e0e0;
  text-align: center;
  font-size: 1.4rem;
  max-width: 800px;
  margin: 20px auto 60px;
  font-style: italic;
}

.producto-detalle {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: #1e1e1e;
  padding: 30px;
  margin: 50px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
.producto-detalle img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.info-producto h2 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 2rem;
}
.info-producto p {
  color: #e0e0e0;
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.1rem;
}

.precio {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
  margin: 15px 0;
}

.btn-producto {
  display: inline-block;
  background-color: #e67e22;
  color: white;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-producto:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .logo {
    width: 150px;
  }
  #Inicio h1 {
    font-size: 2.5rem;
  }
  #Inicio p {
    font-size: 1.2rem;
  }
  .titulo-productos {
    font-size: 2rem;
  }
  .grid-productos {
    grid-template-columns: 1fr;
  }
  .producto-detalle {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .producto-detalle img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .info-producto p,
  .precio {
    text-align: center;
  }
  #carouselExampleFade {
    margin: 20px 10px;
    border-radius: 6px;
  }
  #carouselExampleFade .carousel-item img {
    height: 200px;
  }
}

/*# sourceMappingURL=style.css.map */
