@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2E7D32;    /* Verde principal */
    --secondary-color: #29B6F6;  /* Azul profissional */
    --accent-color: #FF6B6B;     /* Coral suave para destaques */
    --text-color: #2C3E50;       /* Azul escuro para textos */
    --light-bg: #F5F7FA;         /* Cinza muito claro para fundos */
    --white: #ffffff;
    --success-color: #4CAF50;    /* Verde para sucesso */
    --warning-color: #FFA726;    /* Laranja para alertas */
    --info-color: #29B6F6;       /* Azul claro para informações */
}
a{
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.btn-pagina {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pagina:hover,
.btn-pagina.active {
    background: #29B6F6;
    color: white;
    border-color: #29B6F6;
}

.paginacao-ellipsis {
    display: flex;
    align-items: center;
    color: #666;
}

/* Modal de Inscrição */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

.form-inscricao {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 1px solid var(--light-bg);
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}

.termos {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.termos input[type="checkbox"] {
    margin-top: 5px;
}

.termos label {
    font-size: 0.9rem;
    color: var(--text-color);
}

.btn-enviar {
    padding: 12px;
    background: var(--success-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.btn-enviar:hover {
    background: var(--primary-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .cursos-hero-content h1 {
        font-size: 2rem;
    }

    .cursos-hero-content p {
        font-size: 1rem;
    }

    .cursos-filtros {
        grid-template-columns: 1fr;
    }

    .curso-info {
        grid-template-columns: 1fr;
    }

    .curso-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .btn-inscrever {
        width: 100%;
    }
}

/* Estilos do Fórum */
.forum-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.forum-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.forum-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.forum-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.forum-sidebar {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.forum-categorias h3,
.forum-tags h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.forum-categorias ul {
    list-style: none;
    padding: 0;
}

.forum-categorias li {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.forum-categorias li:hover,
.forum-categorias li.active {
    background: var(--light-bg);
}

.forum-categorias li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.forum-categorias li .badge {
    margin-left: auto;
    background: var(--secondary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--secondary-color);
    color: white;
}

.forum-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.forum-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.forum-search {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 400px;
}

.forum-search input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.forum-search button {
    padding: 10px 15px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-novo-topico {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-novo-topico:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.topicos-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.topico-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.topico-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.topico-votos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.btn-voto {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-voto:hover {
    color: var(--secondary-color);
}

.votos {
    font-weight: 600;
    color: var(--primary-color);
}

.topico-conteudo {
    flex: 1;
}

.topico-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.categoria {
    background: var(--secondary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.tempo {
    color: var(--text-color);
    font-size: 0.9rem;
}

.topico-conteudo h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.topico-conteudo p {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.topico-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.autor {
    display: flex;
    align-items: center;
    gap: 10px;
}

.autor img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.estatisticas {
    display: flex;
    gap: 15px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.estatisticas span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.estatisticas i {
    color: var(--secondary-color);
}

/* Responsividade do Fórum */
@media (max-width: 992px) {
    .forum-container {
        grid-template-columns: 1fr;
    }

    .forum-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .forum-hero-content h1 {
        font-size: 2rem;
    }

    .forum-actions {
        flex-direction: column;
        gap: 15px;
    }

    .forum-search {
        max-width: 100%;
    }

    .topico-card {
        flex-direction: column;
    }

    .topico-votos {
        flex-direction: row;
        justify-content: center;
    }

    .topico-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

/* Seção de Autenticação */
.auth-section {
    max-width: 500px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: #2c3e50;
    border-bottom: 2px solid #2c3e50;
    margin-bottom: -2px;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.remember-me,
.terms {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    width: 100%;
    padding: 1rem;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #34495e;
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #666;
    text-decoration: none;
}

/* Seção Principal do Fórum */
.forum-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.forum-search {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    max-width: 500px;
}

.forum-search input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.forum-search button {
    padding: 0.8rem 1.5rem;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.forum-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Categorias do Fórum */
.forum-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 2rem;
    color: #2c3e50;
}

.category-info h3 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.category-info p {
    margin: 0 0 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

.topic-count {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #f0f2f5;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

/* Tópicos Recentes */
.recent-topics {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.recent-topics h2 {
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.topic-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.topic-card:hover {
    background: #f0f2f5;
}

.topic-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
}

.topic-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: center;
}

.author-name {
    display: block;
    font-weight: 500;
    color: #2c3e50;
}

.post-date {
    font-size: 0.8rem;
    color: #666;
}

.topic-content {
    flex: 1;
}

.topic-content h3 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.topic-content p {
    margin: 0 0 1rem 0;
    color: #666;
}

.topic-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: #e9ecef;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

.topic-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 80px;
}

.topic-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Modal de Novo Tópico */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    margin: 0;
    color: #2c3e50;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
}

.modal form {
    padding: 1.5rem;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-secondary {
    padding: 0.8rem 1.5rem;
    background: #e9ecef;
    color: #666;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #dee2e6;
}

/* Responsividade */
@media (max-width: 768px) {
    .forum-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .forum-search {
        max-width: none;
    }

    .topic-card {
        flex-direction: column;
    }

    .topic-author {
        flex-direction: row;
        min-width: auto;
    }

    .topic-stats {
        flex-direction: row;
        min-width: auto;
    }
}

/* Estilos para Likes */
.like-button,
.like-btn {
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    padding: 0.3rem 0.5rem;
    border-radius: 15px;
}

.like-button:hover,
.like-btn:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.like-button.liked,
.like-btn.liked {
    color: #e74c3c;
}

/* Estilos para Comentários */
.topic-comments {
    margin-top: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.comments-header h4 {
    margin: 0;
    color: #2c3e50;
}

.show-comments-btn {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem;
}

.show-comments-btn:hover {
    text-decoration: underline;
}

.comments-section {
    margin-top: 1rem;
}

.comment-form {
    margin-bottom: 1.5rem;
}

.comment-form textarea {
    width: 100%;
    min-height: 80px;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    resize: vertical;
}

.comment-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.comment-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-info {
    display: flex;
    flex-direction: column;
}

.comment-name {
    font-weight: 500;
    color: #2c3e50;
}

.comment-date {
    font-size: 0.8rem;
    color: #666;
}

.comment-content {
    margin-bottom: 0.8rem;
}

.comment-content p {
    margin: 0;
    color: #2c3e50;
    line-height: 1.5;
}

.comment-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.8rem;
}

.reply-btn {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.reply-btn:hover {
    background: rgba(52, 152, 219, 0.1);
}

.replies {
    margin-top: 1rem;
    margin-left: 2rem;
    padding-left: 1rem;
    border-left: 2px solid #eee;
}

.reply {
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.reply:last-child {
    margin-bottom: 0;
}

/* Animações */
@keyframes likeAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.like-button.liked i,
.like-btn.liked i {
    animation: likeAnimation 0.3s ease;
}

/* Responsividade para Comentários */
@media (max-width: 768px) {
    .replies {
        margin-left: 1rem;
    }
    
    .comment-actions {
        flex-wrap: wrap;
    }
    
    .comment-author {
        flex-wrap: wrap;
    }
}

/* Estilos para Ranking e Estatísticas */
.forum-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stats-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stats-card h3 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.top-debates {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.debate-rank {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.debate-rank:hover {
    transform: translateX(5px);
}

.rank-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3498db;
    min-width: 30px;
}

.debate-info h4 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1rem;
}

.debate-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.active-members {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.member {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.member img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info {
    display: flex;
    flex-direction: column;
}

.member-name {
    font-weight: 500;
    color: #2c3e50;
}

.member-posts {
    font-size: 0.8rem;
    color: #666;
}

/* Estilos para Filtros e Ordenação */
.topics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.topics-filter select {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    color: #2c3e50;
    cursor: pointer;
}

/* Estilos para Paginação */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 5px;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #f8f9fa;
    border-color: #3498db;
    color: #3498db;
}

.pagination-btn.active {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}

.pagination-ellipsis {
    color: #666;
}

/* Responsividade para Ranking e Paginação */
@media (max-width: 768px) {
    .forum-stats {
        grid-template-columns: 1fr;
    }
    
    .topics-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .pagination-numbers {
        display: none;
    }
    
    .pagination-numbers .pagination-btn:first-child,
    .pagination-numbers .pagination-btn:last-child {
        display: flex;
    }
}

/* Estilos para a seção Hero */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('../image/comunidade.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    top: -50px;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3498db;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: fadeInUp 2s ease;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsividade para a seção Hero */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}
