/* Copiado de c:\appmara\maracastro\assets\css\styles.css + extensões News */
:root {
    --primary-color: #1a1a1a;
    --accent-red: #c41e3a;
    --accent-gold: #b8860b;
    --bg-cream: #fdfcf0;
    --text-color: #1a1a1a;
    --text-light: #555;
    --container-width: 720px;
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header - estilo Escola */
.site-header {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.site-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: inherit;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-red);
}

/* Hero - padrão Escola (título + subtítulo + intro) */
.hero {
    padding: 3rem 0 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 580px;
    margin: 0 auto 1.5rem;
}

.hero-image {
    margin-top: 1.5rem;
}

.hero-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

/* Sections - títulos */
section {
    padding: 2.5rem 0;
}

section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Episode cards - padrão Escola de Astrologia, alinhamento à esquerda */
.episode-card {
    background: #fff;
    padding: 1.5rem 1.75rem;
    text-align: left;
    margin-bottom: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.episode-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
}

.episode-card h3 a {
    text-decoration: none;
    color: inherit;
}

.episode-card h3 a:hover {
    color: var(--accent-red);
}

.episode-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.episode-card p:last-of-type {
    margin-bottom: 0;
}

.episode-card .news-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

.btn-vermais {
    display: inline-block;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-vermais:hover {
    text-decoration: underline;
}

.see-more {
    display: inline-block;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

.see-more:hover {
    text-decoration: underline;
}

.hero-newsletter {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.newsletter-cta {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1.15rem;
}

.newsletter-cta:hover {
    text-decoration: underline;
}

/* Lista de formações - uma por linha */
.formation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.formation-list li {
    padding: 0.6rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.formation-list li:last-child {
    border-bottom: none;
}

.formation-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

/* Contact */
.contact-info {
    text-align: center;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.social-links a:hover {
    color: var(--accent-red);
}

/* Footer - padrão Escola */
.site-footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 0.9rem;
    color: var(--text-light);
}

.site-footer p {
    margin-bottom: 0.25rem;
}

.site-footer a {
    color: var(--accent-red);
    font-weight: 600;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* News: página de notícia individual - alinhamento à esquerda */
main .article-body {
    padding: 2.5rem 0;
    text-align: left;
}

.article-body h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: left;
}

.article-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: left;
}

.article-lead {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: left;
}

.article-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
}

.article-source {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: left;
}

.article-source a {
    color: var(--accent-red);
    font-weight: 600;
}

.article-source a:hover {
    text-decoration: underline;
}

section p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Responsivo */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }
}
