/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilo general */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: rgb(0, 0, 0);
}

/* Cabecera y menú */

header {
  background: linear-gradient(to right, #3b2501, #b35503);
  color: rgb(27, 26, 26);
  padding: 20px 10px;
  text-align: center;
}


/*header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #20645f;
}*/

.logo img {
  width: 90px;
  /* Animación suave de entrada */
  animation: fadeIn 2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/*MENUPRUEBA */
nav ul li a {
  text-decoration: none;
  color: #fff; /* Texto claro para fondo oscuro */
  padding: 10px 15px;
  display: block;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

nav ul li a:hover {
  color: #222; /* Oscurece el texto al hacer hover */
  background: #050505; /* Resalta el fondo */
  border-radius: 5px;
}


/**/
nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 15px;
}

nav ul li a {
  text-decoration: none;
  color: #fafdfd;
  padding: 5px 10px;
}

nav ul li a.active,
nav ul li a:hover {
  background-color: #ddd;
  border-radius: 5px;
}


.carrusel img {
  width: 20em; /* Ajusta según el tamaño del texto */
 height: auto;
}

/* Menú hamburguesa para dispositivos móviles */
.menu-hamburguesa {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-hamburguesa span {
  width: 25px;
  height: 3px;
  background: #f3efef;
  margin: 4px;
}

/* Sección hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
  background: url('/assets/images/hero-bg2') no-repeat center center/cover;
  color: #fff;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Contenido general */
.contenido, .productos, .contacto-rapido, .ubicacion {
  padding: 20px;
}

/* Imágenes y galería */
.imagenes, .galeria-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.imagenes img, .galeria-grid img {
  width: 100%;
  max-width: 300px;
  border-radius: 5px;
  transition: transform 0.3s;
}

.imagenes img:hover, .galeria-grid img:hover {
  transform: scale(1.05);
}

/* Pie de página */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    display: none;
  }
  .menu-hamburguesa {
    display: flex;
  }
}


.logo-container {
  width: 100%;
  height: 200px; /* Ajusta la altura según sea necesario */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  background: url('/assets/images/hero-bg2') no-repeat center center;
  background-size: cover;
  
  /* Filtro para difuminar la imagen */
  position: relative;
}
.logo-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: blur(10px); /* Ajusta la intensidad del desenfoque */
  z-index: -1;
}
h1 {
  font-size: 2rem;
  color: rgb(0, 0, 0);
  position: relative;
  z-index: 1;
}
