/* Variables */

:root {

    /* Base color */
    --color-primary: #F6B92C;
    --color-secondary: #222222;
    --color-accent: #FBCA2F;

    --color-primary-light: #ffcd58;
    --color-secondary-light: #ECECEC;
    
    --color-primary-dark: #efab0d;
    --color-secondary-dark: #a3a3a3;

    --color-white: #f5f5f5;
    --color-black: #000000;

    /* Messages color */
    --color-success: #3ec43e;
    --color-error: #ff5151;
    --color-warning: #ffee00;

    /* Text sizes */
    --size-xs: 0.7vw;
    --size-sm: 0.8vw;
    --size-md: 1.2vw;
    --size-lg: 1.6vw;
    --size-xl: 2vw;
    --size-2xl: 3vw;
    --size-3xl: 4vw;
    --size-4xl: 5vw;

    /* Tipografías */
    --font-primary: primary;
    --font-secondary: primary;
}

/* Actualizar solo URL de las fuentes según convenga (convertir a formato woff) */

/* Primary Font */
@font-face {
    font-family: primary;
    font-style: normal;
    font-weight: 200;
    src: url(/assets/fonts/suisse/suisseintl-thin.woff);
}
@font-face {
    font-family: primary;
    font-style: normal;
    font-weight: 300;
    src: url(/assets/fonts/suisse/suisseintl-light.woff);
}
@font-face {
    font-family: primary;
    font-style: normal;
    font-weight: 350;
    src: url(/assets/fonts/suisse/suisseintl-book.woff);
}
@font-face {
    font-family: primary;
    font-style: normal;
    font-weight: 400;
    src: url(/assets/fonts/suisse/suisseintl-regular.woff);
}
@font-face {
    font-family: primary;
    font-style: normal;
    font-weight: 500;
    src: url(/assets/fonts/suisse/suisseintl-medium.woff);
}
@font-face {
    font-family: primary;
    font-style: normal;
    font-weight: 600;
    src: url(/assets/fonts/suisse/suisseintl-bold.woff);
}
@font-face {
    font-family: primary;
    font-style: normal;
    font-weight: 700;
    src: url(/assets/fonts/suisse/suisseintl-black.woff);
}


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

*::before,
*::after {
    display: block;
}

html, body{
    width: 100%;
    overflow-x: hidden;
}

img,
picture,
video,
iframe,
figure {
    max-width: 100%;
    width: 100%;
    display: block;
    object-position: center center;
}

a {
    display: block;
    text-decoration: none;
    color: inherit;
    font-size: inherit;
}

p a {
    display: inline;
}



h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
blockquote,
i,
b,
u,
em {
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

strong{
    font-weight: 600;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

::selection {
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

form,
input,
textarea,
select,
button,
label {
    font-family: inherit;
    font-size: inherit;
    hyphens: auto;
    background-color: transparent;
    color: inherit;
    display: block;
    appearance: none;
}

table,
tr,
td {
    border-collapse: collapse;
    border-spacing: 0;
}

svg {
    width: 100%;
    display: block;
    fill: currentColor;
}

body {
    min-height: 100vh;
    /* (Opcional) */
    hyphens: manual;
    /* (Opcional) */
    font-smooth: always;
    /* (Opcional) */
    -webkit-font-smoothing: antialiased;
    /* (Opcional) */
    -moz-osx-font-smoothing: grayscale;
}

#smooth-content {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}





/*  Tableta  */
@media only screen and (max-width: 1024px) {

    :root {
        /* Text sizes */
        --size-xs: 14px;
        --size-sm: 15px;
        --size-md: 18px;
        --size-lg: 24px;
        --size-xl: 30px;
        --size-2xl: 40px;
        --size-3xl: 50px;
        --size-4xl: 60px;
    }

}





/*  Móvil  */
@media only screen and (max-width: 768px) {

    :root {
        /* Text sizes */
        --size-xs: 14px;
        --size-sm: 14px;
        --size-md: 16px;
        --size-lg: 20px;
        --size-xl: 26px;
        --size-2xl: 32px;
        --size-3xl: 40px;
        --size-4xl: 50px;
    }

}