@font-face {
    font-family: 'Futura';
    src: url('fonts/futuralt-webfont.woff2') format('woff2'),
         url('fonts/futuralt-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Futura';
    src: url('fonts/futuralt-bold-webfont.woff2') format('woff2'),
         url('fonts/futuralt-bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

body { min-width: 320px; font-family: 'Futura', sans-serif; margin: 0; font-size: 16px }
img { max-width: 100%; height: auto; display: block } figure { margin: 0; padding: 0 }
.texto p img { display: inline-block }
h2 { font-weight: bold }
a { color: #cc2ea3 }
p { text-align: justify }
 
header { background: #2066A5 } header h1 { margin: 0; padding: 10px; max-width: 80px }
header .content, footer .content { display: flex; width: 100%; padding: 20px; box-sizing: border-box; max-width: 1200px; margin: auto }
header nav { display: flex; align-items: center; justify-content: flex-end; width: 100%; flex-shrink: 1 }
header nav ul { display: flex; list-style: none; padding: 0; align-items: center; }
header nav ul li { margin: 10px }
header nav ul a { color: white; text-decoration: none; display: block; padding: 10px; font-size: 19px; font-weight: bold; transition: all .2s ease; border-radius: 5px; box-shadow: inset 1px -1px 15px -4px rgba(0,0,0,0.23); text-align: center; }
header nav ul a:hover { background: white; color: #2066A5; box-shadow: none; }

section { max-width: 800px; padding: 20px; box-sizing: border-box; margin: 30px auto }
section h1 { display: flex; align-items: center; font-size: 50px }
section h1 figure { max-width: 60px; margin-right: 10px }
.texto p { max-width: 800px; line-height: 1.5em }
.pdf { margin-bottom: 30px }
.pdf a { display: flex; align-items: center; color: #cc2ea3 }
.pdf img { margin-right: 10px }
.grafico { border: 1px solid #2066A5 }

#Te-Sumas .selector { list-style: none; display: flex; padding: 0; margin-top: 30px; margin-bottom: 40px }
#Te-Sumas .selector li { margin-right: 10px }
#Te-Sumas .selector a { background: #2066A5; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: bold; border: 1px solid #2066A5; transition: all .2s ease }
#Te-Sumas .selector a:hover { background: white; color: #2066A5; text-decoration: none }

form ul { list-style: none; padding: 0; max-width: 500px }
form li { margin-bottom: 10px }
input[name=ant] { display: none }
input, textarea, select { border-radius: 5px; padding: 10px; border: 1px solid #2066A5; width: calc(100% - 22px); font-family: inherit; font-size: inherit; transition: all .2s ease }
select { width: 100% }
input[type=submit] { cursor: pointer; background: #2066A5; color: white; font-weight: bold; width: 100%; border: 1px solid #2066A5 }
input[type=submit]:hover { color: #2066A5; background: white }
.mark { border: 1px solid red }

.group { padding: 20px; background: lightgray; display: none }

.confirm label { display: flex; margin: 20px 0; align-items: flex-start }
.confirm input[type=checkbox] { width: 30px; transform: scale(1.2); margin: 4px 10px 0 3px }

footer {
 background: #2066A5; color: white; padding: 20px
}
footer .content { flex-direction: column }
footer ul { list-style: none; padding: 0 }
footer li { margin-bottom: 10px }
footer ul a { display: flex; color: white; align-items: center; text-decoration: none; font-weight: bold }
footer a span { margin-right: 10px; font-weight: 400 }
footer ul img { margin-right: 10px; flex-shrink: 0 }

@media (max-width: 900px) {
    header h1 {
        max-width: 120px
    }
    header .content {
        flex-direction: column;
        align-items: center;
    } header nav ul {
        margin-bottom: 0;
    } header nav {
        justify-content: center;
    } header nav ul a {
        font-size: 18px;
        text-align: center;
    }
}
@media (max-width: 700px) {
    p { text-align: left }
    header nav ul {
     flex-direction: column;
    }
    section h1 {
        font-size: 30px;
    } section h1 figure {
        max-width: 40px;
    } section {
        max-width: 100%;
    }

}

/* */

.boton a {
    background: #f2f2f2;
    padding: 10px;
    text-decoration: none;
    border-radius: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.boton a img {
    margin-right: 10px;
    width: 30px;
}
.boton a:hover {
    background: #cc2ea3;
    color: white;
}

.flex {
    display: flex;
}
.wrap { flex-wrap: wrap; }
.justify-between {
    justify-content: space-between;
}
.align-center {
    align-items: center;
}
.auto {
    margin: auto;
}