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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: none;
}

.logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
}

.logo-text small {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 2px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #2e4f8a 0%, #2e4f8a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}



.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
}

.cargo-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vice-presidente-foto,
.secretario-foto,
.tesoureiro-foto {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2a5298;
}

.whatsapp-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #128C7E;
    text-decoration: underline;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text h2 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #ffd700;
    color: #333;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,215,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2a5298;
    border: 2px solid #2a5298;
}

.btn-outline:hover {
    background: #2a5298;
    color: white;
}

.football-field {
    width: 400px;
    height: 300px;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.football-field::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid white;
    border-radius: 50%;
}

.football-field::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: white;
}


/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 2rem;
    flex: 1;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-content h3 {
    color: #2a5298;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Presidente */
.presidente-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.presidente-foto {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.presidente-text blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.presidente-text blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #ffd700;
    font-family: serif;
}

.presidente-text cite {
    font-weight: 700;
    color: #2a5298;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 2rem;
}

.diretoria-info {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(42, 82, 152, 0.2);
}

.diretoria-info h3 {
    color: #2a5298;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
    font-weight: 700;
}

.diretoria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.cargo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cargo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cargo strong {
    color: #2a5298;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cargo span {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Informações Institucionais */
.info-institucional {
    margin-bottom: 4rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #2a5298;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.contato-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(42, 82, 152, 0.2);
}

.contato-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.contato-info i {
    color: #ffd700;
    width: 20px;
}

/* Seção de Vídeo */
.bg-dark {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.text-white {
    color: white !important;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
}

/* Campanha Destaque */
.campanha-destaque {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.campanha-header {
    text-align: center;
    margin-bottom: 2rem;
}

.campanha-header h3 {
    color: #2a5298;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.campanha-data, .campanha-local {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0.8rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3c72;
}

.campanha-data i, .campanha-local i {
    color: #2a5298;
    font-size: 1.3rem;
}

.campanha-content {
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    padding: 2rem;
}

.campanha-info h4 {
    color: #2a5298;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.campanha-info h4:first-child {
    margin-top: 0;
}

.campanha-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.campanha-info ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.campanha-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem;
    background: rgba(42, 82, 152, 0.1);
    border-radius: 8px;
    font-weight: 500;
    color: #2a5298;
}

.campanha-info li i {
    color: #ffd700;
    font-size: 1.1rem;
    width: 20px;
}

/* Ações Sociais */
.acoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.acao-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ffd700;
}

.acao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.acao-card i {
    font-size: 3rem;
    color: #2a5298;
    margin-bottom: 1.5rem;
}

.acao-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.acao-card p {
    color: #666;
    line-height: 1.6;
}

/* Galeria */
.galeria-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid #2a5298;
    background: transparent;
    color: #2a5298;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #2a5298;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.galeria-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.05);
}

.galeria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Notícias */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.noticia-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.noticia-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.noticia-content {
    padding: 1.5rem;
}

.noticia-date {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
}

.noticia-card h3 {
    color: #333;
    margin: 0.5rem 0 1rem;
    font-size: 1.3rem;
}

.noticia-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1e3c72;
}

/* Transparência */
.transparencia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.transparencia-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.transparencia-card i {
    font-size: 3rem;
    color: #2a5298;
    margin-bottom: 1.5rem;
}

.transparencia-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.transparencia-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #ffd700;
    margin-right: 10px;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #333;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #2a5298;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .football-field {
        width: 300px;
        height: 200px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .timeline-year {
        position: absolute;
        left: -40px;
        min-width: 80px;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .presidente-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
}
/* Parceiros */
.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.parceiro-logo {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(42,82,152,0.07);
    padding: 0.5rem 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.parceiro-logo:hover {
    transform: scale(1.07);
    box-shadow: 0 4px 16px rgba(42,82,152,0.18);
}

.cargo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cargo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cargo strong {
    color: #2a5298;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cargo span {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Informações Institucionais */
.info-institucional {
    margin-bottom: 4rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #2a5298;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.contato-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(42, 82, 152, 0.2);
}

.contato-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.contato-info i {
    color: #ffd700;
    width: 20px;
}

/* Seção de Vídeo */
.bg-dark {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.text-white {
    color: white !important;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
}

/* Campanha Destaque */
.campanha-destaque {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.campanha-header {
    text-align: center;
    margin-bottom: 2rem;
}

.campanha-header h3 {
    color: #2a5298;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.campanha-data, .campanha-local {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0.8rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3c72;
}

.campanha-data i, .campanha-local i {
    color: #2a5298;
    font-size: 1.3rem;
}

.campanha-content {
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    padding: 2rem;
}

.campanha-info h4 {
    color: #2a5298;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.campanha-info h4:first-child {
    margin-top: 0;
}

.campanha-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.campanha-info ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.campanha-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem;
    background: rgba(42, 82, 152, 0.1);
    border-radius: 8px;
    font-weight: 500;
    color: #2a5298;
}

.campanha-info li i {
    color: #ffd700;
    font-size: 1.1rem;
    width: 20px;
}

/* Ações Sociais */
.acoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.acao-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ffd700;
}

.acao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.acao-card i {
    font-size: 3rem;
    color: #2a5298;
    margin-bottom: 1.5rem;
}

.acao-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.acao-card p {
    color: #666;
    line-height: 1.6;
}

/* Galeria */
.galeria-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid #2a5298;
    background: transparent;
    color: #2a5298;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #2a5298;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.galeria-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.05);
}

.galeria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Notícias */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.noticia-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.noticia-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.noticia-content {
    padding: 1.5rem;
}

.noticia-date {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
}

.noticia-card h3 {
    color: #333;
    margin: 0.5rem 0 1rem;
    font-size: 1.3rem;
}

.noticia-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1e3c72;
}

/* Transparência */
.transparencia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.transparencia-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.transparencia-card i {
    font-size: 3rem;
    color: #2a5298;
    margin-bottom: 1.5rem;
}

.transparencia-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.transparencia-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #ffd700;
    margin-right: 10px;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #333;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #2a5298;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .football-field {
        width: 300px;
        height: 200px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .timeline-year {
        position: absolute;
        left: -40px;
        min-width: 80px;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .presidente-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

.cargo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cargo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cargo strong {
    color: #2a5298;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cargo span {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Informações Institucionais */
.info-institucional {
    margin-bottom: 4rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #2a5298;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.contato-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(42, 82, 152, 0.2);
}

.contato-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.contato-info i {
    color: #ffd700;
    width: 20px;
}

/* Seção de Vídeo */
.bg-dark {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.text-white {
    color: white !important;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
}

/* Campanha Destaque */
.campanha-destaque {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.campanha-header {
    text-align: center;
    margin-bottom: 2rem;
}

.campanha-header h3 {
    color: #2a5298;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.campanha-data, .campanha-local {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0.8rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3c72;
}

.campanha-data i, .campanha-local i {
    color: #2a5298;
    font-size: 1.3rem;
}

.campanha-content {
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    padding: 2rem;
}

.campanha-info h4 {
    color: #2a5298;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.campanha-info h4:first-child {
    margin-top: 0;
}

.campanha-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.campanha-info ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.campanha-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem;
    background: rgba(42, 82, 152, 0.1);
    border-radius: 8px;
    font-weight: 500;
    color: #2a5298;
}

.campanha-info li i {
    color: #ffd700;
    font-size: 1.1rem;
    width: 20px;
}

/* Ações Sociais */
.acoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.acao-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ffd700;
}

.acao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.acao-card i {
    font-size: 3rem;
    color: #2a5298;
    margin-bottom: 1.5rem;
}

.acao-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.acao-card p {
    color: #666;
    line-height: 1.6;
}

/* Galeria */
.galeria-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid #2a5298;
    background: transparent;
    color: #2a5298;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #2a5298;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.galeria-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.05);
}

.galeria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Notícias */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.noticia-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.noticia-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.noticia-content {
    padding: 1.5rem;
}

.noticia-date {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
}

.noticia-card h3 {
    color: #333;
    margin: 0.5rem 0 1rem;
    font-size: 1.3rem;
}

.noticia-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1e3c72;
}

/* Transparência */
.transparencia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.transparencia-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.transparencia-card i {
    font-size: 3rem;
    color: #2a5298;
    margin-bottom: 1.5rem;
}

.transparencia-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.transparencia-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #ffd700;
    margin-right: 10px;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #333;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #2a5298;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .football-field {
        width: 300px;
        height: 200px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .timeline-year {
        position: absolute;
        left: -40px;
        min-width: 80px;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .presidente-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

.cargo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cargo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cargo strong {
    color: #2a5298;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cargo span {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Informações Institucionais */
.info-institucional {
    margin-bottom: 4rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #2a5298;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.contato-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(42, 82, 152, 0.2);
}

.contato-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.contato-info i {
    color: #ffd700;
    width: 20px;
}

/* Seção de Vídeo */
.bg-dark {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.text-white {
    color: white !important;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
}

/* Campanha Destaque */
.campanha-destaque {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.campanha-header {
    text-align: center;
    margin-bottom: 2rem;
}

.campanha-header h3 {
    color: #2a5298;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.campanha-data, .campanha-local {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0.8rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3c72;
}

.campanha-data i, .campanha-local i {
    color: #2a5298;
    font-size: 1.3rem;
}

.campanha-content {
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    padding: 2rem;
}

.campanha-info h4 {
    color: #2a5298;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.campanha-info h4:first-child {
    margin-top: 0;
}

.campanha-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.campanha-info ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.campanha-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem;
    background: rgba(42, 82, 152, 0.1);
    border-radius: 8px;
    font-weight: 500
}