/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #444;
    line-height: 1.6;
    background-color: #f9f9f9;
    background-image: url('https://www.transparenttextures.com/patterns/pinstriped-suit.png'); /* Subtle texture */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text h1 {
    font-size: 1.2rem;
    font-weight: 900;
    color: #333;
    line-height: 1;
}

.logo-text h2 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e91e63;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pink-title {
    color: #e91e63;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.yellow-border-text {
    border-left: 8px solid #ffeb3b;
    padding-left: 20px;
    margin-bottom: 25px;
}

.yellow-border-text p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
}

.hero-cta-text {
    font-size: 1.1rem;
    color: #777;
    max-width: 400px;
}

/* Video & Geometric Shapes */
.hero-visual {
    position: relative;
}

.video-placeholder {
    background: #000;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.video-header {
    background: #00bcd4;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.video-placeholder img {
    width: 100%;
    display: block;
}

.shape {
    position: absolute;
    z-index: 1;
    opacity: 0.8;
}

.shape-1 {
    width: 0; height: 0;
    border-left: 50px solid transparent; border-right: 50px solid transparent;
    border-bottom: 80px solid #ffeb3b;
    top: -30px; right: -20px; transform: rotate(15deg);
}

.shape-2 {
    width: 60px; height: 60px;
    background: #e91e63;
    bottom: -20px; left: -30px; clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(-20deg);
}

.shape-3 {
    width: 40px; height: 40px;
    background: #4caf50;
    bottom: 20px; right: -25px;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

/* Info Sections */
.info-sections {
    padding: 60px 0;
    border-top: 2px solid #00bcd433;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.cyan-title {
    color: #00bcd4;
    font-size: 1.3rem;
    font-weight: 900;
    border-bottom: 2px solid #00bcd4;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 5px;
    letter-spacing: 1px;
}

.info-block p {
    margin-bottom: 20px;
    color: #666;
}

.btn-yellow {
    display: inline-block;
    background: #ffeb3b;
    padding: 10px 30px;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-yellow:hover {
    background: #fdd835;
}

.sponsors-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
}

.sponsors-grid a {
    display: block;
    transition: opacity 0.3s ease;
}

.sponsors-grid a:hover {
    opacity: 0.8;
}

.sponsors-grid img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Latest News Section */
.latest-news {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.4);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.news-card {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-bottom: 4px solid #e91e63;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 20px;
}

.news-date {
    display: block;
    font-size: 0.75rem;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Footer */
.site-footer {
    padding: 20px 0;
    border-top: 1px solid #ddd;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
}

.social-icon {
    background: #3b5998;
    color: #fff;
    width: 24px;    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
}

/* Estilos para Novos Elementos (Lista, Tabela, Link) */
ul {
    margin: 0 0 30px 20px;
    list-style: none;
}

ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 4px;
    background-color: #ffeb3b;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

table th {
    background-color: #f4f4f4;
    color: #e91e63;
    text-align: left;
    padding: 15px;
    font-weight: 900;
    border-bottom: 3px solid #e91e63;
}

table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
}

table tr:hover {
    background-color: #fffef0;
}

.inline-link {
    color: #00bcd4;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #e91e63;
    border-bottom-color: #e91e63;
}

/* Responsive */
@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-grid, .grid-2-cols, .news-grid {
        grid-template-columns: 1fr;
    }

    .sponsors-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .pink-title {
        font-size: 1.8rem;
    }

    table {
        display: block;
        overflow-x: auto;
    }
}
/* Estilos específicos para a página interna para complementar o style.css */
.article-container {
    display: flex; /* Alterado de grid para flex */
    gap: 40px;
    margin-top: 1px;
}

.article-body {
    flex: 1; /* Faz o conteúdo ocupar todo o espaço disponível */
    background: #ffffff; /* Podlozhka mais clara para melhor leitura */
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 4px;
    margin-bottom: 40px;
}

.sidebar {
    width: 300px; /* Largura fixa para o sidebar */
    flex-shrink: 0; /* Impede que o sidebar diminuua */
}

.article-header {
    padding: 40px 0 1px;
}

.breadcrumb {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #00bcd4;
    text-decoration: none;
}

.breadcrumb span {
    color: #999;
    margin-left: 5px;
}

.article-main-image {
    width: 100%;
    border-bottom: 8px solid #ffeb3b;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-meta {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #222; /* Texto levemente mais escuro para maior contraste */
}

.article-content h3 {
    margin: 30px 0 15px;
    color: #333;
}

.article-content a {
    color: #00bcd4;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.article-content a:hover {
    color: #e91e63;
    border-bottom-color: #e91e63;
}

.quote-box {
    background: #f9f9f9;
    border-left: 5px solid #e91e63;
    padding: 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.sidebar-block {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.related-news-item {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.related-news-item:last-child {
    border-bottom: none;
}

.related-news-item h4 {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.related-news-item:hover h4 {
    color: #e91e63;
}

@media (max-width: 850px) {
    .article-container {
        flex-direction: column; /* Empilha em telas menores */
    }
    .sidebar {
        width: 100%;
    }
    .article-body {
        padding: 25px;
    }
}