.elementor-672 .elementor-element.elementor-element-6022969{--display:flex;--min-height:100vh;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-672 .elementor-element.elementor-element-4ea8e4a{z-index:2;}.elementor-672 .elementor-element.elementor-element-720619f{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;top:0px;z-index:1;}body:not(.rtl) .elementor-672 .elementor-element.elementor-element-720619f{left:0px;}body.rtl .elementor-672 .elementor-element.elementor-element-720619f{right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-4ea8e4a */@font-face {
    font-family: 'Helvetica Neue Thin';
    src: url('HelveticaNeueThin.otf') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'Helvetica Neue Bold';
    src: url('HelveticaNeueBold.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'Helvetica Neue Light';
    src: url('HelveticaNeueLight.otf') format('opentype');
    font-weight: 200;
}

@font-face {
    font-family: 'Helvetica Neue Medium';
    src: url('HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
}

/* Definindo a fonte principal do site */
body {
    font-family: 'Helvetica Neue Light', 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-family: 'Helvetica Neue Bold', 'Poppins', sans-serif;
}

p, .text-normal {
    font-family: 'Helvetica Neue Light', 'Poppins', sans-serif;
}

button, .btn-primary {
    font-family: 'Helvetica Neue Medium', 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #d9d7d8;
    color: #1c1c1c;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Ao clicar com mouse/toque, não mostra outline */
button:focus:not(:focus-visible),
a:where([role="button"]):focus:not(:focus-visible) {
  outline: none;
}

/* Aplicar exatamente nos botões */
.btn-primary,
.btn-primary * {
  -webkit-touch-callout: none;   /* iOS: remove o pop-up de long-press */
  user-select: none;
  -webkit-user-select: none;     /* iOS/Safari */
  -webkit-tap-highlight-color: transparent; /* remove highlight azul no toque */
}

/* Remove a camada azul do toque */
* {
  -webkit-tap-highlight-color: transparent; /* ou rgba(0,0,0,0) */
}

/* Para quem usa teclado (Tab), mantém um foco visível e bonito */
button:focus-visible,
a:where([role="button"]):focus-visible {
  outline: 2px solid #e3ff53;   /* ajuste à sua cor */
  outline-offset: 2px;
  border-radius:8px;            /* opcional, combina com botões arredondados */
}

/* Bloqueia seleção de texto (moderno + iOS/Safari + IE antigo) */
html, body, * {
  user-select: none;
  -webkit-user-select: none; /* Safari/iOS */
  -ms-user-select: none;     /* IE/Edge legacy */
  -webkit-touch-callout: none; /* remove menu de copiar no iOS */
}


/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(13, 69, 80, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 24px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}



.logo-img {
    display: flex ;
    height: 200px;
    width: 200px ;
}

.stats {
    display: flex;
    gap: 24px;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #0d4550;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Aplicar preenchimento lateral apenas em telas maiores que 768px */
@media (min-width: 769px) {
    main.container {
        padding: 0 50px; /* Mesmo preenchimento lateral do footer */
    }
}
/* No mobile (768px e menor), remove o preenchimento lateral extra */
@media (max-width: 768px) {
    main.container {
        padding: 0 16px; /* Padding menor no mobile */
    }
}

/* Hero Section */
.hero-section {
    text-align: left;
    margin: 48px 0 32px 0;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #0d4550;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 400;
  max-width: none;
  width: 100%;
  margin: 0;
  line-height: 1.5;
}

/* Search Section */
.search-section {
    margin: 0 0 24px 0;
}

.search-bar {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid transparent;
    border-radius: 16px;
    background: white;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.search-input:focus {
    border-color: #e3ff53;
    box-shadow: 0 4px 20px rgba(227, 255, 83, 0.2);
}

/* Filters */
.filters {
    background: white;
    margin: 0 0 32px 0;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #0d4550;
    margin-bottom: 4px;
}

.filter-select {
    padding: 14px 16px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background: #fafafa;
    font-size: 15px;
    outline: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-select:focus {
    border-color: #e3ff53;
    background: white;
}

.filter-select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.clear-filters {
    background: #e3ff53;
    color: #0d4550;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: end;
}

.clear-filters:hover {
    background: #d9f647;
    transform: translateY(-1px);
}

/* Results */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.results-title {
    font-size: 32px;
    font-weight: 700;
    color: #0d4550;
}

.results-count {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

/* Card com layout flexível para altura uniforme */
.card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 280px; /* Altura mínima para uniformização */
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: #e3ff53;
}

/* Container interno do card com flex para distribuir conteúdo */
.card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-shrink: 0; /* Não permite que o header encolha */
}

.card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e3ff53;
    color: #0d4550;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.date-icon {
    font-size: 16px;
}

.card-source {
    text-transform: none;
    background: #f5f5f5;
    color: #666;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0d4550;
    margin-bottom: 12px;
    line-height: 1.3;
    flex-shrink: 0; /* Não permite que o título encolha */
    min-height: 48px; /* Altura mínima para acomodar 2 linhas */
}

.card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
    flex-shrink: 0; /* Não permite que a localização encolha */
    min-height: 20px; /* Altura mínima */
}

/* Espaçador flexível que empurra o botão para baixo */
.card-spacer {
    flex-grow: 1;
}

/* Container das ações sempre no final - ALINHADO À ESQUERDA */
.card-actions {
    margin-top: auto; /* Empurra para o final do card */
    flex-shrink: 0; /* Não permite que encolha */
    display: flex;
    justify-content: flex-start; /* Alinha à esquerda */
}

/* Botão sem sublinhado e estilizado - NÃO ocupa largura total no desktop */
.btn-primary {
    background: #0d4550;
    color: white;
    border: none;
    padding: 14px 32px; /* Padding horizontal aumentado */
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    text-decoration: none !important; /* Remove sublinhado */
    display: inline-block;
    text-align: center;
    /* Removido width: 100% para não ocupar largura total no desktop */
}

.btn-primary:hover {
    background: #0a3640;
    transform: translateY(-2px);
    text-decoration: none !important; /* Garante que não aparece sublinhado no hover */
}

/* Remove sublinhado de links dentro dos cards */
.card a {
    text-decoration: none !important;
}

.card a:hover {
    text-decoration: none !important;
}

/* ======= MOBILE FIXES (até 480px) ======= */
@media (max-width: 480px) {

  /* Cabeçalho branco e sem sombras estranhas */
  header, .header, .site-header, .topbar {
    background: #ffffff !important;
    color: #0d4550;
    box-shadow: none !important;
    border: 0 !important;
  }

  /* Container: respiro lateral seguro */
  body, .site, .site-content, .page, .container, .wrap {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
  }

  /* Hero e resultados: centralizados */
  .hero-section { 
    margin: 24px 0 16px 0 !important; 
    text-align: center !important;
  }

  /* Header da listagem: título e contador empilhados */
  .results-header {
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    text-align: center !important;
    margin-bottom: 16px !important;
  }

  .results-title,
  .section-title,
  .events-heading h2,
  .list-title h2 {
    font-size: clamp(18px, 6vw, 24px) !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 !important;
    text-align: center !important;
  }

  .results-count,
  .events-subtitle,
  #events-counter,
  .events-count {
    display: block;
    text-align: center !important;
    font-size: 13px !important;
    color: #6b7b86 !important;
    margin: 2px 0 10px 0 !important;
  }

  /* Grid: 1 coluna no mobile para evitar vazamento */
  .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
  }

  /* Cards: largura total e sem overflow */
  .card,
  .event-card,
  .event-item,
  .list-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 16px rgba(0,0,0,.06) !important;
    border: 2px solid transparent;
    box-sizing: border-box;
    min-height: 240px !important; /* Altura mínima menor no mobile */
  }

  .card-content {
    padding: 20px !important;
  }

  /* Dentro do card */
  .card-title { 
    font-size: 17px !important; 
    line-height: 1.25 !important;
    min-height: 40px !important; /* Altura mínima menor no mobile */
  }

  .card-location, .event-location, .event-meta {
    white-space: normal !important;
    line-height: 1.35 !important;
  }

  /* Container de ações alinhado à esquerda no mobile mas o botão ocupa largura total */
  .card-actions {
    display: flex !important;
    justify-content: stretch !important; /* Estica o conteúdo */
    width: 100% !important;
  }

  /* BOTÃO INSCREVA-SE COM LARGURA TOTAL APENAS NO MOBILE */
  .card .btn-primary,
  .card-actions .btn-primary {
    width: 100% !important; /* Largura total APENAS no mobile */
    display: block !important;
    text-align: center !important;
    padding: 14px 20px !important;
  }
  
  /* Outros botões e badges mantém tamanho natural */
  .badge, .tag, .chip {
    max-width: 100% !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
    display: inline-block !important;
    text-align: center !important;
  }
}

/* ======= EXTRA FIX: HEADER FULL-BLEED NO MOBILE ======= */
@media (max-width: 480px) {
  /* Força fundo branco sólido e cobertura até as bordas da tela */
  .header {
    background: #ffffff !important;
    backdrop-filter: none !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: max(16px, calc(50vw - 50% + 16px)) !important;
    padding-right: max(16px, calc(50vw - 50% + 16px)) !important;
  }

  /* Fallback adicional usando pseudo-elemento para garantir cobertura total */
  .header { position: sticky; }
  .header::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    left: calc(50% - 50vw);
    width: 100vw;
    background: #ffffff;
    z-index: -1;
  }
}

/* ======= EXTRA FIX: HEADER FONT & LOGO SIZE ======= */
@media (max-width: 480px) {
  /* Reduzir a logo */
  .header img,
  .site-logo img,
  .logo img {
    max-height: 34px !important;
    width: auto !important;
  }

  /* Diminuir fonte dos textos no cabeçalho */
  .header,
  .site-header,
  .topbar {
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  .header nav a,
  .site-header nav a,
  .topbar a {
    font-size: 13px !important;
    padding: 0 6px !important;
  }

  .header .results-title,
  .header .results-count,
  .header .events-count {
    font-size: 12px !important;
  }
}

/* ======= EXTRA FIX: LOGO ALINHADA À ESQUERDA ======= */
@media (max-width: 480px) {
  .header,
  .site-header,
  .topbar {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .header .logo,
  .site-logo,
  .header img,
  .site-logo img {
    margin-left: 0 !important;
    margin-right: auto !important;
    display: block !important;
  }

  /* Se houver nav/menu, joga ele pro lado direito */
  .header nav,
  .site-header nav {
    margin-left: auto !important;
  }
}

/* ======= CARREGAR MAIS EVENTOS - SEMPRE CENTRALIZADO ======= */
.carregar-mais, 
.load-more, 
#loadMore,
#loadMoreEvents, 
.load-more-events, 
.btn-load-more {
  display: flex !important;
  justify-content: center !important; /* SEMPRE centralizado */
  align-items: center !important;
  margin: 20px auto 30px auto !important;
  text-align: center !important;
  width: 100% !important;
}

.carregar-mais button, 
.load-more button,
#loadMore button, 
#loadMoreEvents button, 
.load-more-events button, 
.btn-load-more button {
  margin: 0 auto !important;
  display: inline-block !important;
}

/* Estilo específico para o botão Carregar Mais quando é um button direto */
button.load-more,
button#loadMore,
.load-more:not(div):not(section) {
  display: inline-block !important;
  margin: 20px auto 30px auto !important;
  background: #0d4550;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

button.load-more:hover,
button#loadMore:hover {
  background: #0a3640;
  transform: translateY(-2px);
}

/* Container wrapper para centralizar o botão */
.load-more-container {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 20px 0 30px 0 !important;
}

/* ======= AJUSTE ADICIONAL PARA UNIFORMIZAÇÃO DOS CARDS ======= */
@media (min-width: 768px) {
  .cards-grid {
    align-items: stretch; /* Garante que todos os cards tenham a mesma altura */
  }
  
  .card {
    height: 100%; /* Ocupa toda a altura disponível no grid */
  }
}

/* Para telas muito grandes, limita o número de colunas */
@media (min-width: 1600px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* FOOTER STYLES */
.footer {
    background-color: #0d4550; /* Cor de fundo escura para contraste */
    color: #ffffff; /* Texto branco */
    padding: 60px 24px 20px 24px; /* Adicionado padding lateral */
    margin-top: 60px; /* Espaçamento do conteúdo principal */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alinha itens ao topo */
    gap: 40px; /* Espaçamento entre as colunas */
    flex-wrap: wrap; /* Permite quebra de linha em telas menores */
    margin-bottom: 40px;
    max-width: 1400px; /* Limita a largura do conteúdo do footer */
    margin-left: auto; /* Centraliza o conteúdo do footer */
    margin-right: auto; /* Centraliza o conteúdo do footer */
}

.footer-newsletter,
.footer-social {
    flex: 1; /* Permite que as colunas cresçam */
    min-width: 280px; /* Largura mínima para cada coluna antes de quebrar */
}

.newsletter-title,
.social-title {
    font-family: 'Helvetica Neue Bold', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #e3ff53; /* Cor de destaque para os títulos */
}

.newsletter-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 450px; /* Limita a largura da descrição para melhor leitura */
}

.newsletter-btn {
    background-color: #e3ff53; /* Cor do botão de destaque */
    color: #0d4550; /* Texto escuro no botão */
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block; /* Para que o padding funcione corretamente */
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.newsletter-btn:hover {
    background-color: #d9f647;
    transform: translateY(-2px);
}

.footer-social {
    text-align: right; /* Alinha o conteúdo da coluna social à direita */
}

.social-icons {
    display: flex;
    gap: 20px; /* Espaçamento entre os ícones */
    justify-content: flex-end; /* Alinha os ícones à direita */
}

/* Estilo para o círculo dos ícones sociais */
.social-icon-circle {
    display: flex; /* Para centralizar o SVG dentro do círculo */
    justify-content: center;
    align-items: center;
    width: 50px; /* Tamanho do círculo */
    height: 50px; /* Tamanho do círculo */
    background-color: #E3FF53; /* Cor de fundo do círculo */
    border-radius: 50%; /* Transforma em círculo */
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-icon-circle:hover {
    background-color: #d9f647; /* Cor de hover para o círculo */
    transform: translateY(-2px);
}

/* Estilo para os SVGs dentro dos círculos */
.social-icons svg {
    width: 28px; /* Tamanho do ícone SVG dentro do círculo */
    height: 28px;
    fill: #0D4550; /* Cor do ícone SVG */
    transition: fill 0.2s ease;
}

.social-icon-circle:hover svg {
    fill: #0a3640; /* Cor do ícone no hover (um tom mais escuro do #0D4550) */
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Linha divisória */
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7); /* Cor mais suave para o copyright */
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Empilha as colunas em telas menores */
        align-items: center; /* Centraliza os itens */
        text-align: center; /* Centraliza o texto */
        gap: 50px; /* Aumenta o espaçamento entre as seções empilhadas */
    }

    .footer-newsletter,
    .footer-social {
        min-width: unset; /* Remove largura mínima */
        width: 100%; /* Ocupa largura total */
    }

    .newsletter-description {
        max-width: 100%; /* Permite que a descrição ocupe toda a largura */
    }

    .social-icons {
        justify-content: center; /* Centraliza os ícones sociais */
    }

    .footer-social {
        text-align: center; /* Centraliza o texto da coluna social no mobile */
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 16px 15px 16px; /* Ajusta padding lateral para mobile */
        margin-top: 40px;
    }

    .newsletter-title,
    .social-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .newsletter-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .newsletter-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .social-icon-circle { /* Ajusta o tamanho do círculo no mobile */
        width: 45px;
        height: 45px;
    }

    .social-icons svg { /* Ajusta o tamanho do ícone SVG dentro do círculo no mobile */
        width: 24px;
        height: 24px;
    }

    .footer-bottom {
        font-size: 13px;
        padding-top: 15px;
    }
}

/* Footer com largura total no mobile */
@media (max-width: 768px) {
    .footer {
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100vw !important;
    }
    
    .footer-content {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .footer-bottom .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}/* End custom CSS */