/* ===== PÁGINA SALUD ANIMAL (estilo moderno) ===== */

/* Hero */
.hero-salud {
  min-height: 62vh;
  background:
    linear-gradient(rgba(15, 25, 18, .45), rgba(15, 25, 18, .60)),
    url("../images/salud/bg-actualidad.jpg?v=1") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 120px 20px 80px;
}
.hero-salud h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards .6s;
}
.hero-salud p {
  max-width: 760px;
  font-size: clamp(16px, 2vw, 21px);
  color: #e8ede9;
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards 1.2s;
}

/* Títulos de sección */
.titulo-seccion {
  text-align: center;
  color: #2b2b2b;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 50px;
}
.titulo-seccion::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 64px; height: 4px;
  border-radius: 2px;
  background: #6fbf73;
}
.titulo-seccion.claro { color: #fff; }

/* ===== ACTUALIDAD: tarjetas ===== */
.noticias {
  background: #fafafa;
  padding: 80px 20px;
}
.noticias-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.noticia {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .09);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.noticia:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(0,0,0,.14); }
.noticia-img {
  height: 230px;
  background: #f2f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.noticia-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.noticia-video { padding: 0; background: #000; }
.noticia-video iframe { width: 100%; height: 100%; border: 0; }
.video-marco {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #000;
}
.video-marco iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.noticia-body { padding: 26px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.noticia .kicker {
  color: #2e7d32;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.noticia h2 { color: #2b2b2b; font-size: 20px; line-height: 1.4; margin-bottom: 12px; font-weight: 700; }
.noticia p { color: #666; font-size: 15px; flex: 1; }
.noticia .leer-mas { color: #2e7d32; font-size: 14px; font-weight: 600; margin-top: 14px; }
.noticia .leer-mas:hover { color: #174d1a; }

/* ===== BANDAS CON FOTO FIJA ===== */
.banda {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}
.banda::before { content: ""; position: absolute; inset: 0; background: rgba(10, 14, 12, .45); }
.banda-inner { position: relative; max-width: 1150px; margin: 0 auto; }

.banda-complementos { background-image: url("../images/salud/bg-complementos.jpg?v=1"); padding: 90px 20px; }
.banda-pastor { background-image: url("../images/salud/bg-pastor.jpg?v=1"); padding: 90px 20px; }
.banda-higiene { background-image: url("../images/salud/bg-higiene.jpg?v=1"); padding: 90px 20px; }

.subtitulo-claro {
  text-align: center;
  color: #dfe8e0;
  font-size: 18px;
  margin: -35px 0 50px;
}

/* Tarjetas de producto */
.producto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.producto-grid.dos { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin: 0 auto; }
.producto-grid.cuatro { grid-template-columns: repeat(4, 1fr); }
.producto {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease;
}
.producto:hover { transform: translateY(-5px); }
.producto img { max-height: 190px; object-fit: contain; margin: 0 auto 18px; }
.producto h4 { color: #293340; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.producto p { color: #5a5a5a; font-size: 14px; line-height: 1.6; flex: 1; }
.producto a { color: #2e7d32; font-size: 14px; font-weight: 600; margin-top: 12px; }

/* ===== BIENESTAR ===== */
.banda-bienestar {
  background-image: url("../images/salud/bg-bienestar.jpg?v=1");
  background-position: 50% 50%;
  padding: 170px 20px;
  color: #fff;
}
.bienestar-grid {
  position: relative;
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.bienestar-col {
  background: rgba(12, 18, 14, .55);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(3px);
}
.bienestar-col h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin-bottom: 18px; }
.bienestar-col p { color: #e4e9e5; font-size: 15px; margin-bottom: 26px; }

.btn-verde {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: 13px 42px;
  border-radius: 30px;
  font-size: 15px;
  transition: background .2s, transform .2s;
}
.btn-verde:hover { background: #256b29; transform: translateY(-2px); }

/* ===== CENTRO DE UTILIDADES ===== */
.utilidades {
  background: #171b26;
  color: #fff;
  padding: 90px 20px;
  text-align: center;
}
.utilidades .titulo-seccion { color: #fff; }
.utilidades-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.utilidad {
  background: #202634;
  border-radius: 16px;
  padding: 28px 22px;
  transition: transform .25s ease, background .25s ease;
}
.utilidad:hover { transform: translateY(-5px); background: #262d3d; }
.utilidad img {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  height: 110px;
  width: 100%;
  object-fit: contain;
  margin: 0 auto 20px;
}
.utilidad h4 { font-size: 17px; font-weight: 700; line-height: 1.4; }
.utilidad p { font-size: 13px; color: #b9c0cd; margin-top: 8px; }
.utilidad a { color: #6fbf73; }
.utilidad a:hover { color: #9ad99e; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .noticias-grid { grid-template-columns: 1fr; }
  .producto-grid, .producto-grid.cuatro { grid-template-columns: repeat(2, 1fr); }
  .utilidades-grid { grid-template-columns: repeat(2, 1fr); }
  .banda, .hero-salud { background-attachment: scroll; }
}
@media (max-width: 640px) {
  .producto-grid, .producto-grid.cuatro, .producto-grid.dos,
  .bienestar-grid, .utilidades-grid { grid-template-columns: 1fr; }
  .banda-bienestar { padding: 90px 20px; }
}
