/* ✨ FUENTE */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
}

/* ---------------- NAVBAR HERO ---------------- */
.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
}

.navbar-nav .nav-link {
  color: white !important;
  letter-spacing: 1px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #ffd6de !important;
  transform: scale(1.1);
}

/* ---------------- CARRUSEL ---------------- */
.carousel-item {
  position: relative;
}

.carousel-item img {
  height: 100vh;
  object-fit: cover;
}

/* Overlay oscuro */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Texto del hero */
.carousel-caption {
  position: absolute;
  z-index: 2;
  left: 14%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 90%;
}

/* Animación */
.carousel-item .carousel-caption {
  animation: fadeInUp 1s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(-50%); }
}

/* Tamaños de títulos */
#heroCarousel h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
}

#heroCarousel h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.05;
}

/* Botón hero */
.btn-hero {
  background-color: #ffd6de;
  color: #6e0f2d;
  border-radius: 40px;
  padding: 12px 40px;
  font-weight: bold;
  border: 2px solid #ffd6de;
  transition: 0.3s;
}

.btn-hero:hover {
  background-color: transparent;
  color: white;
  border: 2px solid #ffd6de;
}

/* ---------------- SOBRE NOSOTRAS ---------------- */
.sobre-nosotras {
  background-color: #fdecef;
  padding: 60px 0;
  position: relative;
}

.sobre-contenido {
  min-height: 420px;
}

.bloque-texto {
  background-color: #6e0f2d;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bloque-texto h2 {
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.bloque-texto p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.bloque-imagenes {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bloque-imagenes img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

/* ---------------- CATÁLOGO ---------------- */
.catalogo {
  background-color: #fdecef;
}

.btn-catalogo {
  background-color: #6e0f2d;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: bold;
}

.card-producto {
  background-color: white;
  border: 2px solid #f28aa8;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card-producto img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
}

.card-producto h5 {
  font-weight: bold;
  margin-bottom: 5px;
}

.card-producto p {
  font-size: 0.9rem;
  color: #555;
}

.card-producto span {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.card-producto:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ---------------- FOOTER ---------------- */
.footer {
  background-color: #d4a3a8;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-titulo {
  background-color: #6e0f2d;
  color: white;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.footer-iconos {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.icono {
  width: 60px;
  height: 60px;
  background-color: #6b0f24;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.icono img {
  width: 32px;
}

.icono:hover {
  transform: scale(1.15);
}

/* ===========================================================
      📱 RESPONSIVE — MOBILE
=========================================================== */

/* HERO adaptable */
@media (max-width: 768px) {

  .carousel-caption {
    left: 8%;
    right: 8%;
    top: 50%;
    text-align: center;
    align-items: center !important;
    max-width: 92%;
  }

  #heroCarousel h1 {
    font-size: clamp(1.8rem, 7vw, 3.5rem);
    word-break: break-word;
  }

  #heroCarousel h2 {
    font-size: clamp(1.4rem, 6vw, 2.6rem);
    word-break: break-word;
  }

  .btn-hero {
    padding: 10px 26px;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
  }

  .carousel-item img {
    height: 75vh;
    object-fit: cover;
    object-position: center;
  }

  /* SOBRE NOSOTRAS */
  .sobre-contenido { flex-direction: column; }

  .bloque-texto {
    padding: 24px;
    text-align: center;
  }

  .bloque-imagenes {
    margin-top: 18px;
  }

  .bloque-imagenes img {
    height: 200px;
  }

  /* CATÁLOGO */
  .card-producto { padding: 12px; }
  .card-producto img { height: 180px; }

  /* FOOTER */
  .footer { padding: 50px 0; }
  .footer-iconos { gap: 28px; flex-wrap: wrap; }
  .icono { width: 52px; height: 52px; }
  .icono img { width: 26px; }
}

/* Tablet */
@media (max-width: 992px) {
  .carousel-item img { height: 85vh; }
  .bloque-texto { padding: 32px; }
}
