*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

#loading{
    text-align: center;
    font-size: 24px;
    font-weight: bold;

    padding: 30px;

    color: #333;
}


body{
    font-family: Arial, Helvetica, sans-serif;

   
}

header{
  width: 100%;
  min-height: 10vh;
}


.container-principal{
    width: 100%;
    min-height: 100vh;

    background-color: #c4e2f8;
}

.container-principal{
    min-height: 100vh;

    background-image: url(../assets/fundo.png);
    background-size:  cover;
    background-position:center;
}

.topo{
    width: 100%;
    height: 120px;

    background: linear-gradient(90deg, #012f5e, #00bcd4);

    background-color: #464b96;
    display:flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0px 4px 12px rgba(0,0,0,0.5);
}

.topo h1{
    font-family: 'Orbitron', sans-serif;

    font-size: 42px;

    color: #d9ff00;

    text-shadow:
    0 0 5px #d9ff00,
    0 0 10px #d9ff00,
    0 0 20px #00ff88;

    letter-spacing: 4px;

    transition: 0.3s;
}

.topo h1:hover{
    transform: scale(1.05);
}

.cards{
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;

    padding: 40px;
}

.card{
    width: 220px;

    background-color: rgba(255,255,255,0.9);

    backdrop-filter: blur(5px);

    border-radius: 12px;

    overflow: hidden;

    transition: 0.3s;
    
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);

    cursor: pointer;
}

.card:hover{
    transform: translateY(-10px)
}

.card img{
    width: 100%;
    height: 220px;

    object-fit: cover;

}

.card h2{
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
}

.info {
    width: 100%;
    margin-top: 10px;
}

.info p{
    background-color: #6d6d6d;
    color: white;

    margin-top: 5px;
    padding: 5px;

    font-size: 14px;
}

.rodape{
    padding: 20px;
    color: white;
    font-size: 12px;
    text-transform: uppercase;

    background-color: #9baaf2;
    display:flex;
    justify-content: center;
    align-items: center;
}

@media(max-width: 768px){

    .cards{
        padding: 20px;
        gap: 20px;
    }

    .card{
        width:160px;
    }

    .topo h1{
        font-size:18px;
    }

}