/* =====================================================
   INFOTEK SHOP
   ESTILOS GENERALES
===================================================== */

:root{

    --color-primario:#0d6efd;
    --color-secundario:#212529;
    --color-claro:#f8f9fa;
    --color-fondo:#f5f7fa;
    --color-texto:#343a40;
    --color-blanco:#ffffff;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--color-fondo);
    color:var(--color-texto);
    font-family:Arial,Helvetica,sans-serif;
}

a{
    text-decoration:none;
    transition:.3s;
}

img{
    max-width:100%;
    display:block;
}

h1,h2,h3,h4,h5,h6{
    font-weight:700;
}

.container{
    position:relative;
}

.btn{
    border-radius:8px;
}

.btn-primary{
    font-weight:600;
}

.alert{
    border:none;
    border-radius:10px;
}