/*
Theme Name: Tema Cristão Moderno
Description: Tema WordPress moderno para sites cristãos com design futurista e gradientes divinos
Author: Seu Nome
Version: 1.0
Text Domain: tema-cristao-moderno
*/

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS - Design System Cristão */
:root {
    /* Cores principais */
    --cor-primaria: hsl(45, 90%, 60%);
    --cor-secundaria: hsl(142, 76%, 45%);
    --cor-accent: hsl(217, 91%, 60%);
    
    /* Fundos */
    --fundo-principal: hsl(240, 10%, 8%);
    --fundo-card: hsl(240, 8%, 12%);
    --texto-principal: hsl(210, 40%, 98%);
    --texto-secundario: hsl(215, 20%, 65%);
    
    /* Gradientes */
    --gradiente-divino: linear-gradient(135deg, hsl(45, 90%, 60%) 0%, hsl(217, 91%, 60%) 100%);
    --gradiente-santo: linear-gradient(45deg, hsl(142, 76%, 45%) 0%, hsl(45, 90%, 60%) 50%, hsl(217, 91%, 60%) 100%);
    --gradiente-benção: linear-gradient(180deg, hsl(240, 10%, 8%) 0%, hsl(240, 8%, 12%) 100%);
    
    /* Sombras */
    --sombra-divina: 0 20px 60px -10px hsl(45, 90%, 60%, 0.3);
    --sombra-santa: 0 10px 40px -5px hsl(217, 91%, 60%, 0.2);
    
    /* Transições */
    --transicao-suave: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estilos gerais */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gradiente-benção);
    color: var(--texto-principal);
    line-height: 1.6;
    min-height: 100vh;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(240, 8%, 12%, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradiente-divino);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navegação */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--texto-principal);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transicao-suave);
    position: relative;
}

nav a:hover {
    color: var(--cor-primaria);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradiente-divino);
    transition: var(--transicao-suave);
}

nav a:hover::after {
    width: 100%;
}

/* Conteúdo principal */
main {
    padding: 2rem 0;
}

/* Cards com glass effect */
.card {
    background: rgba(240, 8%, 12%, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--sombra-santa);
    transition: var(--transicao-suave);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-divina);
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    background: var(--gradiente-divino);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2rem;
    color: var(--cor-primaria);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transicao-suave);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradiente-divino);
    color: var(--fundo-principal);
    box-shadow: var(--sombra-divina);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--sombra-divina), 0 0 30px hsl(45, 90%, 60%, 0.4);
}

.btn-secondary {
    background: var(--cor-secundaria);
    color: var(--texto-principal);
}

.btn-secondary:hover {
    background: var(--gradiente-santo);
    transform: translateY(-1px);
}

/* Posts */
.post {
    margin-bottom: 3rem;
}

.post-title {
    margin-bottom: 0.5rem;
}

.post-meta {
    color: var(--texto-secundario);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-content {
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1rem;
}

/* Sidebar */
.sidebar {
    background: var(--fundo-card);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--sombra-santa);
}

.widget {
    margin-bottom: 2rem;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    color: var(--cor-primaria);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: var(--fundo-card);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--texto-secundario);
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}