/* Fonte usando sistema ou web fonts */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #000000;
    padding: 12px 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gmail-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.separator {
    width: 1px;
    height: 20px;
    background-color: #ffffff;
    opacity: 0.3;
}

/* Tag Section */
.tag-section {
    padding: 12px 16px;
    background-color: #ffffff;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: #2C3E50;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
}

/* Ad Section */
.ad-section {
    padding: 16px;
    background-color: #ffffff;
}

.starlink-ad {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.starlink-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Main Content */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px 40px;
}

.article {
    background-color: #ffffff;
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-lead {
    font-size: 18px;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #666666;
}

.source {
    font-weight: 600;
}

/* Media Section */
.media-section {
    margin-bottom: 32px;
}

.video-container {
    position: relative;
    width: 100%;
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

vturb-smartplayer {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.share-section {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #CC0000;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 0;
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

/* Content Sections */
.content-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.attention-box {
    background-color: #fff5f5;
    border-left: 4px solid #CC0000;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.attention-label {
    color: #CC0000;
    font-size: 16px;
}

.attention-text {
    color: #000000;
    line-height: 1.6;
    font-size: 15px;
}

.cta-button {
    width: 100%;
    background-color: #CC0000;
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 24px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #aa0000;
}

.program-description {
    margin-bottom: 24px;
}

.program-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 16px;
}

.highlight {
    color: #CC0000;
    font-weight: 600;
}

.underline {
    text-decoration: underline;
}

.important-box {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 4px;
}

.important-label {
    color: #000000;
    font-size: 16px;
}

.important-text {
    color: #000000;
    line-height: 1.6;
    font-size: 15px;
}

.program-includes-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 20px;
}

.includes-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.includes-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    color: #333333;
    border-bottom: 1px solid #e0e0e0;
}

.includes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #CC0000;
    font-weight: bold;
    font-size: 18px;
}

.last-spots-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
}

.last-spots-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-decoration: underline;
}

.last-spots-text {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
}

.importance-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 24px;
}

/* Related News */
.related-news {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0;
}

.news-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.news-item:hover {
    opacity: 0.8;
}

.news-thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.news-text p {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 16px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333333;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.2s;
}

.social-icon i {
    font-size: 18px;
}

.social-icon:hover {
    background-color: #555555;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #999999;
}

.copyright p {
    margin-bottom: 8px;
}

.slogan {
    font-style: italic;
    color: #cccccc;
}

/* Responsive */
@media (max-width: 768px) {
    .article-title {
        font-size: 24px;
    }

    .article-lead {
        font-size: 16px;
    }

    .section-title {
        font-size: 20px;
    }

    .news-item {
        flex-direction: column;
    }

    .news-thumbnail {
        width: 100%;
        height: 200px;
    }
}
