/********** Template CSS **********/
:root {
    --primary: #852064;
    --light: #F6F7F8;
    --dark: #1A2A36;
}
.panel {
    height: calc(100vh - 75px) !important; /* Calcula la altura en función de la altura de la pantalla menos la altura del menú */
    background-color: #f0f0f0; /* Color de fondo del panel (puedes personalizarlo) */
}
.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.wspbtncotiza {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.custom-card {
	background-color: #852064;
	color: white;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
       position: relative;
    overflow: hidden; /* Oculta el desbordamiento */
}

.portfolio-img#Prodcaja::before {
     content: "";
    background-image: url("../img/Prod_Caja2.jpg"); /* La imagen de fondo que deseas mostrar */
    background-size: cover;
    background-position: center;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 1.1s; /* Agregamos una transición suave para la opacidad */
}
.portfolio-img#Prodcaja:hover::before {
    opacity: 1; /* Al hacer hover, mostramos la imagen */
}
.portfolio-img#Prodpapel::before {
     content: "";
    background-image: url(../img/Prod_Papeleria2.jpg); /* La imagen de fondo que deseas mostrar */
    background-size: cover;
    background-position: center;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 1.1s; /* Agregamos una transición suave para la opacidad */
}


.portfolio-img#Prodpapel:hover::before {
    opacity: 1; /* Al hacer hover, mostramos la imagen */
}

.portfolio-item:hover .portfolio-img::before {
    width: 100%;
	height: 100%;
    left: 0;
}



.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
/*CARDS */
 
/*-----------------
Pixel Grid
------------------*/
.pixel-grid{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 15;
  opacity: .2;
  display: none;
}

#toggle-grid{
  position: fixed;
  top: 150px;
  right: 2px;
  z-index: 16;
  color: white;
  display: inline-block;
  /*border: 2px ridge white;*/
  font-size: 1.8em;
  width: 1.8em;
  text-align: center;
  line-height: 1.85em;
  background: #666;
  border-radius: 50%; /* or 50% width & line-height */
  opacity: .3;
  -webkit-transition: background 1s ease-out;
  transition: background 1s ease-out;
  display: none;
}

#toggle-grid:hover{
  cursor: pointer;
  background: repeating-linear-gradient(to bottom right,rgb(0, 0, 0) 0%,rgb(226, 226, 226) 61.4%,rgb(226, 226, 226) 66.9%,rgb(226, 226, 226) 76.6%,rgb(226, 226, 226) 88.7%,rgb(255, 255, 255) 100%);
}

.orange{
  color: orange !important;
  -webkit-box-shadow: 2px 2px 3px #888;
          box-shadow: 2px 2px 3px #888;
  opacity: 1 !important;
}
/*------------------*/
/* Botón Cotización*/
/* Clase personalizada para el botón con color #852064 */
.pxl-btn {
    color: #FFFFFF; /* Color del texto */
    background-color: #852064; /* Color de fondo personalizado */
    border-color: #852064; /* Color del borde personalizado (si es necesario) */
}

/* Cambiar el color del texto en estado "hover" */
.pxl-btn:hover {
    color: #FFFFFF; /* Cambiar el color del texto en hover */
    background-color: #6B1958; /* Cambiar el color de fondo en hover (opcional) */
    border-color: #6B1958; /* Cambiar el color del borde en hover (opcional) */
}

.pxl-text {
    color: #852064;
}
/*Íconos*/

/* Define la animación de giro */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Aplica la animación al hacer hover */
.fa-spin-on-hover:hover {
    animation: spin 2s linear infinite; /* Duración y tipo de animación */
}

/* Define la animación "beat" */
@keyframes beat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.1); }
}

/* Aplica la animación "beat" al hacer hover */
.fa-beat-on-hover:hover {
    animation: beat 1.1s infinite; /* Duración y tipo de animación */
}

  
/* Estilos para el div que se moverá */
#divMovible {
	width: 300px;
	height: 200px;
	background-color: #f0f0f0;
	transition: transform 0.5s ease-in-out;
}
/* Estilos para las categorías */
.categorias {
    display: flex;
    justify-content: space-between;
}

.categoria {
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.categoria.active {
    background-color: #007bff; /* Color de fondo cuando está seleccionada */
    color: #fff; /* Color del texto cuando está seleccionada */
}

.categoria:hover {
    background-color: #f0f0f0; /* Color de fondo al pasar el mouse */
}

.list-inline {
    text-align: center;
}

.list-inline li {
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    margin-right: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.list-inline li:hover {
    background-color: #f8f8f8;
    color: #333;
}

.list-inline li.active {
    background-color: #333;
    color: #fff;
}

.bg-banner {
    width: 100%;
    height: 100vh; 
    object-fit: cover;
}
.navbar {
    background-color: rgba(227,225,225,0.3) !important;
    transition: background-color 0.3s ease-in-out;
}

/* Barra de navegación de color sólido al hacer scroll */
.navbar-scrolled {
    background-color: #E3E1E1 !important; /* Cambia el color de fondo aquí */
}

/* cards */
.card-custom {
  overflow: hidden;
  min-height: 450px;
	
  box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
}
.card-custom-2 {
  overflow: hidden;
  min-height: 220px;
	
  box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
}
.card-custom-3 {
  overflow: hidden;
  min-height: 250px;
	
  box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
}
.card-custom-img {
  height: 200px;
  min-height: 200px;
	
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-color: inherit;
}

/* First border-left-width setting is a fallback */
.card-custom-img::after {
	
  position: absolute;
  content: '';
  top: 161px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top-width: 40px;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 545px;
  border-left-width: calc(575px - 5vw);
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: inherit;
}


.card-custom-avatar img {
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
  position: absolute;
  top: 100px;
  left: 1.25rem;
  width: 100px;
  height: 100px;
}

.card-custom-avatar i {
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
  position: absolute;
  top: 100px;
  left: 1.25rem;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
	color: var(--primary);
	/*background: white; /* Cambia el fondo a blanco */
}

/***************** Estilos para .cpxl-1 ************************/
/***************** Estilos para .cpxl-1 ************************/
.cpxl-1 {
    transition: box-shadow 0.3s ease-in-out;
}

.cpxl-1:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.2);
}

/***************** Estilos para .cpxl-2 ************************/
.cpxl-2 {
    transition: box-shadow 0.3s ease-in-out;
	
}

.cpxl-2:hover {
   
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.2);
    border-image: linear-gradient(45deg, #961c78, #5276aa, #decc66) 1 !important; /* Cambia el borde al degradado lineal en estado de hover */
}

/***************** Estilos para .cpxl-3 ************************/
.cpxl-3 {
    transition: box-shadow 0.3s ease-in-out;
}

.cpxl-3:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.2);
}
/*Social Network*/
    /* Estilos adicionales personalizados si es necesario */
    /* Estilos adicionales personalizados si es necesario */
    .floating-social-buttons {
      position: fixed;
      bottom: 40px;
      right: 20px; /* Cambiar de 'right' a 'left' para alinear los botones a la izquierda */
      z-index: 1000;
	  
    }
    .floating-social-buttons .btn {
      margin-bottom: 10px;
      display: block;
      position: relative;
		width: 100%;
		height: 100%;
    }
.v-line {
  width: 5px; /* Ancho de la línea vertical */
  height: 100%; /* Altura de la línea vertical */
  left: 50%; /* Posición izquierda centrada */
  position: absolute;
  background: linear-gradient(to bottom, #961c78, #5276aa, #decc66); /* Gradiente lineal con tres colores */
}
/*Botones social*/
.social-networks__link{
background-color: aliceblue;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.2);
	color: #961c78;
}

.social-networks__link:hover {
  tw-bg-opacity: 1;
  background-color: #961c78;
  color: white;
  transform: scale(1.3); /* Escala el enlace al 110% de su tamaño original */
  transition: transform 0.2s; /* Agrega una transición suave para la animación */
}
/*tooltipp*
/* Personalizar los tooltips de Bootstrap */
/* Estilos para tooltips personalizados */
/* Estilos para tooltips personalizados */
.social-networks__link[aria-describedby^="tooltip"] {
  position: relative; /* Asegura que el tooltip esté posicionado correctamente */
}

.social-networks__link:hover::before {
  content: attr(title); /* Muestra el texto del tooltip */
  position: absolute;
  background-color: #961c78; /* Color de fondo */
  color: white; /* Color del texto */
  padding: 4px 8px; /* Espaciado interno */
  border-radius: 4px; /* Borde redondeado */
  font-size: 11px; /* Tamaño de fuente */
  white-space: nowrap; /* Evita el desbordamiento del texto */
  z-index: 999; /* Asegura que el tooltip esté por encima de otros elementos */
  top: 50%; /* Coloca el tooltip a la mitad verticalmente */
  right: 100%; /* Coloca el tooltip a la derecha del enlace */
  transform: translateY(-50%); /* Centra verticalmente el tooltip */
  opacity: 0; /* Hace que el tooltip esté inicialmente oculto */
  transition: opacity 0.2s; /* Agrega una transición suave */
}

.social-networks__link:hover::before {
  opacity: 1; /* Muestra el tooltip al pasar el mouse */
}
/* Ocultar Cards 2 y 3 en pantallas de menos de 768px (tamaño de pantalla móvil) */
@media (max-width: 767px) {
  #hiddenCards {
    display: none;
  }
}
/*Hover automático*/
 .whatsapp-button.active:hover {
            background-color: #961c78; /* Cambia el color de fondo en el hover */
            color: white;
            transform: scale(1.3); /* Escala el enlace al 130% de su tamaño original */
        }

/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

@media (max-width: 768px) {
    .imglogosclientes img {
        max-width: 100px;
		width:100%;
    }
}

/* 
---------------------------------------------
banner
--------------------------------------------- 
*/
.transparent-input {
    background-color: rgba(255, 255, 255, 0.2); /* Ajusta la transparencia aquí */
    border: none;
    width: 150px; /* Ajusta el ancho del input aquí */
    padding: 5px; /* Ajusta el relleno del input aquí */
}

.transparent-input::placeholder {
    color: rgba(0, 0, 0, 0.6); /* Ajusta la transparencia del placeholder aquí */
}

.transparent-input:focus {
    background-color: rgba(255, 255, 255, 0.6); /* Cambia la transparencia al enfocar */
}
.btn-outline-primary{color:rgba(255, 255, 255, 0.6);border-color:rgba(255, 255, 255, 0.6)
}
.btn-outline-primary:hover{
	color:#000;background-color:#961c78;border-color:#961c78
}
.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{
	box-shadow:0 0 0 .25rem rgba(50,195,108,0.5)
}
.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{
	color:#961c78;background-color:#961c78;border-color:#961c78
}
.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{
	box-shadow:0 0 0 .25rem rgba(50,195,108,0.5)
}
.btn-outline-primary:disabled,.btn-outline-primary.disabled{
	color:#961c78;background-color:transparent
}

/*****/
        .transparente {
            opacity: 0.4; /* Ajusta el nivel de transparencia (1 es opaco, 0 es completamente transparente) */
        }

        .ver-mas-btn {
            padding: 10px;
            background-color: #961c78; /* Color de fondo del botón */
            color: white; /* Color del texto del botón */
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .ver-mas-btn:hover {
            background-color: #961c77; /* Cambio de color al pasar el ratón sobre el botón */
			  transform: scale(1.03); /* Escala el enlace al 110% de su tamaño original */
  transition: transform 0.2s; /* Agrega una transición suave para la animación */
        }