:root {
    --primary: #6f42c1; /* El morado de tu marca (Creatividad + Calidad) */
    --primary-dark: #5a32a3;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --bg-light: #f8f9fa;
    --font-main: 'Poppins', sans-serif; /* Fuente moderna y amigable */
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* === UX: BOTONES AMIGABLES (NO AGRESIVOS) === */
.btn-brand {
    background-color: var(--primary);
    color: white;
    border-radius: 50px; /* Redondo es más amigable */
    padding: 10px 25px;
    transition: all 0.3s ease;
    border: none;
    font-weight: 500;
}

    .btn-brand:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px); /* Pequeña elevación */
        box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
    }

.btn-outline-brand {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 8px 20px;
    background: transparent;
    font-weight: 600;
}

/* === BOTÓN FLOTANTE WHATSAPP (Acompañamiento) === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        color: white;
    }
@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}