/* Estilos básicos e futuristas */
body {
    font-family: 'Inter', sans-serif; /* Ou outra fonte moderna */
    background-color: #1a202c; /* Cor de fundo escura */
    color: #e2e8f0; /* Cor do texto claro */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #2d3748; /* Cinza mais escuro para o cabeçalho */
    border-bottom: 2px solid #00bcd4; /* Borda ciano para um toque futurista */
}

nav a {
    color: #a0aec0;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00bcd4; /* Ciano ao passar o mouse */
}

.hero {
    background: linear-gradient(45deg, #2d3748, #4a5568); /* Gradiente sutil */
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 188, 212, 0.1); /* Overlay ciano transparente */
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.news-grid article {
    background-color: #2d3748;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-grid article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 188, 212, 0.2);
}

.news-grid article img {
    border-bottom: 1px solid #4a5568;
}

.language-switcher select {
    border: 1px solid #4a5568;
    border-radius: 0.5rem;
}

footer {
    background-color: #2d3748;
    border-top: 1px solid #4a5568;
}
