/* Estilos para la página de Productos */
.btn-outline-success {
  border: 1px solid #6ac82a;
  color: #6ac82a;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-family: "Urbanist", sans-serif;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.btn-outline-success:hover {
  background-color: #6ac82a;
  color: white;
  transform: translateY(-2px);
}

/* Estilo para el título de la sección de beneficios */
.section-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  color: #2c3e50;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 2rem;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background: #6ac82a;
  bottom: -8px;
  left: 25%;
}

.section-subtitle {
  font-family: "Urbanist", sans-serif;
  color: #7f8c8d;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Rediseño de los paneles de beneficios */
.fruta-props {
  font-family: "Urbanist", sans-serif;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.prop-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.prop-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.prop-icon {
  font-size: 1.2rem;
  color: #6ac82a;
  margin-right: 15px;
  margin-top: 3px;
  min-width: 25px;
  text-align: center;
}

.prop-item h4 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1rem;
  margin-bottom: 5px;
}

.prop-item p {
  font-family: "Urbanist", sans-serif;
  color: #7f8c8d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Ajustes para el título de cada fruta */
.fruta-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.fruta-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #6ac82a;
  bottom: 0;
  left: 0;
}

/* Ajustes para las imágenes de las frutas */
.fruta-img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  width: auto;
  object-fit: cover;
}

/* Estilo para el icono de belleza */
.fa-spa {
  color: #e84393;
}

/* Media queries para responsividad */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .fruta-title {
    font-size: 1.5rem;
  }

  .btn-outline-success {
    padding: 6px 15px;
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .prop-item {
    flex-direction: column;
  }

  .prop-icon {
    margin-bottom: 8px;
  }
}
/* Hero Productos */
.productos-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/campo/camponuevo2.jpg") center/cover no-repeat;
  padding: 120px 0 80px;
  color: rgb(255, 255, 255);
  position: relative;
}

.titulo-productos {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
}

.titulo-productos::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #6ac82a;
}

/* Galería Vintage */
/* Galería Vintage Modificada */
.galeria-vintage-modificada {
  background-color: #f9f9f9;
  position: relative;
}

.cuadro-fruta {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cuadro-fruta:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cuadro-imagen {
  padding: 30px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.cuadro-imagen img {
  max-height: 250px;
  width: auto;
  transition: transform 0.5s ease;
}

.cuadro-fruta:hover .cuadro-imagen img {
  transform: scale(1.05);
}

.cuadro-titulo {
  background-color: white;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.cuadro-titulo h3 {
  color: #2e7d32;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  margin: 0;
  position: relative;
  display: inline-block;
}

.cuadro-titulo h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #6ac82a;
}

/* Efecto de hover más suave */
.cuadro-fruta:hover .cuadro-titulo {
  background-color: #f5f5f5;
}

/* Sección de Propiedades */
.propiedades-frutas {
  background-color: white;
}

.fruta-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.fruta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #6ac82a, #01cc01);
}

.fruta-img {
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
  max-height: 400px;
  width: auto;
  margin: 0 auto;
  display: block;
}

.fruta-title {
  color: #2e7d32;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.fruta-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #6ac82a;
}

.fruta-props {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prop-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.prop-icon {
  color: #6ac82a;
  font-size: 1.5rem;
  margin-top: 5px;
}

.prop-item h4 {
  color: #2e7d32;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.prop-item p {
  color: #555;
  font-size: 1rem;
}

/* Galería de Recetas */
.recetas-gallery {
  position: relative;
}

.recetas-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.receta-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.receta-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.receta-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.receta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 15px;
}

.receta-overlay h4 {
  margin-bottom: 5px;
  font-family: "Quicksand", sans-serif;
}

.receta-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Modales de Recetas */
.modal-content {
  border-radius: 15px;
  overflow: hidden;
  border: none;
}

/* Para cambiar solo esta sección */
.precios-section h2 {
  color: #2e7d32; /* Verde oscuro similar al tema */
}

.precios-section .lead {
  color: #555; /* Gris medio */
}

/* O si quieres usar los colores del tema */
.precios-section h2 {
  color: #555; /* Usará el verde definido en :root */
}

.precios-section .lead {
  color: #555; /* Usará el verde texto definido en :root */
}

.propiedades-frutas {
  padding: 50px 0;
  background-color: #48c20b0f;
}

.recetas-gallery h2 {
  color: #555;
}

/* Contenedor principal */
.galeria-vintage-modificada {
  position: relative;
  padding: 40px 0; /* Espacio para los círculos */
}

/* Contenedor de círculos (ahora limitado a los bordes) */
.decoracion {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden; /* Evita que se salgan del contenedor */
}

/* Estilo base para círculos */
.circulo {
  position: absolute;
  opacity: 0.4; /* Más transparente para que no compita con el contenido */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
  animation: flotar 10s ease-in-out infinite;
  z-index: -1; /* Asegura que están detrás de todo */
}

/* Nuevo posicionamiento seguro (fuera del área de contenido) */
.circulo1 {
  top: 5%;
  left: 5%;
  width: 50px;
  height: 50px;
}

.circulo2 {
  bottom: 10%;
  right: 5%;
  width: 70px;
  height: 70px;
  animation-delay: 2s;
}

.circulo3 {
  top: 20%;
  right: 3%;
  width: 40px;
  height: 40px;
  animation-delay: 4s;
}

.circulo4 {
  bottom: 15%;
  left: 3%;
  width: 60px;
  height: 60px;
  animation-delay: 1s;
}

.circulo5 {
  top: 10%;
  right: 20%;
  width: 30px;
  height: 30px;
  animation-delay: 3s;
}

.circulo6 {
  bottom: 5%;
  right: 10%;
  width: 45px;
  height: 45px;
  animation-delay: 5s;
}

/* Animación más suave */
@keyframes flotar {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(5px, 5px) rotate(2deg);
  }
  50% {
    transform: translate(0, 10px) rotate(0deg);
  }
  75% {
    transform: translate(-5px, 5px) rotate(-2deg);
  }
}

/* Asegurar que el contenido esté por encima */
.cuadro-fruta {
  position: relative;
  z-index: 1;
  background: white; /* Fondo sólido para que los círculos no se vean detrás */
}

/* Responsive: círculos más pequeños y menos visibles en móviles */
@media (max-width: 768px) {
  .circulo {
    opacity: 0.2;
    width: 30px !important;
    height: 30px !important;
  }

  .decoracion {
    display: none; /* Opcional: ocultar completamente en móviles */
  }
}

/* Agrega esto a tu archivo productos.css */
.cuadro-fruta-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.cuadro-fruta-link:hover .cuadro-fruta {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contenedor de decoraciones (posicionamiento fijo pero acotado) */
.decoraciones {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
  z-index: -1; /* Opcional: evita que interfiera con el contenido */
  transform: translateY(-50%);
}

/* Imágenes decorativas */
.decoraciones img {
  opacity: 0.4;
  position: absolute;
  max-width: 500px; /* Ajusta según necesidad */
  /* Opción 2: Tamaño máximo (crece hasta un límite) */

  /* Opcional: Ajustar altura proporcionalmente */
  height: auto; /* Mantiene la proporción */
}

.decoracion-right {
  right: 0;
}

.decoracion-left {
  left: 0;
}

/* Responsive: reducir tamaño en móviles */
@media (max-width: 768px) {
  .decoraciones img {
    max-width: 120px;
    opacity: 0.3;
  }
}

/* Ocultar en móviles pequeños */
@media (max-width: 576px) {
  .decoraciones {
    display: none;
  }
}

.btn-contacto-precios {
  background: linear-gradient(135deg, #216d28, #35de14);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(63, 168, 51, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-contacto-precios:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(13, 119, 27, 0.4);
  color: white;
}

.btn-contacto-precios:active {
  transform: translateY(1px);
}

.btn-contacto-precios::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #44d50f, #1f882f);
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.btn-contacto-precios:hover::after {
  opacity: 1;
}
