/* ================================ */
/* 0. CONFIGURAÇÕES GLOBAIS (NOVO)  */
/* ================================ */
html {
  /* 1. Esta é a mágica: ativa o scroll suave */
  scroll-behavior: smooth;
  
  /* 2. Isto corrige o alinhamento: 
     Diz ao navegador para parar o scroll 5rem *antes* do topo, deixando espaço para o header.
     (O seu .header-container tem height: 5rem)
  */
  scroll-padding-top: 5rem;
}






/* ================================ */
/* 1. RESET BÁSICO E CORES (do Tailwind) */
/* ================================ */
:root {
  --background: hsl(0 0% 8%); /* dark-bg-2 */
  --card: hsl(0 0% 12%);
  --border: hsl(0 0% 20%);
  --gold: #D4AF37;
  --gold-light: #F4E5B8;
  --text-primary: hsl(0 0% 98%);
  --text-secondary: hsl(0 0% 63.9%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
}

.container {
  max-width: 80rem; /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem; /* px-4 */
  padding-right: 1rem; /* px-4 */
}

/* ================================ */
/* 2. CLASSES UTILITÁRIAS (Botões)  */
/* ================================ */
.gold-text {
  background-image: linear-gradient(to right, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-button {
  display: inline-block;
  background-image: linear-gradient(to right, var(--gold), var(--gold-light));
  color: black;
  padding: 1.5rem 2rem; /* px-8 py-6 */
  font-size: 1.125rem; /* text-lg */
  border-radius: 9999px; /* rounded-full */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.gold-button:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-xl */
}

/* ================================ */
/* 3. ESTILOS DO HEADER (CORRIGIDO) */
/* ================================ */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  background-color: black; /* Preto com 50% de transparência */
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); /* Suporte para Safari */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}


.header-logo {
  display: flex; /* Para centralizar a imagem */
  align-items: center; 
  justify-content: center; 
  border-radius: 0.5rem; 
  /* REMOVIDO: height: 5rem; 
    Este era o problema. Ele não vai mais "grudar" no topo e no fundo.
  */
}




.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7.5rem; /* h-20 */
}
.header-logo-img {
  /* 1. Tamanho da logo (GRANDE, como pedido) */
  height: 8rem; /* 64px. Não mude isso. */
  width: auto; 
  
  
  padding: 0.25rem 0.5rem; /* Padding BEM pequeno, só um respiro */
  border-radius: 0.5rem; 
}
.header-nav-desktop {
  display: none; /* Escondido por padrão (Mobile-first) */
}
.header-actions-desktop {
  display: none; /* O botão foi removido */
}

/* Settings para Desktop */
@media (min-width: 1024px) {
  .header-nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem; /* space-x-8 */
  }
  .header-mobile-toggle {
    display: none;
  }
}
.header-link {
  font-size: 1.2rem; /* text-sm */
  font-weight: 500;
  
  /* MUDANÇA: Cor padrão agora é branca (como na sua foto) */
  color: var(--text-primary); 
  text-decoration: none;
  transition: color 0.3s;
  position: relative; 
  padding-bottom: 4px;
}
.header-link:hover {
  color: var(--gold); /* No hover, fica dourado */
}

/* Efeito de sublinhado (removido para ficar mais limpo como na foto) */
.header-link::after {
  display: none;
}

/* ================================== */
/* 18. CSS DO MENU MOBILE (Solução Manual) */
/* ================================== */

/* O ícone do menu (três linhas) */
.header-mobile-toggle {
  display: block; 
  color: white; 
  stroke: white; 
  cursor: pointer;
}
@media (min-width: 1024px) {
  .header-mobile-toggle {
    display: none; 
  }
}

/* O container do menu que abre */
.header-nav-mobile {
  display: none; /* Escondido por padrão */
  
  /* SOLUÇÃO MANUAL (NÃO DEPENDE DO BLUR): 
    Fundo 90% opaco. Garante a leitura.
  */
  background-color: black;
  
  /* Removemos as linhas com erro */
  /* backdrop-filter: blur(10px); */
  /* -webkit-backdrop-filter: blur(10px); */
  
  padding: 1rem 1rem 2rem 1rem; 
  position: absolute;
  top: 100%; 
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1); 
}

/* Quando o JS adiciona a classe .is-open, o menu aparece */
.header-nav-mobile.is-open {
  display: block;
}

/* Links dentro do menu */
.header-link-mobile {
  display: block;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s, color 0.3s;
}
.header-link-mobile:hover {
  background-color: var(--card);
  color: var(--gold);
}
/* Botão "Contato" dentro do menu */
.header-nav-mobile .gold-button {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  padding: 1rem;
}

/* ================================ */
/* 5. ESTILOS DA SEÇÃO ABOUT      */
/* ================================ */
.about-section {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
}
.section-title {
  font-size: 2.25rem; /* text-4xl */
  font-weight: 700;
  margin-bottom: 1.5rem; /* mb-6 */
  color: white;
}
.section-subtitle {
  font-size: 1.25rem; /* text-xl */
  color: var(--text-secondary);
  max-width: 56rem; /* max-w-4xl */
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6; /* leading-relaxed */
}
.about-heading {
  text-align: center;
  margin-bottom: 4rem; /* mb-16 */
}
.about-highlight {
  font-weight: 700;
  color: var(--gold);
}
.about-grid {
  display: grid;
  gap: 2rem; /* gap-8 */
}
@media (min-width: 768px) {
  .section-title { font-size: 3rem; } /* md:text-5xl */
  .about-grid { grid-template-columns: repeat(2, 1fr); } /* md:grid-cols-2 */
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: repeat(4, 1fr); } /* lg:grid-cols-4 */
}
.about-card {
  background-color: var(--card);
  padding: 2rem; /* p-8 */
  border-radius: 1rem; /* rounded-2xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3); /* shadow-lg shadow-black/30 */
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.about-card:hover {
  border-color: rgba(212, 175, 55, 0.5); /* hover:border-[#D4AF37]/50 */
}
.card-icon-wrapper {
  width: 4rem; /* w-16 */
  height: 4rem; /* h-16 */
  border-radius: 9999px; /* rounded-full */
  background-image: linear-gradient(to bottom right, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem; /* mb-6 */
  transition: transform 0.3s ease;
}
.about-card:hover .card-icon-wrapper {
  transform: scale(1.1); /* group-hover:scale-110 */
}
.card-icon {
  width: 2rem; /* size={32} */
  height: 2rem;
  color: black;
}
.card-title {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  margin-bottom: 0.75rem; /* mb-3 */
  color: white;
  transition: color 0.3s ease;
}
.about-card:hover .card-title {
  color: var(--gold); /* group-hover:text-[#D4AF37] */
}
.card-description {
  color: var(--text-secondary);
}

/* ================================ */
/* 6. ESTILOS DO FOOTER           */
/* ================================ */
.footer-section {
  background-color: black;
  color: white;
  padding-top: 4rem; /* py-16 */
  padding-bottom: 4rem;
}
.footer-grid {
  display: grid;
  gap: 3rem; /* gap-12 */
  margin-bottom: 3rem; /* mb-12 */
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); } /* md:grid-cols-3 */
}
.footer-logo {
  /* Estilo da imagem-alvo: 
    É um quadrado, com fundo escuro e bordas arredondadas.
  */
  height: 8rem; /* 64px. Não mude isso. */
  width: auto; 
  margin-left: 2px;



  
  object-fit: contain; /* Garante que a logo caiba dentro */


}
.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 13px;
}
.footer-title {
  font-size: 1.125rem; /* text-lg */
  font-weight: 700;
  margin-bottom: 1rem; /* mb-4 */
  color: var(--gold);
}
.footer-links-list {
  list-style: none;
  display: grid;
  gap: 0.5rem; /* space-y-2 */
}
.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-link:hover {
  color: var(--gold);
}
.footer-social-links {
  display: flex;
  gap: 1rem; /* space-x-4 */
}
.footer-social-icon {
  width: 2.5rem; /* w-10 */
  height: 2.5rem; /* h-10 */
  border-radius: 9999px; /* rounded-full */
  background-image: linear-gradient(to bottom right, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.footer-social-icon:hover {
  transform: scale(1.1);
}
.footer-social-icon svg {
  width: 1.25rem; /* size={20} */
  height: 1.25rem;
  color: black;
}
.footer-copyright {
  border-top: 1px solid var(--border);
  padding-top: 2rem; /* pt-8 */
  text-align: center;
  color: var(--text-secondary);
}
.footer-copyright-year {
  font-size: 0.875rem; /* text-sm */
  margin-top: 0.5rem; /* mt-2 */
}



/* ================================ */
/* 8. ESTILOS DA SEÇÃO CONASI         */
/* ================================ */
.conasi-section {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  /* Gradiente de preto para um marrom escuro */
  background-image: linear-gradient(to bottom, #000000, #1c1606);
}

.conasi-grid {
  display: grid;
  gap: 3rem; /* gap-12 */
  align-items: center;
}

@media (min-width: 1024px) {
  .conasi-grid {
    grid-template-columns: 1fr 1fr; /* lg:grid-cols-2 */
  }
}

.conasi-image-wrapper {
  border-radius: 1rem; /* rounded-2xl */
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(212, 175, 55, 0.1), 0 10px 10px -5px rgba(212, 175, 55, 0.1); /* shadow-2xl shadow-gold/20 */
}

.conasi-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.conasi-content {
  color: white;
}

/* Classes utilitárias para remover margens do 
  título/subtítulo genérico
*/
.section-title.no-margin {
  margin-bottom: 1rem; /* mb-4 */
}
.section-subtitle.no-margin {
  margin-bottom: 2rem; /* mb-8 */
  max-width: 100%; /* remove o max-w-4xl */
}

.conasi-items-list {
  display: grid;
  gap: 1.5rem; /* space-y-6 */
}

.conasi-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem; /* mr-4 */
}

.conasi-icon-wrapper {
  flex-shrink: 0;
  background-color: rgba(212, 175, 55, 0.1); /* bg-gold/10 */
  padding: 0.75rem; /* p-3 */
  border-radius: 9999px; /* rounded-full */
}

.conasi-icon {
  width: 1.5rem; /* w-6 h-6 */
  height: 1.5rem;
  color: var(--gold);
}

.conasi-item-title {
  font-weight: 600; /* font-semibold */
  font-size: 1.125rem; /* text-lg */
}

.conasi-item-desc {
  color: var(--text-secondary);
}

.conasi-buttons {
  margin-top: 3rem; /* mt-12 */
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* gap-4 */
}

/* Novo estilo de botão (borda dourada) */
.gold-button-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* mr-2 */
  padding: 0.75rem 1.5rem; /* sm: px-6 py-3 */
  font-size: 1rem; /* text-base */
  border-radius: 9999px; /* rounded-full */
  font-weight: 700;
  border: 1px solid var(--gold);
  color: var(--gold);
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}
.gold-button-outline:hover {
  background-color: rgba(212, 175, 55, 0.1); /* hover:bg-gold/10 */
  color: white;
}

/* ================================ */
/* 9. ESTILOS EXPOSITOR ONLINE      */
/* ================================ */
.expositor-online-section {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  background-color: #000000;
  text-align: center;
}

.expositor-online-section .section-title {
  margin-bottom: 1.5rem; /* mb-6 */
}

.expositor-online-section .section-subtitle {
  max-width: 42rem; /* max-w-2xl */
  line-height: 1.6;
}

/* Texto gradiente azul/ciano */
.blue-gradient-text {
  background-image: linear-gradient(to right, #93c5fd, #06b6d4); /* from-blue-300 to-cyan-500 */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.expositor-button-wrapper {
  margin-top: 3rem; /* mt-12 */
}

/* Botão azul desabilitado */
.blue-button-disabled {
  background-image: linear-gradient(to right, #67e8f9, #3b82f6); /* from-cyan-400 to-blue-500 */
  color: white;
  font-weight: 700;
  font-size: 1.125rem; /* text-lg */
  padding: 0.75rem 2rem; /* py-3 px-8 */
  border-radius: 9999px; /* rounded-full */
  box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.2); /* shadow-lg shadow-cyan-500/30 */
  opacity: 0.8;
  cursor: not-allowed;
  border: none;
}

/* ================================ */
/* 10. ESTILOS DO PORTFOLIO         */
/* ================================ */
.portfolio-section {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  background-color: #141414; /* dark-bg-1 */
}

.portfolio-heading {
  text-align: center;
  margin-bottom: 4rem; /* mb-16 */
}

.portfolio-heading .section-title {
  margin-bottom: 1.5rem; /* mb-6 */
}
.portfolio-heading .section-subtitle {
  font-size: 1.25rem; /* text-xl */
}

.portfolio-tabs-list {
  display: grid;
  
  /* MUDANÇA AQUI: 
    Estava 'repeat(5, 1fr)', mudamos para 'repeat(3, 1fr)' 
  */
  grid-template-columns: repeat(3, 1fr);
  
  max-width: 42rem; /* max-w-2xl */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem; /* mb-12 */
  background-color: var(--card);
  border-radius: 9999px; /* rounded-full */
  padding: 0.5rem; /* p-2 */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3); /* shadow-lg shadow-black/30 */
}

.portfolio-tab-trigger {
  padding: 0.5rem 0.25rem;
  border-radius: 9999px;
  color: var(--text-secondary);
  text-decoration: none;
  text-align: center;
  font-size: 0.875rem; /* text-sm */
  font-weight: 500;
  transition: all 0.3s ease;
}
/* Estado ativo do "botão" do tab */
.portfolio-tab-trigger.active {
  background-image: linear-gradient(to right, var(--gold), var(--gold-light));
  color: black;
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem; /* gap-6 */
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
}
@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr); /* lg:grid-cols-4 */
  }
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem; /* rounded-2xl */
  aspect-ratio: 1 / 1; /* aspect-square */
  cursor: pointer;
}

.portfolio-card {
  position: relative; /* Garante que os filhos 'absolute' fiquem dentro */
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1 / 1; /* Mantém o card quadrado */
  cursor: pointer;
  background-color: #000; /* Fundo preto caso a mídia demore a carregar */
}
        
/* A MUDANÇA ESTÁ AQUI:
  Esta regra agora se aplica ao <video> E ao <img>.
  'position: absolute' faz ele preencher o card.
*/
.portfolio-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Corta o vídeo/imagem para caber */
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.05); /* Efeito de zoom no hover */
}
.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.05); /* group-hover:scale-105 */
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.portfolio-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem; /* p-6 */
  transition: transform 0.3s ease;
}
.portfolio-card:hover .portfolio-card-text {
  transform: translateY(-4px); /* group-hover:translate-y-0 */
}

.portfolio-card-title {
  color: white;
  font-weight: 500;
  font-size: 1.125rem; /* text-lg */
}

.portfolio-button-wrapper {
  text-align: center;
  margin-top: 4rem; /* mt-16 */
}

/* Reutilizando a classe de botão que 
  já definimos no `style.css` 
*/
.gold-button-small {
  display: inline-block;
  background-image: linear-gradient(to right, var(--gold), var(--gold-light));
  color: black;
  padding: 0.75rem 1.5rem; /* px-6 py-3 */
  font-size: 1rem; /* text-base */
  border-radius: 9999px; /* rounded-full */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.gold-button-small:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
}


/* =================================== */
/* 7. ESTILOS DA SEÇÃO EXCLUSIVITY     */
/* =================================== */
.exclusivity-section {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  /* O fundo gradiente "dourado" */
  background-image: linear-gradient(
    to bottom right, 
    #D4AF37, 
    #b89b3f, 
    #A08436
  );
}

.exclusivity-heading {
  text-align: center;
  margin-bottom: 4rem; /* mb-16 */
}

/* O Tailwind tinha classes "text-black" e "text-white" */
/* Estamos redefinindo a cor do título e subtítulo */
.exclusivity-heading .section-title {
  color: #000000; /* text-black */
  margin-bottom: 1.5rem; /* mb-6 */
}
.exclusivity-heading .section-title span {
  color: #FFFFFF; /* text-white */
}
.exclusivity-heading .section-subtitle {
  color: rgba(0, 0, 0, 0.8); /* text-black/80 */
  max-width: 48rem; /* max-w-3xl */
}

.exclusivity-grid {
  display: grid;
  gap: 2rem; /* gap-8 */
}

@media (min-width: 768px) {
  .exclusivity-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
}

.exclusivity-card {
  /* Este é o efeito de "vidro" */
  background-color: rgba(0, 0, 0, 0.2); /* bg-black/20 */
  padding: 2rem; /* p-8 */
  border-radius: 1rem; /* rounded-2xl */
  border: 1px solid rgba(255, 255, 255, 0.2); /* border border-white/20 */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); /* shadow-lg */
  /* backdrop-filter: blur(4px); */ /* Descomente se quiser o efeito "fosco" */
}

.exclusivity-card-inner {
  display: flex;
  align-items: flex-start; /* items-start */
  gap: 1rem; /* space-x-4 */
}

.exclusivity-icon-wrapper {
  flex-shrink: 0;
  width: 3rem; /* w-12 */
  height: 3rem; /* h-12 */
  border-radius: 0.5rem; /* rounded-lg */
  background-color: rgba(255, 255, 255, 0.9); /* bg-white/90 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.exclusivity-icon {
  /* O SVG embutido não usa mais 'src' 
    mas sim 'stroke' ou 'fill'
  */
  width: 28px;
  height: 28px;
  color: black;
  stroke: black; /* Adicionado para garantir a cor */
}

.exclusivity-card-title {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem; /* mb-2 */
}

.exclusivity-card-desc {
  color: rgba(255, 255, 255, 0.8); /* text-white/80 */
  line-height: 1.6; /* leading-relaxed */
}



/* ================================ */
/* 11. ÍCONES DE BOTÃO (NOVO)      */
/* ================================ */
.button-icon {
  width: 1em; /* 16px */
  height: 1em; /* 16px */
  stroke: currentColor; /* Pega a cor do botão (dourado) */
}


/* ================================ */
/* 11. ESTILOS SEÇÃO FEIRAS         */
/* ================================ */
.fairs-section {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  background-color: hsl(0, 0%, 10%); /* dark-bg-3 */
}

.fairs-heading {
  text-align: center;
  margin-bottom: 4rem; /* mb-16 */
}
.fairs-heading .section-title {
  margin-bottom: 1.5rem; /* mb-6 */
}
.fairs-heading .section-subtitle {
  font-size: 1.25rem; /* text-xl */
}

.fairs-grid {
  display: grid;
  gap: 2rem; /* gap-8 */
}

@media (min-width: 768px) {
  .fairs-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
}
@media (min-width: 1024px) {
  .fairs-grid {
    grid-template-columns: repeat(4, 1fr); /* lg:grid-cols-4 */
  }
}

.fair-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem; /* rounded-2xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4); /* shadow-lg shadow-black/40 */
  
  /* Isso força o card a ter uma proporção 
    (aspect-w-1 aspect-h-1 no Tailwind) 
  */
  aspect-ratio: 1 / 1; 
  
  cursor: pointer;
  display: flex; /* Para alinhar o texto no final */
  flex-direction: column;
  justify-content: flex-end;
}

.fair-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fair-card:hover .fair-card-img {
  transform: scale(1.1); /* group-hover:scale-110 */
}

.fair-card-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.fair-card-text {
  position: relative; /* Para ficar acima do overlay */
  z-index: 10;
  padding: 1.5rem; /* p-6 */
}

.fair-card-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700;
  color: white;
  transition: color 0.3s ease;
}
.fair-card:hover .fair-card-title {
  color: var(--gold); /* group-hover:gold-text */
}

.fair-card-desc {
  color: #D1D5DB; /* text-gray-300 */
  font-size: 0.875rem; /* text-sm */
  margin-top: 0.25rem; /* mt-1 */
}

.fairs-button-wrapper {
  text-align: center;
  margin-top: 4rem; /* mt-16 */
}

/* ================================ */
/* 12. ESTILOS SEÇÃO EVENTOS        */
/* ================================ */
.events-section {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  background-color: hsl(0, 0%, 8%); /* dark-bg-2 */
}

.events-heading {
  text-align: center;
  margin-bottom: 4rem; /* mb-16 */
}
.events-heading .section-title {
  margin-bottom: 1.5rem; /* mb-6 */
}
.events-heading .section-subtitle {
  font-size: 1.25rem; /* text-xl */
}

/* NOTA: A seção de Eventos reutiliza 
  as classes .fairs-grid e .fair-card
  para os cards e o layout.
*/


/* ================================ */
/* 13. ESTILOS SEÇÃO SERVIÇOS       */
/* ================================ */
.services-section {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  background-color: hsl(0, 0%, 8%); /* dark-bg-2 */
}

.services-heading {
  text-align: center;
  margin-bottom: 4rem; /* mb-16 */
}
.services-heading .section-title {
  margin-bottom: 1.5rem; /* mb-6 */
}
.services-heading .section-subtitle {
  font-size: 1.25rem; /* text-xl */
  max-width: 48rem; /* max-w-3xl */
}

.services-grid {
  display: grid;
  gap: 2rem; /* gap-8 */
}

/* Layout da Grade:
  - Telas médias: 2 colunas
  - Telas grandes: 3 colunas
*/
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr); /* lg:grid-cols-3 */
  }
}

.service-card {
  background-color: var(--card); /* bg-card */
  padding: 2rem; /* p-8 */
  border-radius: 1rem; /* rounded-2xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3); /* shadow-lg shadow-black/30 */
  border: 1px solid transparent;
  transition: all 0.3s ease;
  
  /* Flex para empurrar o botão para baixo */
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(212, 175, 55, 0.5); /* hover:border-[#D4AF37]/50 */
  box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.1); /* hover:shadow-gold/20 */
}

.service-icon-wrapper {
  width: 4rem; /* w-16 */
  height: 4rem; /* h-16 */
  border-radius: 9999px; /* rounded-full */
  background-image: linear-gradient(to bottom right, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem; /* mb-6 */
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon-wrapper {
  transform: scale(1.1); /* group-hover:scale-110 */
}

.service-icon {
  width: 2rem; /* size={32} */
  height: 2rem;
  color: black;
  stroke: black;
}

.service-card-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700;
  margin-bottom: 1rem; /* mb-4 */
  color: white;
  transition: color 0.3s ease;
}
.service-card:hover .service-card-title {
  color: var(--gold); /* group-hover:text-[#D4AF37] */
}

.service-card-desc {
  color: var(--text-secondary);
  line-height: 1.6; /* leading-relaxed */
  margin-bottom: 1.5rem; /* mb-6 */
  
  /* Isso faz o texto crescer e empurrar o botão */
  flex-grow: 1; 
}

.service-button {
  display: block;
  width: 100%;
  text-align: center;
  background-image: linear-gradient(to right, var(--gold), var(--gold-light));
  color: black;
  padding: 0.75rem 1rem; /* py-3 */
  border-radius: 9999px; /* rounded-full */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.service-button:hover {
  transform: scale(1.05);
}


/* ================================ */
/* 14. ESTILOS SEÇÃO CLIENTES       */
/* ================================ */
.clients-section {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  background-color: hsl(0, 0%, 5%); /* dark-bg-1 */
}

.clients-heading {
  text-align: center;
  margin-bottom: 4rem; /* mb-16 */
}
.clients-heading .section-title {
  margin-bottom: 1.5rem; /* mb-6 */
}
.clients-heading .section-subtitle {
  font-size: 1.25rem; /* text-xl */
}

.clients-grid {
  display: grid;
  gap: 2rem; /* gap-8 */
  
  /* Layout: 2 colunas em mobile, 4 em desktop */
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr); /* md:grid-cols-4 */
  }
}

.client-card {
  background-color: var(--card); /* bg-card */
  padding: 2rem; /* p-8 */
  border-radius: 0.75rem; /* rounded-xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3); /* shadow-lg shadow-black/30 */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.client-card span {
  color: var(--text-secondary); /* text-gray-400 */
  font-weight: 500;
  transition: color 0.3s ease;
}
.client-card:hover {
  border-color: rgba(212, 175, 55, 0.5); /* hover:border-[#D4AF37]/50 */
}
.client-card:hover span {
  color: var(--gold); /* group-hover:text-[#D4AF37] */
}

/* ================================ */
/* 15. ESTILOS SEÇÃO DIFERENCIAIS   */
/* ================================ */
.differentials-section {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  
  /* ATUALIZADO: Fundo Preto Puro para contraste */
  background-color: #0D0D0D; 
}

.differentials-heading {
  text-align: center;
  margin-bottom: 4rem; /* mb-16 */
}
/* Título principal da seção */
.differentials-title {
  font-size: 3rem; /* text-5xl */
  font-weight: 700;
  margin-bottom: 2rem; /* mb-8 */
  line-height: 1.2;
}
@media (min-width: 768px) {
  .differentials-title {
    font-size: 3.75rem; /* md:text-6xl */
  }
}
.differentials-heading .section-subtitle {
  font-size: 1.25rem; /* text-xl */
}

.differentials-grid {
  display: grid;
  gap: 2rem; /* gap-8 */
}

@media (min-width: 768px) {
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
}
@media (min-width: 1024px) {
  .differentials-grid {
    grid-template-columns: repeat(3, 1fr); /* lg:grid-cols-3 */
  }
}

/* Estes cards são quase idênticos aos .service-card, 
  mas sem o botão no final. 
*/
.differential-card {
  background-color: var(--card); /* bg-card */
  padding: 2rem; /* p-8 */
  border-radius: 1rem; /* rounded-2xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3); /* shadow-lg shadow-black/30 */
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.differential-card:hover {
  border-color: rgba(212, 175, 55, 0.5); /* hover:border-[#D4AF37]/50 */
  box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.1); /* hover:shadow-gold/20 */
}

.differential-icon-wrapper {
  width: 4rem; /* w-16 */
  height: 4rem; /* h-16 */
  border-radius: 9999px; /* rounded-full */
  background-image: linear-gradient(to bottom right, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem; /* mb-6 */
  transition: transform 0.3s ease;
}
.differential-card:hover .differential-icon-wrapper {
  transform: scale(1.1); /* group-hover:scale-110 */
}

.differential-icon {
  width: 2rem; /* size={32} */
  height: 2rem;
  color: black;
  stroke: black;
}

.differential-card-title {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  margin-bottom: 0.75rem; /* mb-3 */
  color: white;
  transition: color 0.3s ease;
}
.differential-card:hover .differential-card-title {
  color: var(--gold); /* group-hover:text-[#D4AF37] */
}

.differential-card-desc {
  color: var(--text-secondary);
}
/* ================================ */
/* 16. ESTILOS SEÇÃO CTA FINAL      */
/* ================================ */
.cta-section {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  /* Fundo dourado (o mesmo da seção Exclusivity) */
  background-image: linear-gradient(
    to bottom right, 
    #D4AF37, 
    #A08436
  );
}

.cta-container {
  max-width: 64rem; /* max-w-5xl */
  margin-left: auto;
  margin-right: auto;
  text-align: center; /* text-center */
}

.cta-content {
  display: grid;
  gap: 2rem; /* space-y-8 */
  justify-items: center;
}

.cta-title {
  font-size: 2.25rem; /* text-4xl */
  font-weight: 700; /* font-bold */
  color: #000000; /* text-black */
  line-height: 1.2; /* leading-tight */
}

.cta-title .text-white {
  color: #FFFFFF;
}

.cta-subtitle {
  font-size: 1.25rem; /* text-xl */
  color: rgba(0, 0, 0, 0.8); /* text-black/80 */
  max-width: 48rem; /* max-w-3xl */
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: #FFFFFF; /* bg-white */
  color: #D4AF37; /* text-[#D4AF37] */
  padding: 1.5rem 3rem; /* px-12 py-6 */
  font-size: 1.125rem; /* text-lg */
  border-radius: 9999px; /* rounded-full */
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2); /* shadow-xl shadow-black/20 */
  font-weight: 700; /* font-bold */
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: #F3F4F6; /* hover:bg-gray-100 (aproximação) */
  transform: scale(1.05); /* hover:scale-105 */
}

/* Ajustes de fonte para telas maiores */
@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem; /* md:text-5xl */
  }
  .cta-subtitle {
    font-size: 1.5rem; /* md:text-2xl */
  }
}
@media (min-width: 1024px) {
  .cta-title {
    font-size: 3.75rem; /* lg:text-6xl */
  }
}

/* O CSS para o rodapé (.footer-section, .footer-grid, etc.) 
  já foi adicionado na nossa primeira resposta. 
  Não é necessário adicionar de novo.
*/


/* ================================ */
/* 17. ESTILOS DO MODAL DE CONTATO  */
/* ================================ */

/* O Fundo (Overlay) */
.modal-overlay {
  position: fixed;
  inset: 0; /* (top, left, right, bottom = 0) */
  
  /* Este é o "fundo cinza/preto" que você pediu */
  background-color: rgba(0, 0, 0, 0.8);
  
  /* Usa flex para centralizar o conteúdo */
  display: flex;
  align-items: center;
  justify-content: center;
  
  z-index: 1000;
  
  /* Escondido por padrão */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Classe que o JavaScript vai adicionar */
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* O Conteúdo (Caixa Branca) */
.modal-content {
  position: relative;
  background-color: var(--card); /* Fundo escuro do card */
  border-radius: 1rem; /* rounded-2xl */
  border: 1px solid var(--border);
  padding: 2.5rem;
  max-width: 64rem; /* max-w-4xl */
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  
  /* Animação de entrada */
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.modal-overlay.is-open .modal-content {
  transform: scale(1);
}

/* Botão de Fechar */
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 1;
  transition: color 0.3s ease;
}
.modal-close:hover {
  color: white;
}

/* Cabeçalho do Modal */
.modal-header {
  text-align: center;
  margin-bottom: 2.5rem; /* mt-6 */
}
.modal-title {
  font-size: 2.25rem; /* text-3xl */
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem; /* mb-2 */
}
.modal-subtitle {
  color: var(--text-secondary); /* text-gray-400 */
}

/* Grade dos Contatos */
.modal-grid {
  display: grid;
  gap: 1.5rem; /* gap-6 */
}
@media (min-width: 768px) {
  .modal-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
}

/* Cards de Contato */
.contact-card {
  display: block; /* Para o <a> ser um card */
  text-decoration: none;
  background-color: hsl(0, 0%, 15%); /* bg-secondary */
  padding: 1.5rem; /* p-6 */
  border-radius: 1rem; /* rounded-2xl */
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.contact-card:hover {
  border-color: var(--gold); /* hover:border-[#D4AF37] */
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1); /* hover:shadow-gold/10 */
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 1rem; /* space-x-4 */
}

.contact-image-wrapper {
  flex-shrink: 0;
  width: 5rem; /* w-20 */
  height: 5rem; /* h-20 */
  border-radius: 50%; /* rounded-full */
  background-image: linear-gradient(to bottom right, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info {
  flex-grow: 1;
}

.contact-name {
  font-weight: 700;
  font-size: 1.125rem; /* text-lg */
  color: white;
  margin-bottom: 0.25rem; /* mb-1 */
}
.contact-card:hover .contact-name {
  color: var(--gold);
}

.contact-role {
  font-size: 0.875rem; /* text-sm */
  color: var(--text-secondary);
}

.contact-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem; /* mr-1 */
  margin-top: 1rem; /* mt-4 */
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.contact-card:hover .contact-action {
  transform: translateX(-4px); /* group-hover:translate-x-1 */
}

.contact-icon {
  stroke: var(--gold);
}

/* ================================ */
/* 18. CSS DO MENU MOBILE (FALTANTE)*/
/* ================================ */

/* O ícone do menu (três linhas) */
.header-mobile-toggle {
  display: block; /* Mostra em telas pequenas */
  color: white; /* Cor do ícone SVG */
  stroke: white; /* Cor do ícone SVG */
  cursor: pointer;
}
/* Esconde o botão em telas grandes (desktop) */
@media (min-width: 1024px) {
  .header-mobile-toggle {
    display: none; 
  }
}



/* AQUI ESTÁ A MÁGICA:
  Quando o JS adiciona a classe .is-open, o CSS muda o display para "block"
*/
.header-nav-mobile.is-open {
  display: block;
}

/* Os links dentro do menu mobile */
.header-link-mobile {
  display: block;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s, color 0.3s;
}
.header-link-mobile:hover {
  background-color: var(--card);
  color: var(--gold);
}
/* O botão dourado "Entre em Contato" de dentro do menu */
.header-nav-mobile .gold-button {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  padding: 1rem; /* Um pouco menor que o da hero */
}

/* ================================ */
/* 19. AJUSTES MOBILE DO MODAL      */
/* ================================ */

/* Usamos uma 'media query' para aplicar este 
  estilo APENAS em telas pequenas (mobile)
*/
@media (max-width: 640px) {

  /* Muda o layout do card de "lado a lado" 
    para "um em cima do outro" 
  */
  .contact-card-header {
    flex-direction: column; /* Empilha a imagem e o texto */
    gap: 0.5rem; /* Reduz o espaço entre eles */
  }

  /* Centraliza o bloco de texto (nome e cargo) 
  */
  .contact-info {
    text-align: center;
    margin-top: 0.5rem; /* Adiciona um respiro */
  }

  /* Centraliza o link "Enviar e-mail" 
  */
  .contact-action {
    justify-content: center;
  }
}


/* ================================ */
/* 20. ESTILOS FILTRO PORTFOLIO (NOVO) */
/* ================================ */

/* Esta classe será usada pelo JS para 
   esconder os itens que não correspondem ao filtro
*/
.portfolio-card.is-hidden {
  display: none;
}


/* ================================== */
/* 22. ALINHAMENTO DO FOOTER (NOVO)   */
/* ================================== */

/* Esta é a nova classe que força o alinhamento à esquerda */
.footer-column-logo {
  text-align: left; /* Alinha o <p> à esquerda */
  
  /* Garantia extra para o alinhamento da logo */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Alinha a <img> à esquerda */
}

/* Também vamos garantir que a logo não tenha margem central */
.footer-logo {
  margin-left: 0;
  margin-right: 0;
}



/* ================================ */
/* 23. ESTILOS SEÇÃO CALENDÁRIO     */
/* ================================ */

.calendar-section {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  background-color: hsl(0, 0%, 5%); /* dark-bg-1 */
}

.calendar-heading {
  text-align: center;
  margin-bottom: 4rem; /* mb-16 */
}
.calendar-heading .section-title {
  margin-bottom: 1.5rem; /* mb-6 */
}
.calendar-heading .section-subtitle {
  font-size: 1.25rem; /* text-xl */
}

.calendar-list {
  display: grid;
  gap: 1.5rem; /* space-y-6 */
}

.calendar-card {
  background-color: var(--card);
  padding: 1.5rem; /* p-6 */
  border-radius: 0.75rem; /* rounded-xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3); /* shadow-lg */
  
  /* Layout flexível */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}
.calendar-card:hover {
  border-color: rgba(212, 175, 55, 0.5); /* hover:border-[#D4AF37]/50 */
}

/* Data (esquerda) */
.calendar-date {
  flex-shrink: 0; /* Não encolhe */
  text-align: center;
  width: 5rem; /* w-20 */
}
.date-day {
  font-size: 1.125rem; /* text-lg */
  font-weight: 700;
  color: var(--gold);
}
.date-month {
  font-size: 0.875rem; /* text-sm */
  color: var(--text-secondary);
}

/* Info (meio) */
.calendar-info {
  flex-grow: 1; /* Ocupa o espaço restante */
  border-left: 1px solid var(--border);
  padding-left: 1.5rem; /* pl-4 */
}
.calendar-title {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  color: white;
}
.calendar-location {
  color: var(--text-secondary);
}

/* Tag (direita) */
.calendar-tag-wrapper {
  flex-shrink: 0; /* Não encolhe */
}

.calendar-tag {
  padding: 0.25rem 0.75rem; /* px-3 py-1 */
  font-size: 0.875rem; /* text-sm */
  font-weight: 500;
  border-radius: 9999px; /* rounded-full */
}
/* Cores das Tags */
.calendar-tag.organizador {
  background-color: rgba(212, 175, 55, 0.2); /* Dourado */
  color: #D4AF37;
}
.calendar-tag.promotor {
  background-color: rgba(59, 130, 246, 0.2); /* Azul */
  color: #60a5fa;
}
.calendar-tag.comercializador {
  background-color: rgba(34, 197, 94, 0.2); /* Verde */
  color: #22c55e;
}


/* Ajustes para Mobile */
@media (max-width: 768px) {
  .calendar-card {
    /* Faz o card empilhar verticalmente */
    flex-direction: column;
    align-items: flex-start; /* Alinha tudo à esquerda */
    gap: 1rem;
  }
  .calendar-info {
    /* Remove a linha de borda no mobile */
    border-left: none;
    padding-left: 0;
  }
}

main {
  /* Esta regra adiciona o espaço de 5rem (80px) 
    de volta ao topo da página, empurrando o 
    conteúdo para baixo do header.
  */
  padding-top: 5rem;
}



/* ================================ */
/* 4. ESTILOS DA SEÇÃO HERO (CORRETO) */
/* ================================ */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem; 
  padding-bottom: 5rem; 
}

/* ESTA É A REGRA MAIS IMPORTANTE */
.hero-grid {
  display: grid;
  gap: 3rem; /* gap-12 */
  align-items: center;
}

/* Esta @media query aplica as 2 colunas em telas de desktop */
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr; /* 1fr 1fr = 2 colunas */
  }
}

.hero-content {
  display: grid;
  gap: 2rem; /* space-y-8 */
}
.hero-title {
  font-size: 3rem; /* text-5xl */
  font-weight: 700;
  line-height: 1.1; /* leading-tight */
  color: white;
}
@media (min-width: 768px) {
  .hero-title { font-size: 3.75rem; } /* md:text-6xl */
}
@media (min-width: 1024px) {
  .hero-title { font-size: 4.5rem; } /* lg:text-7xl */
}
.hero-subtitle {
  font-size: 1.25rem; /* text-xl */
  color: var(--text-secondary);
  line-height: 1.6; /* leading-relaxed */
}
.hero-brand {
  color: var(--text-secondary);
  font-size: 1.125rem; /* text-lg */
}
.hero-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* aspect-video */
  border-radius: 1rem; /* rounded-2xl */
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); /* shadow-2xl */
}
.hero-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;