/* =========================================================
   MOTIVACIÓN SALSERA
   Global styles
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --red: #a90020;
    --red-dark: #820018;
    --red-light: #c51c3a;

    --orange: #d98632;
    --orange-light: #e7a54d;

    --cream: #fff8f1;
    --cream-dark: #f8eee5;

    --white: #ffffff;

    --black: #241b1b;
    --text: #302727;
    --muted: #776d68;

    --border: #eaded4;

    --shadow-sm: 0 5px 20px rgba(50, 20, 15, 0.08);
    --shadow-md: 0 15px 40px rgba(50, 20, 15, 0.12);
    --shadow-lg: 0 25px 60px rgba(50, 20, 15, 0.18);

    --radius: 18px;
    --radius-lg: 30px;

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--cream);
    color: var(--text);

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
select {
    font: inherit;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}
