
@font-face {
    font-family: 'Caviar Dreams';
    src: url('/src/demo/assets/fonts/CaviarDreams/CaviarDreams.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


:root{
    --background-color: #EBDAFF;
    --text-color-purple: #ab67fa;
    --background-color-rgb: 245,240,255;
    --background-color-green: #C1FC6E;
}

html{
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255);
    border-radius: 15px;
}
body{
    height: 100vh;
    margin: 0;
    font-family: 'Caviar Dreams', sans-serif;
}

h1, h2, h3, h4, .btn-text ul li{
    font-family: 'Caviar Dreams', sans-serif;
}

p{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
}

/* Estilos generales para la barra de desplazamiento */
::-webkit-scrollbar {
  width: 8px; /* ancho fino */
}

/* Fondo del scrollbar */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Color del thumb (la parte que se arrastra) con degradado */
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: linear-gradient(to bottom, #CEA3FF, #D6FF89);
}

/* Opcional: al pasar el mouse */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #D6FF89, #EBDAFF);
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    background: #25d366;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}
.whatsapp-float img {
    width: 32px;
    height: 32px;
    filter: invert(1);
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s, color 0.2s;
}

footer a:hover {
    transform: scale(1.08);
    color: #00b894;
}
