@font-face {
    font-family: avenir;
    src: url("fuentes/Avenir.ttc") format("opentype");
}

@font-face {
    font-family: avenir_b;
    src: url("fuentes/avenirb.ttf") format("opentype");
}

@font-face {
    font-family: avenir_l;
    src: url("fuentes/avenirl.ttf") format("opentype");
}

@font-face {
    font-family: avenir_nb;
    src: url("fuentes/avenirnb.woff") format("opentype");
}

@font-face {
    font-family: avenir_n;
    src: url("fuentes/avenirnr.woff") format("opentype");
}

:root {
    --morado: #522D6D;
    --morado2: #8E4895;
    --morado3: #f3eff8;
    --amarillo: #F6D44C;
    --azulclaro: #79A3DC;
    --claro: #F5F6F6;
    --fondo: #ffffff;
    --purpura: purple;
    --oscuro: #484f56;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* border: solid 1px greenyellow; */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: avenir;
    background-color: var(--fondo);
}

article {
    width: 100%;
    margin: 15px 0;
    padding: 0 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

div {
    margin: auto;
}

a {
    text-decoration: none;
}

h1 {
    font-family: avenir_nb;
    padding: 10px 10px;
    color: var(--morado);
    font-size: 50px;
    line-height: 52px;
    text-align: center;
}

h2 {
    color: var(--azulclaro);
    font-family: avenir_nb;
    font-size: 23px;
    line-height: 28px;
    padding: 0;
}

h3 {
    font-family: avenir;
    font-weight: 900;
    color: #6a737c;
}

p {
    font-family: avenir_n;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    color: var(--oscuro);
    margin: 0 0 20px 0;

}

.fila {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.columna {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn_catalogo {
    color: white;
    background-color: var(--morado);
    width: 220px;
    min-height: 30px;
    margin: 15px 25px 30px 0;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 300ms ease-in-out;
    border: none;
    cursor: pointer;
}

.btn_catalogo:hover {
    background-color: var(--morado2);
}

.btn_catalogo p {
    font-family: avenir_b;
    font-size: 0.9em;
    margin: 7px 0 5px 0;
    text-transform: uppercase;
    color: white;
}

/* .modal {
    background-color: rgba(82, 45, 109, 0.5);
} */