        :root {
            --img-width: 200px; /* Variável para a largura da imagem */
            --img-height: 120px; /* Variável para a altura da imagem */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
            background-color: #141414;
            color: white;
            padding: 20px;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        header h1 {
            font-size: 24px;
            margin-right: 10px; /* Espaço entre o título e a barra de pesquisa */
        }
        .search-container {
            display: flex;
            align-items: center;
        }
        .search-container input {
        padding: 12px 16px;      /* aumenta a altura da barra */
        min-width: 200px;        /* largura mínima maior */
        font-size: 16px;         /* tamanho do texto */
        border: 1px solid #444;
        border-radius: 5px;
        background-color: #222;
        color: white;
}
        .container {
            margin-bottom: 40px;
        }
        .section-title {
            font-size: 20px;
            margin-bottom: 10px;
        }
        .carousel {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding-bottom: 10px;
        }
        .carousel a {
            text-decoration: none;
        }
        .carousel img {
            width: var(--img-width);
            height: var(--img-height);
            object-fit: cover;
            border-radius: 15px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        /*.carousel img:hover, .carousel img:focus {
            transform: scale(1.05);
            box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
        } */
        .carousel::-webkit-scrollbar {
            height: 8px;
        }
        .carousel::-webkit-scrollbar-thumb {
            background-color: #888;
            border-radius: 10px;
        }
        .carousel::-webkit-scrollbar-thumb:hover {
            background-color: #555;
        }
        .logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;

    width: 100%;       /* opcional — ocupa toda a largura */
    height: 39px;     /* aqui você aumenta a caixa */
    background: none;  /* só se quiser fundo */
}


.logo {
    width: 200px;
    height: auto;
}
        footer {
            margin-top: 20px;
            text-align: center;
            font-size: 14px;
        }
        @media (max-width: 768px) {
            :root {
                --img-width: 200px;
                --img-height: 150px;
            }
        }

        @media (max-width: 480px) {
            :root {
                --img-width: 150px;
                --img-height: 100px;
            }
        }

