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

:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --accent-color: #ec4899;
    --success-color: #10b981;
    --text-color: #1f2937;
    --light-gray: #f8fafc;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

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

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
}

/* Slider */
.slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--gradient-1);
}

.slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: 1;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    background: rgba(0,0,0,0.2);
    padding: 3rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    z-index: 2;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--text-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.sobre-resumo {
    background: var(--light-gray);
    text-align: center;
}

/* Cursos Grid */
.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.curso-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.curso-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.15);
}

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

.curso-card h3 {
    padding: 1rem;
    font-size: 1.25rem;
}

.curso-card .carga-horaria {
    padding: 0 1rem;
    color: #666;
}

.curso-card .btn-primary {
    margin: 1rem;
}

/* Benefícios */
.beneficios {
    background: var(--light-gray);
}

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

.beneficio-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.beneficio-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.1);
}

.beneficio-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 153, 204, 0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.beneficio-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #0099CC, #33B5E5);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.beneficio-icon svg {
    width: 28px;
    height: 28px;
    stroke: #0099CC;
    stroke-width: 1.5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.beneficio-item:hover .beneficio-icon {
    background: rgba(0, 153, 204, 0.12);
    transform: translateY(-4px);
}

.beneficio-item:hover .beneficio-icon::before {
    opacity: 1;
}

.beneficio-item:hover .beneficio-icon svg {
    stroke: #006699;
    transform: scale(1.1);
}

.beneficio-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Footer */
.main-footer {
    background: var(--text-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-col h3 {
    margin-bottom: 1rem;
}

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

.footer-col a {
    color: var(--white);
    text-decoration: none;
}

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

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .cursos-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Curso Detalhes */
.curso-detalhes {
    padding: 3rem 0;
}

.curso-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.curso-imagem-principal {
    width: 100%;
    border-radius: 8px;
}

.curso-info-principal h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.curso-categoria {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.curso-specs {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.curso-conteudo {
    max-width: 800px;
    margin: 0 auto;
}

.conteudo-section {
    margin-bottom: 2rem;
}

.conteudo-section h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.curso-cta {
    background: var(--light-gray);
    padding: 3rem;
    text-align: center;
    border-radius: 8px;
    margin-top: 3rem;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-categoria {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.blog-meta {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Post Single */
.post-single {
    padding: 3rem 0;
}

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

.post-categoria {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.post-imagem {
    margin: 2rem 0;
}

.post-imagem img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.post-conteudo {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-footer {
    margin-top: 3rem;
    text-align: center;
}

/* Formulário de Inscrição */
.inscricao-form {
    padding: 3rem 0;
}

.form-inscricao {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mensagem {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.mensagem.sucesso {
    background: #d1fae5;
    color: #065f46;
}

.mensagem.erro {
    background: #fee2e2;
    color: #991b1b;
}

/* Quem Somos */
.quem-somos-content {
    padding: 3rem 0;
}

.sobre-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.sobre-section h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.valor-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.valor-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.valor-item ul {
    list-style-position: inside;
}

/* Contato */
.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Cursos Lista */
.cursos-lista {
    padding: 3rem 0;
}

.curso-info {
    padding: 1.5rem;
}

.curso-detalhes {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

/* Noticias Grid */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.noticia-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.noticia-content {
    padding: 1.5rem;
}

.noticia-data {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .curso-header {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .blog-grid,
    .noticias-grid {
        grid-template-columns: 1fr;
    }
}


/* Barra de Acessibilidade */
.accessibility-bar {
    background: #1e293b;
    color: white;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.accessibility-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.accessibility-controls span {
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.font-control-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.font-control-btn:hover:not(:disabled) {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.font-control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.font-control-btn:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .accessibility-controls span {
        display: none;
    }
    
    .font-control-btn {
        padding: 0.5rem;
        font-size: 1rem;
    }
}

/* Estatísticas */
.estatisticas {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Próximos Eventos */
.proximos-eventos {
    padding: 60px 0;
    background: #f8f9fa;
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.evento-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    transition: transform 0.3s ease;
}

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

.evento-data {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    padding: 20px;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.evento-data .dia {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.evento-data .mes {
    font-size: 1rem;
    text-transform: uppercase;
    display: block;
}

.evento-content {
    padding: 20px;
    flex: 1;
}

.evento-content h3 {
    margin-bottom: 10px;
    color: #1f2937;
}

.evento-local {
    color: #6b7280;
    margin-bottom: 10px;
    display: block;
}

/* Galeria de Fotos */
.galeria-destaque {
    padding: 60px 0;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.galeria-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.galeria-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-card:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(60%);
    transition: transform 0.3s ease;
}

.galeria-card:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay h3 {
    margin-bottom: 10px;
}

.galeria-overlay p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Depoimentos */
.depoimentos {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.depoimento-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.depoimento-foto {
    margin-bottom: 20px;
}

.depoimento-foto img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6366f1;
}

.depoimento-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.depoimento-texto {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.depoimento-autor {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 5px;
}

.depoimento-curso {
    color: #6366f1;
    font-size: 0.9rem;
}

/* Páginas de Galeria e Eventos */
.page-header {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.galerias-lista,
.eventos-lista,
.galeria-detalhe,
.evento-detalhe {
    padding: 60px 0;
}

.galeria-categoria,
.galeria-data {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Timeline de Eventos */
.eventos-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.evento-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}

.evento-data-box {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 100px;
    height: fit-content;
}

.evento-dia {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.evento-mes,
.evento-ano {
    display: block;
    text-transform: uppercase;
}

.evento-content-box {
    flex: 1;
}

.evento-content-box img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.evento-info {
    display: flex;
    gap: 20px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.evento-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-programado {
    background: #dbeafe;
    color: #1e40af;
}

.status-em.andamento {
    background: #d1fae5;
    color: #065f46;
}

.status-finalizado {
    background: #e5e7eb;
    color: #374151;
}

.status-cancelado {
    background: #fee2e2;
    color: #991b1b;
}

/* Detalhes do Evento */
.evento-detalhe-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.evento-imagem {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 30px;
}

.evento-info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    position: sticky;
    top: 20px;
}

.evento-info-card h3 {
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

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

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: #1f2937;
}

.info-item p {
    color: #6b7280;
}

/* Galeria de Fotos - Detalhes */
.galeria-descricao {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.fotos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.foto-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.foto-thumb {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
}

.foto-legenda {
    padding: 10px;
    background: white;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-close:hover {
    color: #bbb;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.evento-status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
    .evento-card {
        flex-direction: column;
    }
    
    .evento-data {
        min-width: auto;
        padding: 15px;
    }
    
    .evento-detalhe-grid {
        grid-template-columns: 1fr;
    }
    
    .evento-info-card {
        position: static;
    }
    
    .evento-item {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .fotos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
