@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

*{
    margin: 0px;
    padding: 0px;
}

body{
    font-family: "Poppins", sans-serif;
    background-image: url(../img/background.png);
    background-size: cover;
    background-position: center center;
    margin: 5px;
}

body::before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    backdrop-filter: blur(5px);
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 98vh;
}

section{    
    display: flex;
    gap: 40px;
    padding: 20px 0px;
}

.cartao{
    display: none;
    max-width: 360px;
}

.ativado{
    display: block;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.258);
}

.cartao-topo{
    padding: 30px 40px;
}

.detalhes-topo{
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

span.tipo{
    background-color: white;
    font-size: 0.85em;
    opacity: 0.7;
    border-radius: 10px;
    padding: 2px 10px;  
}

img{
    width: 100%;
    height: 100%;
    margin-top: 10px;
}

.cartao-info{
    background-color: white;
    padding: 80px 30px 50px;
    margin-top: -110px;
    border-radius: 2px 2px 8px 8px;
}

h3{
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #6b727a;
}

.texto{
    padding: 0px 10px;
}

p{
    overflow-y: scroll;
    max-height: 120px;
    font-size: 15px;
}

.eletrico{
    background-color: #fdc763;
}

.fogo{
    background-color: #f15000d2;
}

.agua{
    background-color: #6a92f2;
}

.fada{
    background-color: #f6d9ce;
}

nav{
    max-width: 200px;
}

li{
    list-style-type: none;
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 12px 0px 7px;
    margin-bottom: 15px;
    cursor: pointer;
    border-radius: 30px 2px 2px 30px;
    min-height: 70px;

    transition: 0.15 ease-in-out;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.258);
}

li img{
    width: 25%;
}

li:hover{
    transform: scale(1.05);
}

.aberto{
    background-color: rgb(51, 51, 51);
    color: white;
}