@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body {
    background-color: #FFFFFF;
    color: #000000;
}

a {
    text-decoration: none;
    color: #0051FF;
}

ul {
    list-style: none;
}

.acento {
    color: #0051FF;
}

/* MOBILE */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
}

.logo-dgpc {
    width: 60px;
    height: 30px;
}

.menu-boton {
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 18px;
}

.desktop-nav {
    display: none;
}

.mobile-menu {
    display: none;
    background-color: #0051FF;
    padding: 0.75rem 1.25rem;
}

.mobile-menu a {
    display: block;
    color: #FFFFFF;
    padding: 1.25rem 0;
    border-bottom: 1px solid #FFFFFF;
}

.mobile-menu a:last-child {
    border-bottom: none;
}
.mobile-menu.is-active {
    display: block;
}

.perfil {
    background-color: #F2F2F2;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1.25rem;
    gap: 1.25rem;
}

.perfil-foto {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.perfil-info h1 {
    font-size: 1.6rem;
    font-weight: bold;
}

.perfil-subtitulo {
    margin-top: 2.25rem;
    line-height: 1.75rem;
    font-weight: 500;
}

.behance-link {
    color: #0051FF;
}

.comitente-info {
    background-color: #FFFFFF;
    padding: 1.25rem;
    line-height: 1.25rem;
    font-size: 0.875rem;
}

.equipo-titulo {
    font-weight: bold;
}

.equipo ul {
    margin-top: 5px;
}
.equipo ul li {
    font-weight: 500;
}

.materias {
    background-color: #F2F2F2;
    display: flex;
    flex-direction: row;
    padding: 1.25rem;
    gap: 4.4rem;
}

.materias-lista h2 {
    font-size: 1rem;
    font-weight: bold;
}

.materias-lista ul li {
    line-height: 1.25rem;
    font-size: 0.875rem;
}

.datos {
    background-color: #FFFFFF;
}

.datos-contenedor {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
}

.datos-columna h3 {
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.datos-columna p {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.datos-link {
    color: #0051FF;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
}


.footer-container {
    padding: 1.25rem;
}

.footer {
    background-color: #F2F2F2;
    color: #606060;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 1.25rem;
    margin-inline: auto;
}

/* DESKTOP */

@media (min-width: 768px) {
    .contenedor, .datos, .footer {
        padding-inline: 0;
    }
    
    .menu-boton, .mobile-menu {
        display: none;
    }

    header {
        padding: 2.5rem;
    }

    .logo-dgpc img {
        width: 75px;
        height: 38px;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }
    
    .desktop-nav a {
        font-weight: bold;
    }

    .desktop-nav a:hover {
        color: #000000;
    }

    .perfil {
        display: flex;
        flex-direction: row;
        padding: 2.5rem;
        gap: 2.5rem;
    }
    
    .perfil-info h1 {
        font-size: 3.75rem;
    }

    .perfil-subtitulo {
        line-height: 2.75rem;
        font-size: 1.75rem;
    }

    .perfil-foto {
        width: 200px;
        height: 200px;
    }

    .comitente-info {
        padding: 2.5rem;
        font-size: 1.15rem;
        line-height: 1.75rem;
    }

    .materias {
        flex-direction: row;
        padding: 2.5rem;
        gap: 5rem
    }

    .materias-lista h2 {
        font-size: 1.15rem;
        font-weight: bold;
        margin-bottom: 1.25rem;
    }

    .materias-lista ul li {
        font-size: 1.15rem;
        line-height: 1.75rem;
    }

    .datos-contenedor {
        padding: 2.5rem;
        flex-direction: row;
        justify-content: space-between;
    }

    .datos-columna h3 {
        font-size: 1.15rem;
    }
    
    .datos-columna p {
        font-size: 1.15rem;
        line-height: 1.75rem;
    }

    .datos-columna a {
        margin-top: 0.5rem;
        font-size: 1.15rem;
    }

    .footer {
        padding: 2.5rem;
        font-size: 1.15rem;
        line-height: 1.75rem;
    }
}