/*
Theme Name: VaiConcursos - Estratosfera
Description: Tema claro focado em estudos, com efeitos cósmicos e tipografia limpa. Slogan em todas as páginas.
Author: Gemini
Version: 1.8
*/

/* Reset básico e tipografia */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #0F172A; /* Azul Noturno - Texto Principal */
    background-color: #F8FAFC; /* Fundo gelo muito sutil para destacar os cards */
}

/* Cabeçalho e Navegação */
header {
    background-color: #FFFFFF; /* Fundo Branco Puro */
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    color: #0F172A; /* Azul Noturno */
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 5px;
    position: relative;
    transition: color 0.3s ease;
}

/* Efeito ao passar o mouse (Hover) */
nav ul li a:hover {
    color: #06B6D4; /* Ciano Estelar */
}

/* A linha animada do menu (Efeito Laser Cósmico) */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background-color: #06B6D4; /* Ciano Estelar */
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.6); /* Brilho neon sutil */
}

nav ul li a:hover::after {
    width: 100%;
    left: 0;
}

nav ul li a:active {
    transform: scale(0.95);
}

/* Slogan Global */
.hero-slogan {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
    border-bottom: 1px solid #E2E8F0;
}

.hero-slogan h1 {
    font-size: 4rem;
    margin: 0 0 15px 0;
    color: #1E3A8A; /* Azul Galáxia */
    letter-spacing: -1px;
}

.hero-slogan p {
    font-size: 1.5rem;
    margin: 0;
    color: #334155;
    font-weight: 300;
}

.hero-slogan p.destaque {
    font-size: 1.25rem;
    font-weight: 600;
    color: #06B6D4; /* Ciano para dar um destaque vibrante */
    margin-top: 10px;
}

/* Container de Conteúdo (Blog e Páginas) */
.blog-container, .page-container {
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 0 20px;
}

/* Estilo das Postagens e Páginas (Efeito Gravidade Zero) */
.post, .page-content {
    background-color: #FFFFFF;
    padding: 35px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05);
    border: 1px solid #E2E8F0;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.post:hover, .page-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.08);
    border-color: #06B6D4;
}

.post h2 {
    margin-top: 0;
    font-size: 2rem;
}

.post h2 a {
    text-decoration: none;
    color: #1E3A8A;
    transition: color 0.3s ease;
}

.post h2 a:hover {
    color: #06B6D4;
}

.page-title {
    color: #1E3A8A;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #F1F5F9;
    padding-bottom: 10px;
}

.post-meta {
    font-size: 0.95rem;
    color: #64748B;
    margin-bottom: 20px;
    font-weight: 500;
}

.post-excerpt, .entry-content {
    line-height: 1.7;
    color: #334155;
    font-size: 1.1rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.nav-links {
    text-align: center;
    margin-top: 40px;
}
.nav-links a {
    color: #1E3A8A;
    text-decoration: none;
    font-weight: bold;
}
.nav-links a:hover {
    color: #06B6D4;
}
