/* Colores y tipografía generales */
body {
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
  color: #0b3d0b;
}

a {
  color: #0b3d0b;
  text-decoration: none;
}

a:hover {
  color: #2a6d2a;
}

/* Scroll suave y ajuste para navbar fixed */
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

/* Botón tienda */
.btn-success {
  background-color: #0b3d0b;
  border: none;
}

.btn-success:hover {
  background-color: #2a6d2a;
}

/* Sección info (texto largo centrado) */
.info-seccion {
  background-color: #e6f1e6;
  color: #333;
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 8px;
}

/* Iconos beneficios */
.icono-beneficio {
  color: #0b3d0b;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.iconos-beneficios h5 {
  font-weight: 700;
}

.iconos-beneficios p {
  color: #555;
  max-width: 280px;
  margin: 0 auto;
}

/* Navbar */
.navbar-brand span {
  font-weight: 700;
  color: #0b3d0b;
}

/* Título de sección de cestas */
.section-title {
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: #0b3d0b;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Tarjetas de cestas - CORREGIDO */
.cesta-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cesta-card img {
  height: 260px;
  object-fit: cover;
  width: 100%;
}

.cesta-card .card-body {
  flex-grow: 1;
  padding: 1.5rem;
  /* Ya no necesitamos estas líneas porque están en el HTML */
}

.cesta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(11, 61, 11, 0.2);
}

/* Testimonios */
#testimonios .card {
  background-color: #ffffff;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

#testimonios p {
  font-style: italic;
  color: #2a6d2a;
}

#testimonios .card img {
  object-fit: cover;
  border: 2px solid #0b3d0b;
}

/* FAQ */
.accordion-button {
  font-weight: 600;
  color: #0b3d0b;
}

.accordion-button:not(.collapsed) {
  background-color: #e6f1e6;
  color: #0b3d0b;
}

/* Footer */
footer {
  font-size: 0.9rem;
  margin-top: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

footer a:hover {
  text-decoration: underline;
  color: #a5d6a7;
}