
/*------------------------------------------------------*/
/*
/*  Base CSS
/*
/*------------------------------------------------------*/

/* ---------------------------
GLOBAL
--------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --color-bg-2: #0a0a0a;
    --color-dark: #0a0a0a;
    --color-gray: #6c757d;
    --color-brand: #cc9933;
    --color-brand-light: #cbaf72;
    --color-white: #ffffff;
    --color-lightgray: #f7f7f8;

    --font-main: "Inter", sans-serif;
    --font-titles: "Tinos", serif;
    --font-titles: "Inter", sans-serif;
    --nav-height: 53vh;
    --main-translate: -53%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: var(--font-main);
}

body {
    width: 100%;
    font-weight: 300;
}


/* ---------------------------
TEXT
--------------------------- */

a {
    text-decoration: none;
}

h1,
h2,
h3 {
    font-weight: 400;
    line-height: 1;
    /* font-family: "Tinos", serif; */
}

/* h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    max-width: 12ch;
    margin-bottom: 4rem;
} */

p {
    line-height: 1.6;
}

.bg-light { 
    width: 100%;
    background: var(--color-lightgray);
     margin: clamp(1rem, 5vw, 4rem) 0;
     padding: clamp(1rem, 5vw, 4rem) 0;
}

/* ---------------------------
CONTAINER / SECTION
--------------------------- */

.container {
    margin: 0 clamp(1rem, 5vw, 4rem);
    width: 100vw;
    display: flex;
    flex-direction: column;
}

section {
    padding: 8em 0;
    display: flex;
}

@media (max-width: 900px) {

    /* .container {
        width: calc(100% - 40px);
    } */

    section {
        padding: 6rem 0;
    }
}


/* ---------------------------
MARGINS utilities
--------------------------- */
.my-4 {
    margin: 4rem 0;
}
.mt-4 {
    margin: 4rem  0 0 0;
}

.my-5 {
    margin: 5rem 0;
}

/*margen del 50% izq */
.m-50vw {
    width: 50%;
    padding-right: 5vw;
    max-width: 650px;
    transform: translateX(calc(50vw - 40px));
}
@media (max-width:1000px) {
    .m-50vw {
        width: 100%;
        padding-right: 10vw;
        transform: translateX(0);
    }
}

/* ---------------------------
BUTTONS
--------------------------- */
button {
    bottom: 0;
    outline: none;
}