body {
  font-family: 'Open Sans', sans-serif;
  scroll-behavior: smooth;
}

/* Hero */
.hero {
  height: 100vh;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* Secciones */
h2 {
  letter-spacing: 1px;
}

.linea-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.linea-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Navbar */
.navbar .nav-link {
  color: #333;
  font-weight: 500;
}
.navbar .nav-link:hover {
  color: #dc3545;
}

/* Footer */
footer {
  font-size: 0.9rem;
}
/* Catálogo de productos */
.producto-card {
  transition: all 0.3s ease;
}
.producto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.producto-card img {
  width: 100%;
  height: auto; /* mantiene proporción original */
  object-fit: contain; /* evita recortes */
  background-color: #fff; /* fondo blanco detrás si la imagen no llena el espacio */
  padding: 10px; /* opcional, da margen si la imagen es más pequeña */
  border-radius: 8px;
}

/* Para pantallas grandes, ajusta suavemente el alto sin recortar */
@media (min-width: 992px) {
  .producto-card img {
    max-height: 250px;
  }
}

/* En pantallas pequeñas (iPhone, Android, etc.) */
@media (max-width: 768px) {
  .producto-card img {
    max-height: 200px;
    padding: 8px;
  }
}
#buscador {
  border: 2px solid #dc3545;
  border-radius: 50px;
  transition: all 0.3s ease;
}
#buscador:focus {
  box-shadow: 0 0 10px rgba(220,53,69,0.3);
  outline: none;
}
/* Vista individual de producto */
.producto-detalle img {
  max-height: 450px;
  object-fit: cover;
}

.btn-outline-secondary:hover {
  background-color: #6c757d;
  color: #fff;
}
.brand {
    text-align: center;
    padding: 20px 0;
}

.brand-logo {
    display: block;
    margin: 0 auto 10px; /* Centrado y separacion del texto */
    max-width: 10px; /* Ajusta el tamaño */
    height: auto;
}

.brand span {
    display: block;
    font-weight: bold;
    font-size: 1.2em;
}
.map-container {
  position: relative;
  display: inline-block;
}

.marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.marker .dot {
  width: 12px;
  height: 12px;
  background-color: red;
  border-radius: 50%;
}

.marker .label {
  background-color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}
.logo-navbar {
  height: 50px;       /* ajusta el tamaño según tu logo */
  width: auto;
}


/* ===== Slider ===== */
.hero {
  margin-top: 56px; /* espacio por el navbar fijo */
}

.carousel-item img {
  height: 90vh;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 8s ease; /* suave zoom */
}

.carousel-item.active img {
  transform: scale(1.05); /* efecto zoom lento */
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.carousel-caption h1,
.carousel-caption p {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.carousel-item.active .carousel-caption h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.carousel-item.active .carousel-caption p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 60vh;
  }
  .carousel-caption h1 {
    font-size: 1.6rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
}

 @font-face {
      font-family: 'Titillium Web';
      src: url('./fonts/TitilliumWeb-Regular.woff2') format('woff2'),
           url('./fonts/TitilliumWeb-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    }
    .icono-alcova i {
  color: #ffffff; /* blanco inicial */
  transition: color 0.3s;
  cursor: pointer;
}

.icono-alcova i:hover {
  color: #e62020; /* rojo Alcova al pasar el cursor */
}

.icono-alcova p {
  color: #ffffff;
  margin-top: 0.25rem;
}
.producto-item a {
  color: inherit;
}

.producto-item a:hover .producto-card {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all .2s ease;
}


