/* General */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #212529;
}

a {
  text-decoration: none;
}

.navbar {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  background-color: #fff;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.2rem;
}

.navbar .nav-link {
  color: #212529;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: #e60000;
}

/* Slider */
#slider img {
  max-height: 450px;
  object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  padding: 25px;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e60000' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e60000' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* Marcas */
.marcas img {
  transition: transform 0.3s ease;
}
.marcas img:hover {
  transform: scale(1.1);
}

/* Botones personalizados */
.btn-rojo {
  background-color: #e60000;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-rojo:hover {
  background-color: #c00000;
  color: #fff;
}

/* Footer */
footer {
  background-color: #212529;
  color: #fff;
  padding: 30px 0;
}

footer a {
  color: #fff;
}

footer a:hover {
  text-decoration: underline;
  color: #e60000;
}

/* Scroll top */
.btn-scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #e60000;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* WhatsApp flotante */
.fixed-whatsapp {
  position: fixed;
  right: 10px;
  top: 40%;
  z-index: 999;
}

/* Carrito */
.navbar .badge {
  font-size: 0.7rem;
  padding: 3px 6px;
  background-color: #e60000;
  color: #fff;
  border-radius: 10px;
}

/* Cards */
.card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.card .btn {
  font-size: 0.9rem;
  font-weight: 500;
}

.card.hogar {
  border-radius: 35px;
  max-width: 260px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card.hogar img {
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
}

.card.hogar .card-body {
  padding: 1rem 1.2rem;
}

/* Imagen "Quienes somos" ajustada */
.quienes-somos img {
  max-width: 100%;
  max-height: 320px;
  border-radius: 20px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .marcas img {
    width: 80px;
  }

  #slider img {
    max-height: 250px;
  }

  .card.hogar {
    max-width: 90%;
  }

  .quienes-somos img {
    max-height: 240px;
  }
}
