/*=========================================================
  RESET CSS
  MundoArte Premium UI
=========================================================*/

/*-----------------------------
  Box Model
-----------------------------*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/*-----------------------------
  HTML
-----------------------------*/

html{

    font-size:16px;

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

}

/*-----------------------------
  Body
-----------------------------*/

body{

    min-height:100vh;

    background:var(--background);

    color:var(--text);

    font-family:var(--font-body);

    line-height:1.6;

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

/*-----------------------------
  Images
-----------------------------*/

img,
picture{

    display:block;

    max-width:100%;

    user-select:none;

    -webkit-user-drag:none;

}

/*-----------------------------
  SVG
-----------------------------*/

svg{

    display:block;

}

/*-----------------------------
  Links
-----------------------------*/

a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition-fast);

}

/*-----------------------------
  Lists
-----------------------------*/

ul,
ol{

    list-style:none;

}

/*-----------------------------
  Buttons
-----------------------------*/

button{

    border:none;

    background:none;

    font:inherit;

    cursor:pointer;

}

/*-----------------------------
  Inputs
-----------------------------*/

input,
textarea,
select{

    border:none;

    outline:none;

    font:inherit;

    background:transparent;

}

/*-----------------------------
  Tables
-----------------------------*/

table{

    border-collapse:collapse;

    border-spacing:0;

}

/*-----------------------------
  Selection
-----------------------------*/

::selection{

    background:var(--primary);

    color:#fff;

}

/*-----------------------------
  Focus
-----------------------------*/

:focus-visible{

    outline:2px solid var(--primary);

    outline-offset:4px;

}

/*-----------------------------
  Scrollbar
-----------------------------*/

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        to bottom,
        var(--primary),
        var(--primary-light)
    );

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*-----------------------------
  Forms
-----------------------------*/

textarea{

    resize:vertical;

}

/*-----------------------------
  Media
-----------------------------*/

iframe{

    border:0;

    width:100%;

}

/*-----------------------------
  Disabled
-----------------------------*/

button:disabled,
input:disabled{

    opacity:.6;

    cursor:not-allowed;

}

/*-----------------------------
  Utility
-----------------------------*/

[hidden]{

    display:none !important;

}