:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --accent: #ccff00;
    --accent-glow: rgba(204, 255, 0, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border: #222222;
    --gradient-accent: linear-gradient(135deg, #ccff00 0%, #99cc00 100%);
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Inter', sans-serif;
}

.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(204, 255, 0, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(204, 255, 0, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Navigation */
header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    background: radial-gradient(circle at center, rgba(204, 255, 0, 0.05) 0%, transparent 70%);
    padding-bottom: 5vh; /* Sobe o conteúdo levemente para melhor equilíbrio visual */
}

.subtle-logo {
    height: 160px;
    margin-bottom: 30px;
    opacity: 0.8;
    filter: brightness(0) invert(1);
    transition: all 0.5s ease;
}

.subtle-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.brand-name {
    font-size: 1.2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
}

header h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    background: linear-gradient(to bottom, #fff 40%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.header-meta {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.header-meta span {
    color: var(--accent);
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

/* Sections Styling */
section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(204, 255, 0, 0.1);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Grid Layouts */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--accent);
    transition: height 0.3s ease;
}

.info-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.info-card:hover::before {
    height: 100%;
}

.info-card h3 {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

/* Editorial Calendar/List */
.editorial-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.post-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 30px;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.post-item:hover {
    border-color: var(--accent);
    background: rgba(204, 255, 0, 0.04);
    transform: scale(1.02);
}

.post-item:hover .view-more {
    opacity: 1;
    transform: translateX(0);
}

.view-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.post-item.archived {
    opacity: 0.3;
    filter: grayscale(1);
    border-style: dashed;
    pointer-events: none;
    position: relative;
    overflow: hidden;
}

.post-item.archived::after {
    content: 'ARQUIVADO / REMOVIDO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    background: #ff4444;
    color: #fff;
    padding: 5px 20px;
    font-weight: 900;
    font-size: 0.9rem;
    border-radius: 4px;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.4);
}

.post-item.archived .post-hook,
.post-item.archived h4 {
    text-decoration: line-through;
}

.post-date {
    font-family: var(--font-heading);
}

.date-day {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.post-content h4 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.post-content p {
    margin-bottom: 12px;
}

.post-tag {
    display: inline-block;
    font-size: 0.75rem;
    background: #222;
    padding: 4px 10px;
    border-radius: 100px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.post-hook {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
}

/* Timeline specific */
.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

/* Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: var(--bg-card);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    background: none;
    border: none;
}

.modal-header {
    margin-bottom: 30px;
}

.modal-header .post-tag {
    background: var(--accent);
    color: #000;
}

.copy-button {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.2s;
}

.copy-button:active {
    transform: scale(0.95);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .post-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .post-date {
        margin-bottom: -10px;
    }
    .container {
        padding: 0 20px;
    }
}
