/* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: url("../img/pared.jpg") center ;
      background-size: cover;

      color: rgb(255, 255, 255);
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
    }

    header img {
      max-width: 220px;
      margin-bottom: 20px;
    }

    h1 {
      font-size: 2.2rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    p {
      font-size: 1.1rem;
      margin-bottom: 40px;
      color: #ffffff;
            font-weight: 600;

    }
   

    .links {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .link-card {
      background: url("../img/electronica.webp") no-repeat center center;
      background-size: cover;
      border-radius: 15px;
      padding: 25px;
      text-decoration: none;
      width: 310px;
      min-height: 280px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative; /* necesario para la cinta */
    }
    .link-card.nuevo {
      background: url("../img/bannerlimpieza.jpg") no-repeat center center;
      background-size: cover;
    }
    .link-card.ind {
      background: url("../img/montacarga.jpg") no-repeat center center;
      background-size: cover;
    }


    .link-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(245, 41, 123, 0.4);
      border: 1px solid rgba(245, 41, 123, 0.6);
    }

    .link-card i {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: #F5297B;
    }

    .link-card.nuevo i {
      color: #1bff02; /* verde para nuevo rubro */
    }
    .link-card.ind i {
      color: #cdd400; /* verde para nuevo rubro */
    }


    .link-card h2 {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: white;
    }
    .link-card.nuevo h2{
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: white;
    }

    .link-card p {
      font-size: 0.95rem;
      color: #e8e8e8;
      margin-bottom: 20px;
      margin-top: 80px;
      font-weight: 100;
    }
    .link-card.nuevo p {
      font-size: 0.95rem;
      color: #000000;
      margin-bottom: 20px;
      margin-top: 80px;
      font-weight: 100;
    }

    /* Botón dentro de la tarjeta */
    .link-card .btn {
      display: inline-block;
      padding: 8px 16px;
      background: #f5297b7f;
      color: #fff;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
      transition: transform 0.3s ease, background-color 0.3s ease;
      animation: pulse 2s infinite;
    }
    /* Animación de latido suave */
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }


    .link-card .btn:hover {
      background: #d81d68;
      transform: scale(1.05);
    }

    .link-card.nuevo .btn {
      background: #1bff0281; 
    }
    .link-card.ind .btn {
      background: #cdd40083; 
    }

    .link-card.nuevo .btn:hover {
      background: #1bff02;
    }
    .link-card.ind .btn:hover {
      background: #cdd400;
    }

    .link-card.nuevo:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 212, 14, 0.4);
      border: 1px solid rgb(0, 255, 17);
    }
    .link-card.ind:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(194, 212, 0, 0.4);
      border: 1px solid rgba(208, 212, 0, 0.6);
    }

  

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
  color: #ffffff;
  flex-wrap: wrap; /* opcional para pantallas pequeñas */
}

.footer-content {
  display: flex;
  align-items: center;
}

.footer img {
  max-width: 150px;
  margin: 0;
  margin-left: 10px;
}


.footer a:hover {
  text-decoration: underline;
}

.footer-right {
  font-size: 14px;
}


    @media (max-width: 768px) {
      .link-card {
        width: 100%;
        max-width: 320px;
      }
    }