 /* Estilos adicionales */


    /*
    background-color: #CAC0B3;

    background: rgb(131,58,180);
background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    */

    /*
    background: rgb(222,143,51);
background: linear-gradient(90deg, rgba(222,143,51,1) 0%, rgba(176,46,46,1) 45%, rgba(249,150,10,1) 100%);
*/
    





.color-change-2x {
  -webkit-animation: color-change-2x 2s linear infinite alternate both;
          animation: color-change-2x 2s linear infinite alternate both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-5-30 13:24:46
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation color-change-2x
 * ----------------------------------------
 */
 @-webkit-keyframes color-change-2x {
  0% {
    background: rgba(222,143,51,1);
  }
  100% {
    background: rgba(176,46,46,1);
  }
}
@keyframes color-change-2x {
  0% {
    background:rgba(222,143,51,1);
  }
  100% {
    background: rgba(176,46,46,1);
  }
}


        footer {
            background-color: #333;
            color: #fff;
            padding: 40px 0;
        }

        footer a {
            color: #fff;
        }

        footer a:hover {
            color: #ccc;
        }



        img.img-fluid.img-thumbnail {
            width: 300px;
            height: 300px;
        }

        /* ------------------------------------------------------------------------------------------------- */

        .kodfun-galeri {
            display: flex;
            height: 20rem;
            gap: 1rem;
        }

        .kodfun-galeri>div {
            flex: 2;
            border-radius: 1rem;
            background-position: center;
            background-repeat: no-repeat;
            background-size: auto 100%;
            transition: all .8s cubic-bezier(.25, .4, .45, 1.4);

        }

        .kodfun-galeri>div:hover {
            flex: 5;
            cursor: pointer;
        }

        /* Ajustes de tamaño de imagen */
        .card-img-top {
            height: 200px;
            /* Tamaño deseado */
            object-fit: cover;
        }

        /* ------------------------------------------------------------------------------------------------- */
/* -------------------------botones Flotantes ------------------------------------------------------------------------ */
        

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s;
  }
  .floating-button:hover {
    transform: scale(1.1);
  }
  .floating-button i {
    transition: transform 0.3s;
  }
  .floating-button:hover i {
    transform: rotate(360deg);
  }
  .whatsapp-button {
    background-color: #25D366;
  }
  .phone-button {
    background-color: #0A74DA;
  }

  /* ----Animar boton de envio------------------------------------------------------------------------------------------------------------------------- */
  @keyframes button-click {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  .animate-click {
    animation: button-click 0.3s ease-in-out;
  }
  
  @keyframes icon-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .animate-icon {
    animation: icon-spin 0.6s linear infinite;
  }
  /* ----------------------------------------------------------------------------------------------------------------------------- */



