:root {
    --g1-red: #C4170C;
    --globo-header: #fff;
    --text-primary: #333;
    --text-secondary: #666;
    --link-color: #C4170C;
    --bg-gray: #f7f7f7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Globo Bar Top */
.globo-bar {
    background-color: #0669DE;
    /* Azul Globo.com */
    color: #fff;
    height: 48px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.globo-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.globo-logo {
    font-size: 18px;
    margin-right: 20px;
}

.globo-menu {
    display: flex;
    gap: 15px;
    flex-grow: 1;
}

.globo-menu span {
    cursor: pointer;
    font-weight: 500;
}

.globo-menu span:hover {
    opacity: 0.8;
}

.globo-login {
    font-weight: 400;
    cursor: pointer;
}

/* G1 Header */
.g1-header {
    background-color: var(--g1-red);
    height: 56px;
    display: flex;
    align-items: center;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.g1-header .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    width: 100%;
}

.g1-logo {
    font-size: 30px;
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -3px;
    /* Tighter tracking */
    margin-right: 8px;
    line-height: 1;
}

.city-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 4px;
    margin-right: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.g1-nav {
    display: flex;
    gap: 20px;
    font-size: 13px;
    /* Refined size */
    font-weight: 700;
    text-transform: lowercase;
    flex-grow: 1;
    align-items: center;
}

.g1-nav a:hover {
    opacity: 0.8;
}

.search-icon {
    font-size: 20px;
    cursor: pointer;
}

/* Ads */
.ad-top {
    text-align: center;
    padding: 10px 0;
    font-size: 10px;
    color: #ccc;
    background: #fff;
}

/* Main Content */
.article-container {
    max-width: 1000px;
    /* Largura padrão G1 mais larga */
    margin: 0 auto;
    padding: 20px 16px;
}

/* Headline */
.headline {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 42px;
    /* G1 usa fontes bem grandes */
    line-height: 1.1;
    color: #1a1a1a;
    /* Preto quase absoluto */
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.subheadline {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #555;
    margin-bottom: 25px;
}

.meta-info {
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
}

.meta-info strong {
    color: #333;
}

.date-time {
    margin-top: 4px;
    color: #888;
}

/* Social Share */
.social-share {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 4px;
    color: white;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #000;
}

.whatsapp {
    background-color: #25D366;
}

.separator {
    border: 0;
    border-top: 1px solid #ddd;
    margin-bottom: 30px;
}

/* Article Body */
.news-body {
    max-width: 700px;
    /* Corpo do texto é mais estreito que o container */
}

.featured-img-container {
    margin-bottom: 30px;
}

.featured-img-container img {
    width: 100%;
    height: auto;
    display: block;
}

figcaption {
    font-size: 12px;
    color: #666;
    background: #f7f7f7;
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.news-body p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #333;
}

.news-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
}

.g1-quote {
    border-left: 3px solid var(--g1-red);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

/* CTA Box */
.cta-box {
    background-color: #fce8e6;
    /* Levemente avermelhado pra combinar com G1 */
    border: 1px solid #eecbcb;
    padding: 30px;
    text-align: center;
    border-radius: 6px;
    margin: 40px 0;
}

.cta-box h4 {
    color: var(--g1-red);
    font-size: 22px;
    margin-bottom: 10px;
}

.g1-button {
    display: inline-block;
    background-color: var(--g1-red);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 4px;
    margin-top: 15px;
    transition: background-color 0.2s;
}

.g1-button:hover {
    background-color: #a01209;
}

/* Comments Style */
.comments-wrapper {
    max-width: 700px;
    margin-top: 60px;
    border-top: 4px solid var(--g1-red);
    padding-top: 30px;
}

.comments-wrapper h3 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.comment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.c-avatar {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.c-body {
    flex-grow: 1;
}

.c-author {
    font-weight: 700;
    font-size: 14px;
    color: var(--g1-red);
    margin-right: 10px;
}

.c-time {
    font-size: 11px;
    color: #999;
}

.c-text {
    font-size: 15px;
    color: #333;
    margin: 5px 0 10px;
}

.c-actions {
    font-size: 11px;
    font-weight: 700;
    color: #888;
}

.c-actions span {
    margin-right: 10px;
    cursor: pointer;
}

.c-actions span:hover {
    color: var(--g1-red);
}

/* Footer */
.g1-footer {
    background-color: var(--g1-red);
    padding: 40px 0;
    color: #fff;
    text-align: center;
    margin-top: 50px;
}

.footer-logo {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -2px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    margin-bottom: 30px;
}

.copyright {
    font-size: 12px;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .headline {
        font-size: 28px;
    }

    .globo-menu {
        display: none;
    }

    .g1-nav {
        display: none;
    }

    .g1-logo {
        font-size: 24px;
    }

    .city-badge {
        font-size: 10px;
    }

    .article-container {
        padding: 10px;
    }
}