@import url("variables.efb9891f0781.css");

/*==================================================
=                    RESET                          =
==================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

/*==================================================
=                    HTML                           =
==================================================*/

html{

    scroll-behavior:smooth;

}

/*==================================================
=                    BODY                           =
==================================================*/

body{

    min-height:100vh;

    background:var(--color-background);

    color:var(--color-text);

    font-family:var(--font-primary);

    font-size:16px;

    line-height:1.5;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

/*==================================================
=                  IMÁGENES                         =
==================================================*/

img{

    display:block;

    max-width:100%;

}

/*==================================================
=                   ENLACES                         =
==================================================*/

a{

    color:inherit;

    text-decoration:none;

}

/*==================================================
=                  LISTAS                           =
==================================================*/

ul,
ol{

    list-style:none;

}

/*==================================================
=                 FORMULARIOS                       =
==================================================*/

button,
input,
textarea,
select{

    font:inherit;

    border:none;

    outline:none;

    background:none;

}

/*==================================================
=                    BOTONES                        =
==================================================*/

button{

    cursor:pointer;

    transition:var(--transition);

}

/*==================================================
=                  ENCABEZADOS                      =
==================================================*/

h1{

    font-size:2rem;

    font-weight:800;

    color:var(--color-text);

}

h2{

    font-size:1.3rem;

    font-weight:700;

}

h3{

    font-size:1rem;

    font-weight:700;

}

/*==================================================
=                  PÁRRAFOS                         =
==================================================*/

p{

    color:var(--color-text-light);

}

/*==================================================
=                  UTILIDADES                       =
==================================================*/

.hidden{

    display:none !important;

}

.text-center{

    text-align:center;

}

.text-right{

    text-align:right;

}

.full-width{

    width:100%;

}

/*==================================================
=               CONTENEDOR GENERAL                  =
==================================================*/

.container{

    width:min(100% - 2rem, var(--container-width));

    margin-inline:auto;

}

/*==================================================
=                  SCROLLBAR                        =
==================================================*/

::-webkit-scrollbar{

    width:8px;

    height:8px;

}

::-webkit-scrollbar-track{

    background:transparent;

}

::-webkit-scrollbar-thumb{

    background:var(--color-border);

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--color-primary);

}

/*==================================================
=                  SELECCIÓN                        =
==================================================*/

::selection{

    background:var(--color-primary);

    color:var(--color-white);

}