@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background: #f0ecec;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/*Header*/
a {
    text-decoration: none;
    color: black;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;

}

.navList ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navList ul li {
    font-family: "Kanit", sans-serif;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s, font-weight 0.3s;
    cursor: pointer;
}

.navList ul li::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #0093E9;
    transition: width 0.3s ease;
}

.navList ul li:hover {
    color: #0093E9;
    font-weight: 600;
}

.navList ul li:hover::after {
    width: 100%;
}

h1 {
    padding: 0rem 2rem;
    font-family: "Bebas Neue", sans-serif;
    font-size: 4rem;
    margin: 0;
}

.color {
    background: -webkit-linear-gradient(#80D0C7, #0093E9);
    background: linear-gradient(#80D0C7, #0093E9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Foto y nombre - Centro*/

h2 {
    font-family: "Bebas Neue", sans-serif;
    background: -webkit-linear-gradient(#80D0C7, #0093E9);
    background: linear-gradient(#80D0C7, #0093E9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 5rem;
    margin: 0;
}

.priSec {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    margin: 0rem 10rem;
    padding: 6rem 0;
    text-align: center;
}

.priSec {
    align-items: center;
}

.avatar {
    border-radius: 50%;
    width: 25rem;
    height: 25rem;
    border: 3px solid #000000;
}

.linkDecoracion {
    text-decoration: none;
    color: rgb(24 25 27);
}

.disGrafico {
    color: #000000;
    font-family: "Kanit", sans-serif;
    letter-spacing: 24px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    overflow: hidden;
    z-index: 1;
    animation-duration: 2s;
}

.disGrafico:hover {
    font-weight: 800;
}

span {
    letter-spacing: 0;
}

/*Forja academica */

.cardsSec {
    margin: 0rem 6rem;
}

.cardsSec div {
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: center;
    margin: 6rem 2rem;
}

.cardsSec div article {
    margin: 2rem 2rem;
}

h3 {
    border-bottom: 2px solid #000000;
    padding: 1rem 2rem;
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    color: #000000;
    letter-spacing: 2px;
}

.card {
    font-family: "Kanit", sans-serif;
    width: 15rem;
    height: auto;
    list-style: none;
    border-radius: 0.1rem;
    border: 0.2rem solid #c3c6ce;
    transition: 1s;
    display: flex;
    flex-direction: column;
    margin: 0 2rem;
    padding: 2rem;
}

.card h4 {
    margin: 0 0 1rem 0;
    font-family: "Kanit", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: black;
}

.card li {
    transition: 1s;
    margin: 0.5rem 0;
}

.card:hover {
    transition: 1s;
    border-color: #008bf8;
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
    transition: 1s;
}


/*Integrantes */
.integrantes {
    margin: 0rem 6rem;
}

.integrantes h4 {
    border-bottom: 2px solid #000000;
    padding: 1rem 1rem;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    color: #000000;
    letter-spacing: 2px;
}

h5 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
}

.integrantes p {
    font-family: "Kanit", sans-serif;
}

.integrantes article {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    justify-items: center;
}


.container {
    display: flex;
    margin: 8rem 0rem;
}

.img-container {
    position: relative;
    width: 15rem;
    height: 15rem;
    transition: 2s;
    filter: grayscale(100%);
}

.img-container:hover {
    filter: grayscale(0%);
    transition: 2s;
}


.img-container img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}

.img-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    z-index: 1;
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #18191b;
    color: #ffffff;
    padding: 0rem 2rem;
    margin-left: 0;
}

.text-container h5,
.text-container p {
    margin: 0;
}

/*Info Fadu - Catedra Grupo*/
.info-fadu {
    margin: 0;
    padding-right: 2rem;
    display: flex;
    justify-content: space-around;
    color: whitesmoke;
    ;
    background-color: #18191b;
}

ul {
    list-style: none;
}

.info-fadu h6 {
    font-size: 1rem;
}

/*Footer*/

.info-fadu {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding-right: 2rem;
    justify-content: space-around;
    color: whitesmoke;
    background-color: #18191b;
}

.info-fadu div {
    padding: 3rem 2rem 2rem;
    font-size: 0.8rem;
}

.info-fadu ul {
    list-style: none;
}

.info-fadu ul li {
    padding: 0.5rem 0rem;

}

.info-fadu h6 {
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: #18191b;
    color: white;
    text-align: center;
    padding: 0rem 2rem;
}

.info-fadu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 1rem 0;
}

.info-fadu div {
    flex: 1 1 200px;
    margin: 0.5rem;
    text-align: left;
}


.footer-Text {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background-color: #008bf8;
    color: white;
    padding: 1rem;
}

.textCen {
    font-size: 0.8rem;
}


