
        @keyframes expand {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(3); opacity: 0; }
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: "mr-gabe", sans-serif;
            font-weight: 400;
            font-style: normal;
        }
        .gabe{
            font-family: "mr-gabe", sans-serif;
            font-weight: 400;
            font-style: normal;
        }
        .wave-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }
        .wave {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 2px solid rgba(176, 72, 131, 0.5);
            animation: expand 4s infinite linear;
            opacity: 0; /* Hace que todas las ondas sean invisibles antes de empezar */
        }   
        .wave:nth-child(1) {
            animation-delay: 0s; /* Se adelanta 3s para evitar que esté fija */
            opacity: 1;
        }
        .wave:nth-child(2) { animation-delay: 1s; }
        .wave:nth-child(3) { animation-delay: 2s; }
        .wave:nth-child(4) { animation-delay: 3s; }
        .canvas-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        .section-content {
            position: relative;
            z-index: 1;
        }
        .container-lm{
            max-width: 1200px;
        }
        .container-reviws{
            max-width: 500px;
        }
        .splide__pagination__page{
            background: #5C2B42;
        }
        .splide__pagination__page.is-active{
            background: #7F345F;
        }

        .bg-navbar{
            border-radius: 6px;
            background-color: rgba(238, 215, 230, 0.4);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease-in-out;
        }
        .bg-navbar-transparent{
            border-radius: 6px;
            background: transparent;
            backdrop-filter: blur(0px);
            transition: all 0.3s ease-in-out;
        }


        #lightbox {
            display: flex;
            justify-content: center;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }
        #lightbox-form {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            width: 100%;
        }
        .hidden{
            display: none !important;
            transition: all 0.3s ease-in-out;
        }
        .show{
            display: block;
        }
        .container{
            max-width: 500px;
        }
        .text-color-nav-white{
            color: white;
        }
        .text-color-nav-primary{
            color: #7F345F;
        }
        
        .iti{
            width: 100% !important;
            color: black;
                margin-top: 0.663rem
        }
        .iti__search-input{
            font-size: 20px;
        }
        
        .iti--inline-dropdown{
            width: 100% !important;
            margin-top: .75rem;
        }
        
        .iti__country.iti__highlight {
            background-color: e6e6e6 !important;
        }
        
        .iti__tel-input{
            margin-bottom: 2rem;
        }
  

  