.coagro-ayuda-premium {
  background: linear-gradient(135deg, #f0f6ff, #ffffff);
  /* background-repeat: no-repeat; */

  /* background-position: bottom right; */
  padding: 50px 20px;
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: center;
}

.coagro-ayuda-content {
  max-width: 900px;
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.coagro-ayuda-imagen img {
  width: 210px;
  max-width: 100%;
  object-fit: contain;
  animation: floatImg 4s ease-in-out infinite;
}

.coagro-ayuda-texto {
  flex: 1;
  min-width: 260px;
}

.coagro-ayuda-texto h2 {
  font-size: 24px;
  color: #002c74;
  margin-bottom: 10px;
  font-weight: 700;
}

.coagro-ayuda-texto p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}

.coagro-ayuda-sello {
  font-size: 14px;
  color: #0066cc;
  background: rgba(0, 102, 204, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  display: inline-block;
}

.coagro-boton-premium {
  background: linear-gradient(90deg, #007bff, #005dc4);
  color: white;
  padding: 12px 26px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  font-size: 16px;
}

.coagro-boton-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

@keyframes floatImg {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .coagro-ayuda-content {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .coagro-ayuda-imagen img {
    width: 130px;
  }
  .coagro-ayuda-premium {
    background: linear-gradient(135deg, #f0f6ff, #ffffff);
    background-image: url("https://www.transparenttextures.com/patterns/white-wall-3.png");
    background-repeat: no-repeat;
    background-position: bottom right;
    padding: 50px 20px;
    font-family: "Montserrat", sans-serif;
  }

  .coagro-ayuda-content {
    max-width: 900px;
    width: 100%;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease forwards;
    opacity: 0;
    transform: translateY(20px);
  }

  .coagro-ayuda-imagen img {
    width: 160px;
    max-width: 100%;
    object-fit: contain;
    animation: floatImg 4s ease-in-out infinite;
  }

  .coagro-ayuda-texto {
    flex: 1;
    min-width: 260px;
  }

  .coagro-ayuda-texto h2 {
    font-size: 24px;
    color: #002c74;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .coagro-ayuda-texto p {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
  }

  .coagro-ayuda-sello {
    font-size: 14px;
    color: #0066cc;
    background: rgba(0, 102, 204, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: inline-block;
  }

  .coagro-boton-premium {
    background: linear-gradient(90deg, #007bff, #005dc4);
    color: white;
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    font-size: 16px;
  }

  .coagro-boton-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  }

  @keyframes floatImg {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-6px);
    }
    100% {
      transform: translateY(0px);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .coagro-ayuda-content {
      flex-direction: column;
      text-align: center;
      padding: 25px 20px;
    }

    .coagro-ayuda-imagen img {
      width: 130px;
    }
  }
}