* {
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Mulish', sans-serif;
}

/* colors */
:root {
    --blanco: #fff;
    --blanco2: #e5e5e5;
    --negro: #000;
    --azul-Oscuro: #0a141d;
    --azul-oscuro2: #0d2033;
    --aqua: aqua;
}

body {
    width: 100vw;
    background-color: var(--blanco);
    overflow-x: hidden;
}

body h1 {
    text-transform: uppercase;
}

body hr {
    margin: 0 10%;
}

body::-webkit-scrollbar {
    width: 14px;
    background-color: transparent;
    
}

body::-webkit-scrollbar-thumb {
    background: var(--blanco2);
    border-radius: 20px;
}


.section-doc {
    display: flex;
    min-height: 100vh;
    height: auto;
    flex-direction: column;
    align-items: center;
    background-image: url(/media/fondos/fondo2.jpg);
    background-attachment: fixed;
}

.title {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.title h1 {
    display: flex;
    justify-content: center;
    width: 60%;
    background-color: rgba(0, 0, 0, 0.674);
    border-radius: 10px;
    padding: 20px 0;
    color: var(--blanco);
    font-size: 30px;
}

.container-docs {
    width: 80%;
    min-height: 80%;
    padding: 25px;
    display: grid;
    justify-items: center;
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    gap: 25px;
    background-color: rgba(0, 0, 0, 0.674);
    border: 1px solid rgba(23, 66, 108, 0.085);
    box-shadow: 5px 5px 5px rgba(1, 1, 1, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 80px 10px;
    margin: 50px 0;
    color: var(--blanco);
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(400px, auto);
}

.container-docs .pdf {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* background-color: #00000037; */
    justify-items: center;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-transform: uppercase;
    font-size: 30px;
    text-align: center;
}

.container-docs .pdf a {
    overflow: hidden;
    width: 90px;
}

.container-docs .pdf img {
    width: 80%;
    height: 100%;
}

.container-docs .pdf {
    text-align: center;
    font-weight: bold;
}

.cv {
    display: flex;
}

.cv button {
    background-color: transparent;
    border: 2px solid var(--blanco);
    width: fit-content;
    display: block;
    margin: 20px auto;
    padding: 10px 22px;
    font-size: 18px;
    position: relative;
    z-index: 10;
    cursor: pointer;
    border-radius: 20px 5px;
}

.cv button a {
    color: var(--blanco);
    width: 100%;
    height: 100%;
    border-radius: 20px 5px;
}

.cv button .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--negro);
    z-index: -1;
    transition: 0.5s;
    border-radius: 20px 5px;
}

button:hover .overlay {
    width: 100%;
    color: var(--blanco2);
}

.cv button a:hover {
    color: var(--blanco2);
}


.footer {
    position: absolute;
    width: 100%;
    height: 30vh;
    background-color: var(--azul-Oscuro);
    overflow: hidden;
}

.footer .grupo1 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0px;
}

.footer .grupo1 .box figure {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .grupo1 .box figure img {
    width: 150px;
    border-radius: 30px;
}

.footer .grupo1 .box h2 {
    color: var(--blanco);
    margin-bottom: 25px;
    font-size: 20px;
}

.footer .grupo1 .box p {
    color: var(--blanco2);
    margin-bottom: 10px;
}

.footer .grupo1 .red-social a {
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: var(--blanco);
    margin-right: 10px;
    background-color: var(--azul-oscuro2);
    text-align: center;
    transition: all 300ms ease;
}

.footer .grupo1 .red-social a:hover {
    color: var(--aqua);
}

.footer .grupo-2 {
    background-color: var(--azul-oscuro2);
    padding: 15px 10px;
    text-align: center;
    color: var(--blanco);
}

.footer .grupo-2 small {
    font-size: 15px;
}




/* Media Querys - Diseño responsive */

@media screen and (max-width:1447px) {
    .container-docs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:1302px) {
    .footer {
        height: auto;
    }
}


@media(max-width:1004px) {

    .nav-responsive {
        display: block;
    }

    nav.responsive {
        display: flex;
        align-items: center;
        position: absolute;
        right: 0px;
        top: 66px;
        background-color: rgba(0, 0, 0, 0.874) ;
        width: 100%;
        height: 100vh;
        justify-content: center;
    }
    nav.responsive ul {
        display: block !important;
        padding: 0;
    }
    nav.responsive ul li {
        padding: 25px 0;
        font-size: 18px;
        text-align: center;
    }

    .contenedor-header header nav ul li a {
        text-align: none;
        margin: 0 15px;
        padding: 3px;
        text-transform: uppercase;
        display: inline-block;
        color: var(--blanco);
        transition: 0.15s ease-in-out;
        position: relative;
    }
    
    .contenedor-header header nav ul li a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background-color: var(--blanco2);
        transition: 0.15s ease-in-out;
    }

    .title h1 {
        font-size: 24px;
    }

}

@media(max-width:824px) {

    nav {
        display: flex;
    }

    .title {
        width: 100%;
    }

    .footer .grupo1 {
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        padding: 35px 0px;
    }

    .footer .box:nth-child(3) {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer .grupo1 .red-social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.2rem;
    }
}

@media screen and (max-width:760px) {
    .container-docs {
        grid-template-columns: repeat(1, 1fr);
        width: 99%;
    }
}

@media(max-width:500px) {

    .container-docs {
        width: 99%;
        padding: 0px;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 10px;
        border-radius: 10px;
        margin: 20px 0;
    }

    .footer .grupo1 {
        grid-template-columns: repeat(1, 1fr);
    }
}