
/* ------------------------- */
/* Fuente general del sitio */
/* ------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Playfair+Display:wght@600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  padding-top: 60px;
  margin: 0;
  background-color: #f7f9f5;
}

/* ------------------------- */
/* NAVBAR                    */
/* ------------------------- */
.navbar {
  background-color: #07295f !important; /* Fondo azul oscuro */
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}



/* ------------------------- */
/* HERO CARRUSEL ORGANIZADO */
/* ------------------------- */
#heroCarousel {
  position: relative;
}

.hero-slide {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  text-align: center;
  color: white;
}

.hero-overlay h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
}

.hero-overlay p {
  font-size: 1.3rem;
  margin-top: 10px;
  color: white; /* ← AÑADIDO */
}


.hero-overlay .btn,
.btn {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 20px;
  padding: 10px 24px;
  border-radius: 5px;
  font-size: 1rem;
}

/* Controles de flechas */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 10px;
}

/* ------------------------- */
/* SECCIONES GENERALES      */
/* ------------------------- */
.seccion {
  padding: 60px 0;
}

.seccion-bg {
  background-color: #c6d6f5;
}

.titulo-seccion,
.subtitulo-seccion,
.producto-info h5,
.redes-sociales h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  color: #07295f;
  margin-bottom: 30px;
}

.subtitulo-seccion {
  margin-bottom: 15px;
}

p {
  color: #555;
}

/* ------------------------- */
/* GALERÍA MEJORADA         */
/* ------------------------- */
.galeria-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* que todas las tarjetas tengan misma altura */
  display: flex;
  align-items: center;
  justify-content: center;
}

.galeria-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.galeria-card img {
  height: 250px;
  object-fit: cover;
  width: 100%;
  display: block;
}



/* ------------------------- */
/* FOOTER                   */
/* ------------------------- */
.footer-bg {
  background-color: #07295f;
}

footer p {
  color: white;
  margin: 0;
}

/* --------------------------- */
/* SOBRE NOSOTROS             */
/* --------------------------- */
.header-sobre {
  background-image: url("IMAGES/green-leaf-texture-leaf-texture-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-sobre::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.header-sobre .text-center {
  position: relative;
  z-index: 2;
}

/* CTA final */
.cta-final {
  background-color: #ffffff;
}

.cta-final p {
  color: #333;
}

.rounded-circle {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

/* --------------------------- */
/* CATÁLOGO DE PRODUCTOS       */
/* --------------------------- */
.header-catalogo {
  background-image: url('IMAGES/green-leaf-texture-leaf-texture-background.jpg');
  background-size: cover;
  background-position: center;
  height: 60vh;
  position: relative;
}

.header-catalogo::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.header-catalogo .text-center {
  position: relative;
  z-index: 1;
}

.producto-card {
  background-color: #fff;
  border: 2px solid #b2d0f7;
  border-radius: 12px solid ;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin: 10px; /* ← Añade espacio alrededor de cada tarjeta */
}

.producto-card:hover {
  transform: translateY(-5px);
}

.producto-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.producto-info {
  padding: 20px;
  text-align: center;
}

.producto-info p {
  margin-bottom: 10px;
  color: #555;
}

.producto-info .tag {
  display: inline-block;
  background-color: #d2e6f8;
  color: #01325a;
  padding: 4px 12px;
  font-size: 0.85rem;
  border-radius: 50px;
}

/* --------------------------- */
/* CONTACTO                   */
/* --------------------------- */
.header-contacto {
  background-image: url('IMAGES/green-leaf-texture-leaf-texture-background.jpg');
  background-size: cover;
  background-position: center;
  height: 60vh;
  position: relative;
}

.header-contacto::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.header-contacto .text-center {
  position: relative;
  z-index: 1;
}

form .form-control {
  border-radius: 8px;
  border: 1px solid #67a1e2;
}

form .form-control:focus {
  border-color: #67a1e2;
  box-shadow: 0 0 0 0.2rem rgba(7, 41, 95, 1.0);
}

.contacto-info li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #333;
}

/* --------------------------- */
/* REDES SOCIALES              */
/* --------------------------- */
.redes-sociales {
  background-color: #f0fff4;
}

.social-icons a {
  color: #07295f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #07295f;
}
/* --------------------------- */
/* DETALLE DE PRODUCTO        */
/* --------------------------- */

.producto-detalle {
  padding: 60px 0;
  background-color: #f9fcff;
}

.producto-detalle h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #07295f;
  font-weight: 600;
}

.producto-detalle p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}

.producto-detalle ul {
  padding-left: 1.2rem;
}

.producto-detalle ul li {
  margin-bottom: 10px;
  list-style: "🌿 ";
}

.producto-detalle .img-thumbnail {
  border-radius: 8px;
  border: 2px solid #d2e6f8;
  transition: transform 0.3s ease;
}

.producto-detalle .img-thumbnail:hover {
  transform: scale(1.05);
}
.thumb-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: 2px solid transparent;
}

.thumb-img:hover {
  transform: scale(1.05);
  border-color: #0d6efd;
}
.separador-productos {
  position: relative;
}

.linea-separadora {
  border: none;
  border-top: 2px solid #07295f;
  width: 50%;
  margin: 0 auto;
  opacity: 0.5;
}

.titulo-separador {
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #07295f;
  text-transform: uppercase;
  font-size: 1.5rem;
}
