
body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    overflow-x: hidden;
}

.banner {
    font-size: 50px;
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1e1e1e;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.2rem;
    font-family: 'Poppins', sans-serif;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around; 
}

nav ul li {  
    display: inline;
    color: white;
    padding: 0.5rem; 
   
}

.card {
    margin: 0.6rem;
    background-color: #3B3B3B;
    width: 30rem;
    height: auto;  
    border-radius: 10px;
}

.tituloCard {
    font-family: "Poppins", sans-serif;
    color: white;
    font-size: 8px;
    display: flex;
    text-align: center;
    justify-content: center;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.imagemCard img {
    cursor: pointer;
    max-width: 100%;
    height: auto;
    display: block;
}

.conteudo p {
    font-family: "Montserrat", sans-serif;
    color: white;
    font-size: 14px;
    padding-left: 1rem;
    word-break: keep-all;
}

.navegacaoMini {
    color: white;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    position: relative;
}

ul li:hover {
    color: #00ff00;
}

.navegacaoMini::before {
    color: #00ff00;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(0);
    height: 2px;
    width: 100%;
    background-color: #00ff00;
    transition: transform 0.5s ease-in-out;
}

.navegacaoMini:not(.ativo):hover::before {
    transform: translateX(-50%) scale(1);
}


.navegacaoMini:hover::after,
.navegacaoMini.ativo::after {
    opacity: 1;
}

.navegacaoMini.ativo::before {
    transform: translateX(-50%)
}

.todosCards { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.imagemCard {
    position: relative;
    overflow: hidden;
}

.textoEscondido span {
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    opacity: 0;
    font-size: 14px;
    color: #ffffff;
    transition: opacity 0.3s ease-in-out;
}

.textoEscondido {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #00000090;
    padding: 15px;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.imagemCard:hover .textoEscondido span {
    opacity: 1;
}

.imagemCard:hover .textoEscondido {
    opacity: 1;
}
