/* FUENTES */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* fuente */
    --body-font: 'Montserrat', sans-serif;
    --titulo-font: 'Montserrat', sans-serif;

    /* COLORES */


    --rojo: #EC202D;
    --negro: black;
    --blanco: white;
    /* otros */
    --ancho: 1600px;
    /* --ancho: 100%; */
}

/* BASE */

*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-weight: 400;
    background-color: var(--blanco);
    color: var(--negro);
    max-width: var(--ancho);
    margin: auto;
}

h1,
h2,
h3,
p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.rojo {
    color: var(--rojo)
}

.blanco {
    color: var(--blanco)
}

.negro {
    color: var(--negro)
}

.fondo_blanco {
    background-color: var(--blanco);
    color: var(--negro);
}

.noshow {
    display: none !important;
}

.scrolled {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.marca_rojo {
    border: 1px solid red;
}

.titulo {
    font-size: 3rem;
    font-weight: 800;
}

.subtitulo {
    font-size: 2rem;
    font-weight: 700;
}

.semititulo {
    font-size: 1.5rem;
    font-weight: 700;
}

.texto {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2.5rem;
}

.a-izquierda {
    text-align: left;
}

.a-derecha {
    text-align: right;
}

.a-centro {
    text-align: center;
}

.listados {
    text-align: start;
}


/* FORMATO */
.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container .logo {
    transition: transform 0.3s ease;
}


.container .logo:hover {
    transform: scale(1.5);
}

/* ESTILOS MOVIL */

@media only screen and (max-width: 390px) {
    :root {
        --ancho: 100%;
    }

    html {
        font-size: 10px;
    }
}

@media only screen and (max-width: 1024px) {
    :root {
        --ancho: 100%;
    }

    html {
        font-size: 12px;
    }



}