.text-colorize-apple {
    /* font-family: 'Nunito', sans-serif; */
    font-weight: 700;
    background-image: linear-gradient(to right,#0084ff,#fa17a3, #ff026b);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-colorize-apple2 {
    /* font-family: 'Nunito', sans-serif; */
    /* font-weight: 700; */
    background-image: linear-gradient(to right,#2e8fff,#c300ff, #ff026b);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-colorize-apple3 {
    /* font-family: 'Nunito', sans-serif; */
    /* font-weight: 700; */
    background-image: linear-gradient(to right,#fa17a3,#2e8fff, #ff026b);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

 @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

    .img-spinning {
        animation: spin 24s linear infinite;
    }
    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

  .whatsapp-button {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background-color: #25D366;
    color: white;
    border-color: transparent;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    animation: pulse 2s infinite;
    transition: background-color 0.3s;
  }

  .whatsapp-button:hover {
    background-color: #1ebe5d;
  }


  .image-blur {
        position: relative;
        display: inline-block;

        /* MÁSCARA RADIAL PRINCIPAL (bordes suavizados) */
        -webkit-mask-image: radial-gradient(circle,
            rgba(0,0,0,1) 55%,
            rgba(0,0,0,0) 100%
        );
        mask-image: radial-gradient(circle,
            rgba(0,0,0,1) 55%,
            rgba(0,0,0,0) 100%
        );

        /* MÁSCARA LINEAL PARA SUAVIZAR ARRIBA/ABAJO/IZQUIERDA/DERECHA */
        -webkit-mask-composite: intersect;
                mask-composite: intersect;

        -webkit-mask-image:
            radial-gradient(circle, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 100%),
            linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%),
            linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
        mask-image:
            radial-gradient(circle, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 100%),
            linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%),
            linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);

        /* DROP SHADOW SUAVE EN TODOS LOS LADOS */
        filter: drop-shadow(0 0 40px rgba(0,0,0,0.25))
                drop-shadow(0 0 80px rgba(0,0,0,0.20))
                drop-shadow(0 0 120px rgba(0,0,0,0.15));
    }


    @font-face {
        font-family: "Congenial";
        src: url("/landing_waok/fonts/congenial-regular.otf") format("truetype");
        font-weight: normal;
        font-style: normal;
    }

    @font-face {
        font-family: "Poppins";
        src: url("/landing_waok/fonts/Poppins-Normal-500.woff2") format("truetype");
        font-weight: normal;
        font-style: normal;
    }

    /* @font-face {
        font-family: "Inter";
        src: url("/landing_waok/fonts/Poppins-Normal-500.woff2") format("truetype");
        font-weight: normal;
        font-style: normal;
    } */


    .font-congenil-regular {
        font-family: "Congenial", sans-serif;
    }

    .font-poppins {
        font-family: "Poppins", sans-serif;
    }

    .font-inter {
        font-family: "Inter", sans-serif;
        line-height: 1.4;
    }

    .font-arial {
        font-family: "Arial", sans-serif;
    }

    .font-roboto {
        font-family: "Roboto", sans-serif;
    }

    .font-segoe {
        font-family: "Segoe UI", sans-serif;
    }

    .font-sora {
        font-family: "Sora", sans-serif;
    }

    .font-nunito {
        font-family: 'Nunito', sans-serif;
        /* font-weight: 700; */
    }
    .font-nunito-sans {
        font-family: 'Nunito+Sans', sans-serif;
        /* font-weight: 700; Puedes usar cualquier peso entre 200 y 1000 */

    }

    .font-12 {
        font-size: 12px;
    }
    .font-14 {
        font-size: 14px;
    }
    .font-15 {
        font-size: 15px;
    }
    .font-16 {
        font-size: 16px;
    }
    .font-18 {
        font-size: 18px;
    }
    .font-20 {
        font-size: 20px;
    }
    .font-22 {
        font-size: 22px;
    }

.text-decoration {
    /* text-decoration: line-through; */
    text-decoration-line: line-through;
    text-decoration-color: #1f1f1f;
        text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.rounded {
    border-radius: 16px !important;
}
