@import url('https://fonts.googleapis.com/css2?family=Sedgwick+Ave+Display&display=swap');





/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* 🔥 Fundo fixo cobrindo toda a tela */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
        url('image.png') no-repeat center center/cover;
    z-index: -1; /* Garante que o fundo fique atrás de todos os outros elementos */
}

/* 🔥 Navbar fixa no topo */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: #161616;
    z-index: 1000;
}

/* Logo da esquerda */
.logo-left {
    height: 50px;
}

/* Logo centralizada */
.logo-center {
    margin-top: 30px;
    height: 170px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* 🔥 Barra de pesquisa */
.search-box {
    display: flex;
    align-items: center;
    background-color: #0e0e0e;
    border-radius: 25px;
    padding: 5px 15px;
    border: 3px solid #000000;
    position: relative;
}

/* Campo de entrada de texto */
.search-box input {
    background: none;
    border: none;
    outline: none;
    color: white;
    font-size: 16px;
    padding: 5px;
    width: 250px; /* Largura fixa para a barra de pesquisa */
}

/* Botão da pesquisa */
.search-box button {
    background: none;
    border: none;
    cursor: pointer;
}

.search-box img {
    height: 20px;
}

/* Estilo para a lista de sugestões */
ul.suggestions-container {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 60px; /* Ajuste conforme a posição da barra de pesquisa */
    left: 0;
    right: 0;
    width: 100%; /* Garantir que a largura da lista de sugestões seja igual à barra de pesquisa */
    background-color: #0e0e0e;
    border: 1px solid #000;
    border-radius: 5px;
    z-index: 1001;
    max-height: 200px;
    overflow-y: auto;
}

li {
    padding: 10px;
    cursor: pointer;
    color: rgb(247, 247, 247);
}

li:hover {
    background-color: #9494941a;
}

/* Estilo para o container de resultados */
/* Estilo para o container de resultados */
.results-container {
    display: flex;
    gap: 20px;
    justify-content: flex-start; /* Alinha os cards à esquerda */
    align-items: center;
    margin-top: 80px;
    padding-left: 30px; /* Dá espaço à esquerda para o card */
    position: absolute; /* Fixa o container à esquerda da tela */
    top: 50%; /* Posiciona no meio da tela */
    left: 10%; /* Ajuste a distância à esquerda */
    transform: translateY(-50%); /* Centraliza verticalmente */
    max-width: 40%; /* Limita a largura do container para não ultrapassar */
    overflow: hidden; /* Garante que nada ultrapasse o container */
}

/* Estilo dos cards */
/* Estilo dos cards */
.card {
    background: linear-gradient(135deg, #ffffff00, #ffffff00); /* Leve gradiente */
    border-radius: 15px; /* Arredondamento mais suave */
    padding: 15px; /* Melhor espaçamento interno */
    width: 250px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3); /* Sombra mais moderna */
    transition: transform 0.3s, box-shadow 0.3s;
    max-height: 660px;
    overflow-y: auto;
}

.card:hover { /* Efeito hover mais sutil */
    box-shadow: 0px 20px rgba(0, 0, 0, 0.5);
}

.card img {
    width: 100%;
    max-height: 60%;
    object-fit: cover; /* Ajuste melhor da imagem */
    border-radius: 10px; /* Imagem com cantos arredondados */
}

.card h2 {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin: 10px 0;
}

.card p {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.4;
    font-family: 'Sedgwick Ave Display', cursive;
}
