[x-cloak] { display: none !important; }
      
      /* Estilo para o card de evento */
      .event-card {
        background: #ffffff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid #eef2f6;
      }
      
      .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      }
      
      .event-image-container {
        position: relative;
        height: 240px;
        overflow: hidden;
        border-radius: 8px 8px 0 0;
        cursor: pointer;
      }
      
      .event-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s;
      }
      
      .event-card:hover .event-image {
        transform: scale(1.05);
      }
      
      
      .photo-count-badge {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(78, 107, 255, 0.9);
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 12px;
        display: flex;
        align-items: center;
        gap: 5px;
        backdrop-filter: blur(5px);
        z-index: 10;
        cursor: pointer;
      }
      
      .photo-count-badge:hover {
        background: rgba(78, 107, 255, 1);
      }
      
      .category-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: rgba(255, 255, 255, 0.9);
        color: #4e6bff;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 10;
      }
      
      .b .category-badge {
        background: rgba(28, 33, 54, 0.9);
        color: #f36a8d;
      }
      
      .event-content {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      
      .event-meta {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #79808a;
      }
      
      .event-meta i {
        margin-right: 5px;
      }
      
      .event-meta .date i {
        color: #4e6bff;
      }
      
      .event-meta .category i {
        color: #f36a8d;
      }
      
      .event-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        line-height: 1.4;
      }
      
      .event-title a {
        color: #181c31;
        text-decoration: none;
        transition: color 0.3s;
      }
      
      .event-title a:hover {
        color: #4e6bff;
      }
      
      .b .event-title a {
        color: white;
      }
      
      .b .event-title a:hover {
        color: #4e6bff;
      }
      
      .event-description {
        color: #79808a;
        margin-bottom: 15px;
        line-height: 1.6;
        flex: 1;
      }
      
      .event-location {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 14px;
        color: #79808a;
        margin-top: auto;
      }
      
      .event-location i {
        color: #20ca66;
      }
      
      .read-more-btn {
        display: inline-block;
        background: #4e6bff;
        color: white;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s;
        margin-top: 15px;
        text-align: center;
        border: none;
        cursor: pointer;
      }
      
      .read-more-btn:hover {
        background: #3a4fd0;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(78, 107, 255, 0.3);
      }
      
      /* Miniaturas das fotos */
      .photo-thumbnails {
        display: flex;
        gap: 5px;
        margin-top: 10px;
        flex-wrap: wrap;
      }
      
      .photo-thumb {
        width: 50px;
        height: 50px;
        border-radius: 4px;
        object-fit: cover;
        cursor: pointer;
        transition: all 0.3s;
        border: 2px solid transparent;
      }
      
      .photo-thumb:hover {
        transform: scale(1.1);
        border-color: #4e6bff;
      }
      
      /* Empty state */
      .empty-state {
        text-align: center;
        padding: 80px 20px;
        grid-column: 1 / -1;
      }
      
      .empty-state i {
        font-size: 60px;
        color: #d8e1ed;
        margin-bottom: 20px;
      }
      
      .empty-state h3 {
        font-size: 24px;
        color: #181c31;
        margin-bottom: 10px;
      }
      
      .empty-state p {
        color: #79808a;
        max-width: 400px;
        margin: 0 auto 20px;
      }
      
      .b .empty-state i {
        color: #3c4556;
      }
      
      .b .empty-state h3 {
        color: white;
      }
      
      /* Filtros e busca */
      .filters-container {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 30px;
        justify-content: center;
      }
      
      .search-box {
        flex: 1;
        min-width: 250px;
        position: relative;
      }
      
      .search-box i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #79808a;
      }
      
      .search-box input {
        width: 100%;
        padding: 12px 20px 12px 45px;
        border: 1px solid #d8e1ed;
        border-radius: 30px;
        font-size: 14px;
        transition: all 0.3s;
      }
      
      .b .search-box input {
        background: #1c2136;
        border-color: #3c4556;
        color: white;
      }
      
      .search-box input:focus {
        outline: none;
        border-color: #4e6bff;
        box-shadow: 0 0 0 3px rgba(78, 107, 255, 0.1);
      }
      
      .category-filter select {
        padding: 12px 30px 12px 20px;
        border: 1px solid #d8e1ed;
        border-radius: 30px;
        font-size: 14px;
        background: white;
        cursor: pointer;
        min-width: 200px;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 16px;
      }
      
      .b .category-filter select {
        background-color: #1c2136;
        border-color: #3c4556;
        color: white;
      }
      
      .category-filter select:focus {
        outline: none;
        border-color: #4e6bff;
      }
      
      /* Paginação */
      .pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 50px;
        flex-wrap: wrap;
      }
      
      .page-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        border: 1px solid #d8e1ed;
        color: #79808a;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s;
      }
      
      .b .page-btn {
        background: #1c2136;
        border-color: #3c4556;
        color: #a0a8b5;
      }
      
      .page-btn:hover,
      .page-btn.active {
        background: #4e6bff;
        border-color: #4e6bff;
        color: white;
      }
      
      .page-btn.disabled {
        opacity: 0.5;
        cursor: not-allowed;
      }
      
      .page-btn.disabled:hover {
        background: white;
        border-color: #d8e1ed;
        color: #79808a;
      }
      
      .b .page-btn.disabled:hover {
        background: #1c2136;
        border-color: #3c4556;
        color: #a0a8b5;
      }
      
      /* Botão de visualizar todas as fotos */
      .view-all-photos {
        display: inline-block;
        background: #f36a8d;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        text-decoration: none;
        margin-top: 10px;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
      }
      
      .view-all-photos:hover {
        background: #d44a6d;
        transform: translateY(-2px);
      }

       .section-title {
        text-align: center;
        margin-bottom: 40px;
      }
      
      .section-title h1 {
        font-size: 48px;
        font-weight: 700;
        color: #181c31;
        margin-bottom: 16px;
        line-height: 1.2;
      }
      
      .b .section-title h1 {
        color: white;
      }
      
      .section-title p {
        font-size: 18px;
        color: #79808a;
        max-width: 600px;
        margin: 0 auto;
      }

      .filters-container {
        background: #ffffff;
        border-radius: 60px;
        padding: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        border: 1px solid #eef2f6;
        max-width: 800px;
        margin: 0 auto 40px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }
      
      .b .filters-container {
        background: #1c2136;
        border-color: #3c4556;
      }

      @media (max-width: 768px) {
        .grid-container {
          grid-template-columns: 1fr;
        }
        
        .filters-container {
          border-radius: 24px;
          padding: 16px;
        }
        
        .section-title h1 {
          font-size: 36px;
        }
      }

      .reset-filters-btn {
        background: linear-gradient(135deg, #f36a8d 0%, #ff8aa8 100%);
        color: white;
        border: none;
        padding: 14px 32px;
        border-radius: 40px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 10px 20px rgba(243, 106, 141, 0.2);
      }
      
      .reset-filters-btn:hover {
        box-shadow: 0 15px 30px rgba(243, 106, 141, 0.3);
      }
      
      /* ---- Fade-in dos cards ao carregar ---- */
      @keyframes cardFadeIn {
        from {
          opacity: 0;
          transform: translateY(24px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .event-card-fade {
        opacity: 0;
        animation: cardFadeIn 0.5s ease forwards;
      }

      /* Delay escalonado para cada card (até 9 cards por página) */
      .event-card-fade:nth-child(1) { animation-delay: 0.05s; }
      .event-card-fade:nth-child(2) { animation-delay: 0.15s; }
      .event-card-fade:nth-child(3) { animation-delay: 0.25s; }
      .event-card-fade:nth-child(4) { animation-delay: 0.35s; }
      .event-card-fade:nth-child(5) { animation-delay: 0.45s; }
      .event-card-fade:nth-child(6) { animation-delay: 0.55s; }
      .event-card-fade:nth-child(7) { animation-delay: 0.65s; }
      .event-card-fade:nth-child(8) { animation-delay: 0.75s; }
      .event-card-fade:nth-child(9) { animation-delay: 0.85s; }

      /* ---- Fade-in dos cards ao carregar ---- */
      @keyframes cardFadeIn {
        from {
          opacity: 0;
          transform: translateY(28px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .event-card-fade {
        opacity: 0;
        animation: cardFadeIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      }

      /* Delay escalonado até 9 cards por página */
      .event-card-fade:nth-child(1) { animation-delay: 0.05s; }
      .event-card-fade:nth-child(2) { animation-delay: 0.13s; }
      .event-card-fade:nth-child(3) { animation-delay: 0.21s; }
      .event-card-fade:nth-child(4) { animation-delay: 0.29s; }
      .event-card-fade:nth-child(5) { animation-delay: 0.37s; }
      .event-card-fade:nth-child(6) { animation-delay: 0.45s; }
      .event-card-fade:nth-child(7) { animation-delay: 0.53s; }
      .event-card-fade:nth-child(8) { animation-delay: 0.61s; }
      .event-card-fade:nth-child(9) { animation-delay: 0.69s; }