/* ============================= */
/* BASE CSS - VARIABLES Y RESET */
/* Aqui va lo mas importante;*/
/* Nunca pongas secciones; solo reglas globales*/
/* ============================= */

:root{
    --purple:#635E8F;
    --green:#21AC9D;
    --orange:#F79B15;
    --white:#ffffff;
    --gray:#f4f6f8;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Segoe UI, Arial, sans-serif;
}

body{
    background:var(--white);
    color:#333;
    line-height:1.6;
}
