@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: "Gotham";
    src: url(fuentes/Gotham-Light.otf) format("opentype");
    font-weight: 200;
    style: normal;
}
@font-face {
    font-family: "Gotham";
    src: url(fuentes/Gotham-BookItalic.otf) format("opentype");
    font-weight: 300;
    style: italic;
}
@font-face {
    font-family: "Gotham";
    src: url(fuentes/Gotham-Medium.otf) format("opentype");
    font-weight: 400;
    style: normal;
}
@font-face {
    font-family: "Gotham";
    src: url(fuentes/Gotham-Bold.otf) format("opentype");
    font-weight: 500;
    style: normal;
}
@font-face {
    font-family: "Gotham";
    src: url(fuentes/Gotham-Black.otf) format("opentype");
    font-weight: 600;
    style: normal;
}

:root {
    --color: #eb602c;
    --texto: #605551;
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
}
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    font: 16px "Gotham", Arial, Helvetica, sans-serif;
}

a { border: 0; text-decoration: none; outline: none; color: inherit; }

.contenedor {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-flow: column nowrap;
}
header {
    flex: 0 0 auto;
    background-color: var(--color);
    color: #fff;
    font-size: 0.85vw;
}
.cuerpo {
    flex: 1 1 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-content: center;
    padding: 1.2em 0 0 20vw;
    margin-bottom: -11vh;
    background: url(imagenes/adorno.png) 1vw center / contain no-repeat;
}
footer {
    flex: 0 0 auto;
    position: relative;
    pointer-events: none;
    text-align: right;
    margin-right: 4vw;
}
.alineadorCabecera {
    display: inline-block;
    position: relative;
    text-align: right;
    margin-left: 3vw;
}
h1, h2, h3 {
    margin: 0;
}
h1 {
    font-weight: 600;
    font-size: 4.375em;
    line-height: 1em;
}
h2 {
    position: absolute;
    right: 0;
    bottom: -1em;
    font-weight: 500;
    font-size: 2.125em;
    color: var(--color);
    line-height: 0.9em;
}
h3 {
    margin-top: 0.7em;
    font-weight: 400;
    font-size: 1.75em;
    line-height: 0.8em;
}

article {
    flex: 0 0 auto;
    min-width: 27.5em;
    margin-top: 2em;
    font-weight: 400;
    color: var(--texto);
}
article p {
    margin-left: 1em;
    font-weight: 200;
}
article p span {
    font-weight: 500;
    color: var(--color);
}
article table {
    margin: 0.5rem;
}
article td {
    padding: 0.5rem;
    vertical-align: top;
    font-weight: 400;
    color:var(--color);
}
article td:first-child {
    font-weight: 200;
    color:var(--texto);
}
article td span {
    font-size: 0.9em;
    font-weight: 300;
    color: #000;
}
.acceso {
    flex: 1 1 100%;
    margin: 2em 0;
    text-align: center;
    color: var(--texto);
}
.botonAcceso {
    display: inline-block;
    margin: 1em;
    padding: 0.75em 1.25em;
    border-radius: 0.3em;
    background-color: var(--color);
    font-size: 1.25em;
    color: #fff;
    transition: transform 0.2s ease; 
}
.botonAcceso:hover {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.logo div {
    font-size: 1.25vh;
    line-height: 2vh; 
    color: var(--texto);
}
.logo img {
    width: 10.437vh;
    height: 9vh;
    vertical-align: bottom;
}

.codigo {
    position: absolute;
    bottom: 1em;
    left: 1em;
    font-size: 0.5em;
    font-weight: 200;
    white-space: nowrap;
    color:var(--texto);
}

/****** media queries *******/

@media screen and (min-width: 1500px) {
    header {
        font-size: 12.75px;
    }
}
@media screen and (max-width: 1150px) {
    .cuerpo {
        padding-left: 0;
        background: url(imagenes/adorno2.png) 5% / contain no-repeat;
    }
}
@media screen and (max-width: 925px) {
    header {
        font-size: 7.8625px;
    }
}
@media screen and (max-width: 620px) {
    header {
        font-size: 1.2vw;
    }
    article, .acceso {
        font-size: 3vw;
    }
    .botonAcceso {
        margin-bottom: 9vh;
    }
    .logo div {
        font-size: 10px;
        line-height: 16px; 
    }
    .logo img {
        width: 85px;
        height: 73px;
    }
}
@media screen and (max-height: 750px) {
    .logo div {
        font-size: 10px;
        line-height: 16px; 
    }
    .logo img {
        width: 85px;
        height: 73px;
    }
}