/* ===============================================================================================================================
   Reset
   =============================================================================================================================== */

/***
    The new CSS reset - version 1.9 (last updated 19.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* remove default dot (•) sign */
::marker {
    content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all: revert;
}

/* ===============================================================================================================================
   FIN Reset
   =============================================================================================================================== */

@font-face {
    font-family: "bod";
    src: url("/fonts/PinyonScript-Regular.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "tit";
    src: url("/fonts/PoiretOne-Regular.woff2") format("woff2");
    font-display: swap;
}


/* * {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
} */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

html {
    position: relative;
    color: #222;
    /* font-size: 1em; */
    line-height: 1.4;
    /*para sticky footer*/
    /*min-height: 100%; /*para sticky footer*/
    /* font-family: 'Raleway', sans-serif; */
}

body {
    /* background: url(images/bg04.jpg); */
    background-color: #fff;
    color: #070000;
    /* text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.75); */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: Verdana, sans-serif;
}

header,
footer {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
}

footer{
    min-height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
}

main {
    text-align: center;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: auto;
}

h2{
    font-size: 2.5em;
    font-weight: normal;
    margin: 0.2em;
}

p {
    color: #1b6a6af5;
}

/* input:invalid {
    border-color: #900;
    background-color: #fdd;
} */

/* input:focus:invalid {
    outline: none;
} */

.boton_default {
    backface-visibility: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    min-width: 10em;
    min-height: 4em;
    /* white-space: nowrap; */
    border-radius: 5px;
    border-width: 1px;
    border-style: double;
    margin: 5px;
    /* padding: 10px 20px; */
    box-shadow: 0px 0px 1px 1px rgba(194, 190, 190, 0.8);
    color: #fff;
    font-size: 1rem;
    font-family: fredoka, Verdana, Helvetica, sans-serif;
    font-weight: 500;
    font-style: normal;
    text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.4);
    -webkit-transition: ease-in-out 0.3s;
    -o-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
    opacity: 0.8;
}

.boton_default:hover {
    opacity: 1;
}

.botones_transparente {
    color: #000;
}

.botones_blue {
    background: linear-gradient(180deg, #7da0ae 0%, #496775 25%, #354859 50%, #24434f 75%, rgb(27, 48, 56) 100%);
    border-color: #3f464d;
}

.botones_red {
    background: linear-gradient(180deg, #ae7d7f 0%, #75494b 25%, #593537 50%, #4f2424 75%, rgb(56, 27, 27) 100%);
    border-color: #4d3f40;
}

.botones_green {
    background: linear-gradient(180deg, #83ae7d 0%, #4a7549 25%, #3b5935 50%, #294f24 75%, rgb(28, 56, 27) 100%);
    border-color: #3f4d3f;
}

.botones_black {
    background: linear-gradient(180deg, #a1a1a0 0%, #737472 25%, #5c5d5b 50%, #3d3e3d 75%, rgb(40, 40, 40) 100%);
    border-color: #505350;
}

.botones_gris {
    background-image: linear-gradient(to bottom, #454646, #7e7f80);
    font-size: 1rem;
    font-family: fredoka, Verdana, Helvetica, sans-serif;
    font-weight: 500;
    font-style: normal;
    text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.4);
    color: #fff;
    margin: 2px 0;
    padding: 10px 20px 10px 20px;
    /* border: solid #a4a2a2 1px; */
    border-style: none;
    outline: 1px solid #a4a2a2;
    text-decoration: none;
    cursor: pointer;
}

button {
    outline: none;
}

button::-moz-focus-inner {
    border: 0;
}

.centerflex{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===============================================================================================================================
   Navegador
   =============================================================================================================================== */

.main-header {
    height: 5rem;
    /* background-color: rgba(0, 0, 0, 0.3);
    border-bottom: solid 1.5px #000;
    box-shadow: 0px 0.5px 0px 0px #4a4a4a; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
}

.contenedor_titulo {
    display: flex;
    align-items: center;
    /* height: 5em; */
}

.contenedor_titulo #title,
.contenedor_titulo img {
    /* position: fixed;
    margin: 0;
    top: 10px;
    left: 10px; */
    font-family: 'tit', Verdana, sans-serif;
    font-weight: normal;
    font-size: 2rem;
    cursor: pointer;
    -webkit-filter: drop-shadow(2px 2px 2px #000);
    filter: drop-shadow(2px 2px 2px #000);
}

#main-nav {
    float: right;
    font-family: 'tit', Verdana, sans-serif;
    /* font-family: 'bod', Verdana, sans-serif; */
    /* font-family: 'bod', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
}

#main-nav .navbutton {
    position: fixed;
    top: 1em;
    right: 1em;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 101;
}

#main-nav .line {
    display: block;
    width: 3em;
    height: 0.3em;
    background-color: #fff;
    margin: .5em;
    transform-origin: center;
    border: 3px solid #fff;
    border-radius: 6px;
}

#main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 100%;
    height: 100vh;
    width: 100vw;
    background: rgb(92, 89, 89);
    padding: 2em;
    margin: 0;
    line-height: 2;
    background: url(/css/bg04.jpg);
    color: #fff;
    z-index: 100;
}

#main-menu li {
    /* display: inline-block; */
}

#main-menu li a {
    text-decoration: none;
    margin: auto;
    font-size: 2em;
    color: #86bef5;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding: 0.2em;
    border-radius: 4px;
    cursor: pointer;
}

#main-menu li a:hover {
    border-bottom: 1px solid #86bef5;
    background: rgba(150, 150, 150, 0.3);
}

#avisoslegales {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1em;
    /* width: 100%; */
    /* display: flex; */
    /* justify-content: space-between; */
}

#avisoslegales a{
    text-decoration: none;
    /* transition: all 0.5s; */
}

#avisoslegales a:hover{
    /* color: rgb(193 225 255) !important; */
}

/* #avisoslegales #politicaprivacidad{
    margin-left: 5em;
} */

/* ===============================================================================================================================
   FIN Navegador
   =============================================================================================================================== */

/* ===============================================================================================================================
    Media queries
    =============================================================================================================================== */

@media screen and (orientation: portrait) {

    /* .contenedor_titulo {
        background: #000;
        border-bottom: 1px solid #fff;
    } */

    .contenido_seccion {
        display: block !important;
    }
}