* {
    scroll-behavior: smooth;
  }

  .img-container-dog {
    width: 100px;
    height: 100px;
  }

  .img-dog {
    transform: translateX(200%) rotate(50deg);
    width: 100%;
    height: 400px;
  }

  /* Swiper  */
  .swiper {
    width: 100%;
    height: 500px;
  }

  .img-carousel {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .icon-service {
    width: 100px;
    height: 100px;
  }

  .card-service {
    transform: translateX(600px);
  }

  .container-register {
    opacity: 0;
    transform: translateY(-50px);
  }

  .icon-social {
    width: 50px;
    height: 50px;
  }

  /* Card  */
  .card {
    position: relative;
    width: 300px;
    height: 200px;
    background-color: #f2f2f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
    box-shadow: 0 0 0 5px #ffffff80;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .card img {
    width: 100px;
    fill: #333;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
  }

  .card__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f2f2f2;
    transform: rotateX(-90deg);
    transform-origin: bottom;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .card:hover .card__content {
    transform: rotateX(0deg);
  }

  .card__title {
    margin: 0;
    font-size: 24px;
    color: #333;
    font-weight: 700;
  }

  .card:hover img {
    scale: 0;
  }

  .card__description {
    margin: 10px 0 0;
    font-size: 14px;
    color: #777;
    line-height: 1.4;
  }

header {
    position: sticky;

    top: 0;

    z-index: 1000;

}

nav {
    background-color: #ffffff;

}

nav .flex {
    gap: 1rem;

}

nav img {
    transition: transform 0.3s;

}

nav img:hover {
    transform: scale(1.05);

}

a {
    transition: color 0.3s;

}

a:hover {
    color: #3b82f6;

}

button:hover {
    background-color: #f3f4f6;

}

.card {
    width: 245px;
    /* Ajusta el ancho según sea necesario */
  }

  .icon-service {
    width: 65px;
    /* Ajusta el tamaño del icono */
    height: 80%;
  }

  .card {
    width: 245px;
    /* Ajusta el ancho según sea necesario */
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
  }

  .icon-product {
    width: 65px;
    /* Ajusta el tamaño del icono */
    height: auto;
    /* Mantiene la relación de aspecto */
  }

  .footer-wrapper {
    font-family: 'Arial', sans-serif; /* Fuente general */
}

.footer-content {
    padding: 20px; /* Espaciado interno */
}

.social-section {
    margin: 20px 0; /* Espaciado vertical */
}

.icon-social {
    width: 40px; /* Tamaño de los iconos de redes sociales */
    height: auto; /* Mantener proporciones */
    transition: transform 0.3s; /* Transición para el efecto hover */
}

.icon-social:hover {
    transform: scale(1.1); /* Efecto de escalado al pasar el ratón */
}

.footer-bottom {
    background-color: #f0f0f0; /* Color de fondo del pie de página */
    border-top: 1px solid #eaeaea; /* Línea superior para separación */
}

.footer-bottom h6 {
    margin: 0; /* Eliminar márgenes */
    color: #4a5568; /* Color del texto */
    font-size: 0.875rem; /* Tamaño de fuente */
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .social-section ul {
        flex-direction: column; /* Cambiar a columna en pantallas pequeñas */
        align-items: center; /* Centrar contenido */
    }
}