/* 🎨 Variables globales */
:root {
    --color-fondo: #6650e2;
    --color-texto: #222;
    --fuente-general: "Montserrat", sans-serif;
}

/* 🔄 Scroll suave */
html,
body {
    scroll-behavior: smooth;
}

/* 🧩 Estilos base */
body {
    background-color: var(--color-fondo);
    color: var(--color-texto);
    font-family: var(--fuente-general);
    margin: 0;
    padding: 0;
}




.spinner-dots {
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner-dots div {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #3498db;
    border-radius: 50%;
    animation: spinner-dots 1.2s linear infinite;
}

.spinner-dots div:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.spinner-dots div:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.3s;
}

.spinner-dots div:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.6s;
}

.spinner-dots div:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 0.9s;
}

@keyframes spinner-dots {

    0%,
    100% {
        transform: scale(0.3);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}