@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Lexend+Exa:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');
*{
     text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.50);
    box-sizing: border-box;
    }
body{
    margin: 0;
    min-height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.background{
    background-image: url('fundo.jpg'); 
    filter: blur(4px); 
    -webkit-filter: blur(4px); 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
    position: fixed; 
    width: 100%;
    height: 100vh; 
    z-index: 0;
}
.main-card{
    background-color: rgba(255, 255, 255, 0.70);
    width: 700px;
    max-width: 90%;
    padding: 20px;
    height: 600px;
    border-radius: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.70);
    border: solid rgba(0, 0, 0, 0.10) 4px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.title-card{
    font-family: 'Comfortaa';
    font-size: 30px;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.50);
}
.profilecard{
    width: 25%;
    border-radius: 10%;
    box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.70);
}
.red1{
     text-decoration: none;
}
.profiledesc{
    margin-top: -1%;
   font-family: "Parisienne", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  text-decoration: overline;
  color: black;
  outline: none;
  text-decoration: none;
  margin-bottom: 1%;
}
.profiledesc2{
    margin-top: -20px;
    margin-bottom:-0.1%;
   font-family: "Lexend Exa";
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  text-decoration: overline;
  color: black;
  outline: none;
  text-decoration: none;
}
.grid-section{
     margin: auto;
    width: 80%;
    max-width: 500px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.grid-item{
     position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-around;

    width: 100%;
    padding: 12px;
    height: 70px;

    border: solid 3px rgba(0, 0, 0, 0.8);
    border-radius: 30px;

    font-size: 18px;
    cursor: pointer;

    transition: all 0.2s linear;

    z-index: 1;
}
i{
    font-size: 30px;
}
.grid-name{
    font-family: "Lexend Exa";
    margin-right: 10%;
    font-size: 20px;
}
.grid-item:hover{
    border: solid 3.3px rgba(0, 0, 0, 0.8);
    box-shadow: -10px 10px 15px rgba(0, 0, 0, 0.85);
    transform: scale(1.03);
}
#instagram:hover{
    color: rgb(252, 139, 34);
}
#email:hover{
    color: rgb(184, 11, 2);
}
#tiktok:hover{
    color: rgb(204, 10, 229);
}
#whatsapp:hover{
    color: rgb(0, 175, 17);
}
.ativo{
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow: -20px 20px 20px rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
}
/* mediass */
/* Tablets e celulares grandes */
@media (max-width: 768px) {
    .main-card{
        height: auto;
        padding: 25px 15px;
    }

    .profilecard{
        width: 35%;
    }

    .profiledesc{
        font-size: 32px;
    }

    .profiledesc2{
        font-size: 20px;
    }

    .grid-section{
        width: 100%;
        gap: 15px;
    }

    .grid-item{
        height: 60px;
    }
}

/* Celulares médios */
@media (max-width: 600px) {
    .title-card{
        font-size: 24px;
    }

    .profilecard{
        width: 45%;
    }

    .profiledesc{
        font-size: 28px;
    }

    .profiledesc2{
        font-size: 18px;
    }

    .grid-section{
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .grid-item{
        height: 55px;
        padding: 10px;
    }

    i{
        font-size: 22px;
    }

    .grid-name{
        font-size: 14px;
        margin-right: 0;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {
    .main-card{
        width: 95%;
        border-radius: 15px;
    }

    .profilecard{
        width: 55%;
    }

    .profiledesc{
        font-size: 24px;
    }

    .profiledesc2{
        font-size: 16px;
    }

    .grid-section{
        grid-template-columns: 1fr;
    }

    .grid-item{
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .grid-name{
        display: inline;
        font-size: 14px;
    }
}

/* Celulares muito pequenos */
@media (max-width: 360px) {
    .title-card{
        font-size: 20px;
    }

    .profiledesc{
        font-size: 20px;
    }

    .profiledesc2{
        font-size: 14px;
    }

    i{
        font-size: 20px;
    }

    .grid-name{
        font-size: 12px;
    }
}
footer{
    background-color: black;
    color: white;

    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    padding: 10px 15px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    font-family: "Lexend Exa";
    font-size: 14px;

    z-index: 2;
}