/* G1 Theme Styles */

/* Header estilo G1 */
.site-header {
    background-color: #ffffff;
    border-bottom: 3px solid #A80000;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #A80000;
    letter-spacing: -0.02em;
}

.header-nav {
    display: flex;
    align-items: center;
}

.section-label {
    background-color: #A80000;
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
}

/* Headline Section estilo G1 */
.headline-section {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.headline-main {
    font-family: 'Lora', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Article Meta estilo G1 */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.byline {
    margin: 0;
    color: #666;
}

.publish-date {
    color: #999;
    font-size: 0.85rem;
}

/* Article Lead estilo G1 */
.article-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.article-lead p:first-child {
    font-weight: 500;
    font-size: 1.2rem;
    color: #444;
}

/* Footer estilo G1 */
.site-footer {
    background-color: #333;
    color: #ccc;
    margin-top: 4rem;
    padding: 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-container p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-disclaimer {
    color: #999;
    font-size: 0.85rem;
    font-style: italic;
}

/* Estilo G1 para elementos especiais */
.interview-section {
    position: relative;
}

/* Ajustes tipográficos G1 */
.headline-main,
h2, h3 {
    position: relative;
    padding-left: 0;
}

h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #222;
}

h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #333;
}

/* Links no estilo G1 */
.article-container a:not(.cta-button) {
    color: #0669de;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.article-container a:not(.cta-button):hover {
    border-bottom-color: #0669de;
    text-decoration: none;
}

/* Imagens e mídia estilo G1 */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 4px;
}

.image-caption {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: -1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Tabelas estilo G1 */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

th, td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

tr:hover {
    background-color: #fafafa;
}

/* Botões secundários estilo G1 */
.secondary-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid #A80000;
    color: #A80000;
    background-color: transparent;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: #A80000;
    color: white;
}

/* Tags e categorias estilo G1 */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #f0f0f0;
    color: #666;
    font-size: 0.85rem;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.tag:hover {
    background-color: #e0e0e0;
    color: #333;
}

/* Compartilhamento social estilo G1 */
.share-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #f5f5f5;
    color: #666;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.share-button:hover {
    background-color: #e0e0e0;
    color: #333;
}

/* Breadcrumb estilo G1 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.breadcrumb a {
    color: #666;
}

.breadcrumb a:hover {
    color: #A80000;
}

.breadcrumb-separator {
    color: #ccc;
}

/* Ajustes mobile para tema G1 */
@media (max-width: 768px) {
    .headline-main {
        font-size: 2rem;
    }
    
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .section-label {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
    
    .interview-section::before {
        display: none;
    }
    
    .article-meta {
        font-size: 0.85rem;
    }
}