:root {

  --titulo-span:  #2a5c2a;
  --text-parrafo-general: rgb(0, 0, 0);
  --color-h3: #ffb703;
  --box-shadow-color:#2196f3;
  --border:#2196f3;
  --title-h2: rgb(0, 0, 0);
  --font-p: 'Underdog', Times, serif;
  --font-h3: 'Lobster', cursive;

  --bg-color: #ffffff;
  --bg-color-dark: #43283a;
  --button-color-dark: #2c1825af;
  --text-color: #000000;
  --text-parrafos: rgb(39, 39, 39);
  --border-bottom: #928f8f98;
}
h2{
  text-transform: uppercase;
}
/*! imagen y su texto*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.inicio-contacto-container {
  position: relative;
  width: 100%;
}
.seccion-contacto {
  background-image:linear-gradient(rgba(9, 6, 204, 0.514), rgba(7, 22, 236, 0.4)),
   url('../images/pastizal-perfil.jpg');
  background-size: cover;
  background-position: center;
  height: 90vh;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  display: flex; 
  align-items: center;
}
.texto-contacto { 
  text-align: center;
  margin: 0 auto;
}
.texto-contacto h1 {
  font-size: clamp(2rem, 8vw, 7rem);
  color: var(--color-h3);
  font-family:'Cherry Bomb One', cursive;
  text-align: center;

}

.titulo-contacto span {
  display: inline-block;
  animation: pulseBounceGlow 1.5s ease-in-out infinite;
  opacity: 0;
}
.texto-contacto p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-parrafo-general);
  text-align: center;
  font-family: var(--font-p);

}
.p-principal{
  max-width: 300px;
  margin: 0 auto;
  background-color: #fff;
  padding: 4rem;
  border-radius: 30% 20% 60% 10%;
}
@keyframes pulseBounceGlow {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: none;
  }
  30% {
    transform: scale(1.3) translateY(-7px); /* Pulso + Rebote leve */
    opacity: 0.9;
  }
  60% {
    transform: scale(1.1) translateY(2px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: none;
  }
}
.titulo-contacto span:nth-child(1) { animation-delay: 0s; }
.titulo-contacto span:nth-child(2) { animation-delay: 0.2s; }
.titulo-contacto span:nth-child(3) { animation-delay: 0.4s; }
.titulo-contacto span:nth-child(4) { animation-delay: 0.6s; }
.titulo-contacto span:nth-child(5) { animation-delay: 0.8s; }
.titulo-contacto span:nth-child(6) { animation-delay: 1s; }
.titulo-contacto span:nth-child(7) { animation-delay: 1.2s; }
.titulo-contacto span:nth-child(8) { animation-delay: 1.4s; }
.titulo-contacto span:nth-child(9) { animation-delay: 1.6s; }
.titulo-contacto span:nth-child(10) { animation-delay: 1.8s; }

/*! Diversidad */


.seccion-ganados {
  width: 100%;
  padding: 4rem 2rem;
  background: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
}

.contenido-ganado {
  max-width: 1400px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.contenido-ganado h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  padding: 1rem;
  margin-bottom: 1rem;
  color: var(--title-h2);
  padding-left: 1rem;
  font-family: 'Underdog', cursive;
  margin: 0 0 0 1rem;
}
.contenido-ganado h2 span {
  font-family:'Cherry Bomb One', cursive;
  color: var(--titulo-span);
}
.contenido-ganado p {
  color: var(--text-parrafo-general);
  font-size: 1.2rem;
  font-family: var(--font-p);
}

.grid-ganado {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.card-ganado {
  border-radius: 16px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-ganado:hover {
  transform: translateY(-6px);
}
.card-ganado img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  background-color: #f1f1f1;
  padding: 0.5rem;
}
@media screen and (max-width: 1000px) {
.grid-ganado{
  grid-template-columns: 1fr 1fr;
}
}
@media screen and (max-width: 748px) {
.grid-ganado{
  grid-template-columns: 1fr;
  
}
}
.info-ganado {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.info-ganado h3 {
  margin-bottom: 0.6rem;
  color: #222;
  font-size: 1.2rem;
}
.info-ganado p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  color: #444;
}

.btn-wsp {
  margin-top: 1rem;
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}
.btn-wsp:hover {
  background: #1ebd57;
}

/*carne*/
.venta-carne {
  padding: 3rem 1rem;
  text-align: center;
}
.venta-carne h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.venta-carne p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #555;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.card-corte {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.card-corte:hover {
  transform: translateY(-6px);
}
.card-corte img {
  width: 100%;
  height: 220px;
  object-fit:  contain;
}
.corte-info {
  padding: 1.2rem;
  text-align: left;
}
.corte-info h3 {
  margin: 0 0 0.5rem;
}
.corte-info p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #444;
}
.corte-info ul {
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.corte-info ul li {
  margin-bottom: 0.3rem;
}
.btn-wsp {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}
.btn-wsp:hover {
  background: #1ebd57;
}
