* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

body {
    font-family: sans-serif;
    font-size: 18px;
    background: url("/assets/img/fondos/retina_wood.png");
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
}

header {
    height: 110px;
    padding: 5px 105px 5px 5px;
}

header, footer {
    background-color: rgba(181, 163, 136, 0.8);
    display: flex;
    width: 100%;
}

.titulo__container {
    margin: 0 auto;
}

.centrar {
    text-align: center;
}

.titulo--m {
    font-family: sans-serif;
    font-size: 0.7em;
}

h2 {
    font-family:'Times New Roman', Times, serif;
    text-shadow: 2px 2px 5px white;
    font-size: 40px;
}

h3 {
    font-size: 1.5em;
    color: rgba(0, 0, 0, 0.75);
}

.logo {
    width: 100px;
}

/* *************************************** */
/* MENU PEQUEÑO                            */
/* *************************************** */
.nav__bar {
    position: relative;
    background-color: rgb(227, 134, 70);
    padding: 5px;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
    height: 35px;
    width: 100%;
}

.menu,
.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu {
    position: absolute;
    top: 145px;
    width: 100%;
    margin-left: -100%;
    background-color: rgb(85, 85, 85);
    transition: all 0.5s;
}

.menu__link {
    display: block;
    padding: 15px;
    color: white;
    font-size: 1.1em;
    text-decoration: none;
}

.menu__logo--left {
    width: 23px;
}

.menu__logo--right {
    width: 17px;
}

.menu__mostrar {
    margin-left: 0;
    z-index: 1;
}

.submenu {
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.submenu .menu__link {
    background-color: rgb(51, 51, 51);
    padding-left: 50px;
}

.submenu .menu__link:hover {
    background-color: rgb(34, 34, 34);
}

/* *************************************** */
/* MENU GRANDE                             */
/* *************************************** */
@media screen and (min-width: 1000px) {
    .nav__bar {
        display: none;
    }

    .menu {
        position: relative;
        top: 0;
        margin-left: 0;
        display: flex;
        background-color: transparent;
        z-index: 1;
    }

    .menu__link {
        color: rgba(0, 0, 0, 0.55);
        text-decoration-color: transparent;
    }
    
    .menu__link:hover {
        color: black;
        text-decoration: underline;
        text-decoration-color: rgb(156, 134, 101);
        text-decoration-thickness: 2.5px;
        text-underline-offset: 8px;
        transition: color 1s, text-decoration-color 1.1s ease;
    }

    .menu__logo--right {
        display: none;
    }

    .submenu__container {
        position: relative;
    }

    .submenu {
        position: absolute;
        top: 55px;
        width: 350px;
        overflow: visible;
        opacity: 0;
        visibility: hidden;
    }

    .submenu .menu__link {
        background-color: rgba(156, 134, 101, 1);
        padding: 15px 20px;
        text-decoration-color: transparent;
        transition: color 0.55s;
    }

    .submenu .menu__link:hover {
        background-color: rgb(141, 114, 70);
        color: white;
    }
    
    .submenu__container:hover .submenu {
        opacity: 1;
        visibility: visible;
    }
}
/* *************************************** */

main {
    padding: 20px;
}

.main__text {
    font-size: 1.35em;
    line-height: 35px;
    padding-bottom: 35px;
}

.software__titulo {
    font-size: 1.85em;
    margin-bottom: 70px;
}

.main__container,
.software__container {
    width: 80%;
    margin: 40px auto 200px auto;
    justify-content: center;
}

.software__text {
    width: 100%;
}

.software__text__link {
    color: rgb(60, 60, 250);
    white-space: nowrap;
}

.software__text__link:hover {
    background-color: rgb(178, 194, 224);
}

.software__text__link:visited {
    color: rgb(41, 36, 100);
}

.software__logo {
    width: 100px;
    height: 100px;
    box-shadow: 0 0 25px;
}

.software__logo--left {
    float: left;
    margin-right: 50px;
}

.software__logo--right {
    float: right;
    margin-left: 50px;
}

.main__container {
    border-radius: 10px;
    box-shadow: 0 0 20px;
    padding: 25px 25px 0 25px;
    margin-bottom: 110px;
}

footer {
    height: 50px;
    padding: 20px;
    justify-content: space-between;
}

.footer__block {
    display: flex;
    align-items: center;
}

.footer__logo {
    width: 25px;
    padding-top: 5px;
}

.footer__text {
    color: rgba(0, 0, 0, 0.55);
    font-size: small;
    margin-left: 10px;
}

.footer__link {
    text-decoration: none;
}

.footer__link:hover {
    text-decoration: underline;
    text-underline-offset: 2.5px;
}

@media screen and (max-width: 670px) {
    header {
        padding: 5px;
        align-items: center;
    }

    h2 {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .footer__block--left {
        display: none;
    }
}

@media screen and (max-width: 360px) {
    footer {
        flex-direction: column;
        padding: 5px 0;
        height: 80px;
    }

    .footer__block {
        margin: 0 auto;
    }
}