
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Lilita One',sans-serif;
    background:#f7f4ef;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* ROTULO */

.logo{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    position:relative;
}

/* NAV */

.navbar{

    background:#7d3cc9;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 50px;

    border-bottom:2px solid #DFFF2F;

    position:sticky;
    top:0;
    z-index:100;
}

.logo-web{
    
    color:#DFFF2F;

    font-size:1rem;
    font-weight:600;

    position:relative;

    display:flex;
    align-items:center;
    gap:10px;
    margin-right:auto;
}

.logo-web img{

    height:40px;
    width:auto;

    display:block;
}

.logo{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px; 
    position: relative
}

.menu{

    display:flex;
    gap:30px;

    list-style:none;
}

.menu a{

    color:#DFFF2F;
    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.menu a:hover{

    color:#DFFF2F;
}

/* PRESENTACION */

.presentacion{

    text-align:center;

    padding:80px 10%;

    background:
    linear-gradient(
    180deg,
    #7B2EFF 0%,
    #9B6BFF 100%);
}

/* STICKER */

.sticker{
    display:inline-block;
    font-family:var(--font-hand);
    font-weight:700;
    font-size:1.2rem;
    color:var(--white);
    background:none;
    border:none;
    box-shadow:none;
    padding:0 .1em;
    position:relative;
    transform:rotate(-2deg);
    animation:wiggle 5s ease-in-out infinite, popIn .5s ease both;
  
}

.presentacion h1{

    font-size:5rem;

    color:rgb(255, 255, 255);

    margin:0;

    text-shadow:
    6px 6px 0px rgba(0,0,0,.15);
}

.presentacion h3{

    color:#DFFF2F;

    font-size:1.5rem;

    margin-top:10px;
    margin-bottom:10px;
}

.presentacion p{

    max-width:900px;

    margin:auto;

    color:white;

    font-size:1.2rem;

    line-height:1.4;
}

/* EQUIPO */

.equipo{

    padding:80px 10%;
}

.equipo h2{

    color:#4c079b;

    font-size:3rem;

    margin-bottom:50px;
}

.contenedor-miembros{

    display:flex;
    gap:40px;
}

.miembro{

    background:rgb(255, 255, 255);

    padding:25px;

    border-radius:25px;

    box-shadow:
    10px 10px 0px #7B2EFF;
}

.miembro img{
    width:100%;
    max-width:180px;
    border-radius:20px;
    margin:auto;
}

.miembro h3{

    color:#2B1248;
}

/* DATOS */

.datos{

    padding:80px 10%;

    background:#EFE9FF;
}

.datos h2{

    color:#2B1248;
}

/* FOOTER */

.footer{
    background:#5c21af;
    color:#fff;
    padding:70px 8% 40px;
}

.footer-contenido{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
    flex-wrap:nowrap;
}

.footer-col{
    flex:1 1 0;
    min-width:0;
}

.footer-col h4{
    color:#7D80FF;
    font-size:1.3rem;
    margin-bottom:18px;
    font-weight:700;
    text-transform:uppercase;
}

.footer-col p{
    margin:4px 0;
    width:auto;
    font-size:1rem;
    line-height:1.4;
    text-align:left;
}

.footer-linea{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.25);
    margin:55px 0 35px;
}

.footer-copy{
    width:100%;
}

.footer-copy p{
    margin:0;
    font-size:.95rem;
    line-height:1.7;
    color:#f0f0f0;
    text-align:center;
}

@media (max-width:900px){
    .footer-contenido{
        flex-direction:column;
        gap:35px;
    }

    .footer-linea{
        width:100%;
    }

    .footer-copy p{
        text-align:left;
    }
}

/* ROTULO INDIVIDUAL */


.perfil{

    background:
    linear-gradient(
    180deg,
    #7B2EFF,
    #9B6BFF);

    min-height:500px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:80px;

    padding:80px 10%;
}

/* STICKER */

.sticker{

    display:inline-block;

    background:#DFFF2F;

    color:#000;

    padding:12px 25px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:20px;

    transform:rotate(-3deg);
}

/* TEXTO */

.perfil-info{

    max-width:600px;
}

.perfil h1{

    color:white;

    font-size:4rem;

    margin-bottom:10px;

    text-shadow:
    5px 5px 0px rgba(0,0,0,.15);
}

.subtitulo{

    color:white;

    font-size:1.3rem;
}

/* IMAGEN */

.perfil-foto img{
    width:100%;
    max-width:280px;
    height:auto;

    border-radius:30px;

    border:6px solid white;

    box-shadow:
    12px 12px 0px #DFFF2F;
}


/* TARJETAS */

.card{

    background:white;

    width:80%;

    margin:50px auto;

    padding:40px;

    border-radius:25px;

    box-shadow:
    10px 10px 0px #7B2EFF;
}

.card h2{

    color:#2B1248;

    margin-bottom:20px;
}

.card p,
.card li{

    line-height:1.8;
}

.card ul{

    padding-left:20px;
}