/* =========================================
   1. CONFIGURAÇÕES GERAIS (GLOBAL)
   ========================================= */
@font-face {
  font-family: Poppins Regular;
  src: url("fonts/Poppins-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: Poppins Bold;
  src: url("fonts/Poppins-Bold.ttf");
  font-display: swap;
}

:root {
  --max-width: 1600px;
  --gutter: 5%;
  --cor-fundo: #1d1d1d;
  --cor-fundo-sec: #202020;
  --cor-verde: #00d26a;
  --cor-verde-claro: #7cff80;
  --cor-texto: #fff;
  --cor-texto-suave: #e0e0e0;
  --primary: #00d26a; /* Verde do Sérgio Pacheco (ou use a cor do FastHip) */
  --bg-nav: #111111;
  --text-color: #ffffff;
  --max-width: 1200px; /* Largura do conteúdo */
  --gradient-verde: radial-gradient(
    circle at center,
    #25d969 0%,
    #2af06a 15%,
    #26de69 36%,
    #1fc068 61%,
    #169666 89%,
    #128365 100%
  );
  --gradient-opaco: radial-gradient(
    circle at center,
    #25d969 0%,
    #2af06a 15%,
    #26de69 36%,
    #1fc068 61%,
    #169666 89%,
    #128365 100%,
    opacity: 0.5;
  );
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Poppins Regular, sans-serif;
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  overflow-x: hidden;
  min-height: 100vh;
  opacity: 0;
  animation: aparecerBody 0.8s ease-out forwards;
}

@keyframes aparecerBody {
  to {
    opacity: 1;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   2. HEADER & NAVEGAÇÃO
   ========================================= */
.header {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px var(--gutter);
  position: relative;
  z-index: 100;
}

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg-nav);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Borda sutil */
  padding: 15px 5%; /* Padding lateral de segurança */
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Sombra suave */
}

/* Container para centralizar o conteúdo (Igual ao FastHip) */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.nav-logo {
  height: 40px; /* Ajuste conforme necessário */
  width: auto;
  display: block;
}

/* --- LINKS DESKTOP --- */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px; /* Espaço entre os links */
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #b0b0b0; /* Cor cinza claro para texto normal */
  font-family: "Poppins Regular", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

/* Efeito Hover (Linha ou mudança de cor) */
.nav-links a:hover {
  color: var(--primary); /* Fica verde ao passar o mouse */
}

/* Linha animada embaixo do link (opcional, estilo moderno) */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

/* --- BOTÃO HAMBÚRGUER (MOBILE) --- */
.mobile-menu-btn {
  display: none; /* Escondido no Desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002; /* Acima do overlay */
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* Animação do X quando ativo */
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--primary);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--primary);
}

/* --- MENU OVERLAY (MOBILE) --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(17, 17, 17, 0.98); /* Fundo quase sólido #111 */
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;

  /* Estado inicial: Escondido */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.mobile-link {
  font-family: Poppins Bold;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s;
}

.mobile-link:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* --- RESPONSIVIDADE (BREAKPOINT) --- */
@media (max-width: 900px) {
  /* Ajuste esse valor conforme a quantidade de links */
  .desktop-only {
    display: none !important; /* Esconde menu horizontal */
  }
  .mobile-menu-btn {
    display: flex; /* Mostra botão hambúrguer */
  }
  .navbar {
    padding: 15px 20px; /* Padding um pouco menor no mobile */
  }
}

/* =========================================
   3. HERO SECTION (PRINCIPAL)
   ========================================= */
.main-content {
  position: relative;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  min-height: calc(100vh - 150px);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.content-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.texto-container {
  position: relative;
  z-index: 2;
  padding-left: 8%;
}

.titulo-praca-nome {
  font-family: Poppins Regular;
  font-size: clamp(1.2rem, 2vw, 1.2rem);
  margin-left: 10px;
  font-style: italic;
  display: block;
  text-align: left;
}

.titulo-principal {
  font-family: Poppins Bold;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  text-align: left;
}

.titulo-praca-nome,
.titulo-principal {
  margin-left: -40px;
}

.blob-container {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 150%;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blob-svg {
  width: 100%;
  height: auto;
  opacity: 0.8;
  animation: flutuar 6s ease-in-out infinite;
}
@keyframes flutuar {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.content-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}

.info-card {
  background: #1d1d1d;
  border: 1px solid #444;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--cor-verde-claro);
}
.info-descricao {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cor-texto-suave);
  text-align: left;
}
.destaque-nome {
  color: var(--cor-verde-claro);
  font-weight: 700;
}

.buttons-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.btn {
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-verde);
  color: #000;
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: default;
}

/* --- RESPONSIVIDADE HERO --- */
@media (max-width: 1280px) {
  .texto-container {
    padding: 40px;
    margin-left: -30px;
  }
  .blob-container {
    display: none;
  }
}

@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
    text-align: left;
    padding-top: 40px;
    gap: 40px;
  }
  .content-left,
  .content-right {
    align-items: flex-start;
  }
  .content-right {
    width: 100%;
    margin-top: -180px;
  }
  .info-card {
    margin: 0;
    padding: 30px;
    margin-top: 80px;
  }
  .texto-container {
    padding-left: 0;
  }

  .buttons-container {
    padding: 0 0 20px;
  }

  .titulo-praca-nome {
    margin-left: 40px;
  }
  .titulo-principal {
    font-size: clamp(3.5rem, 10vw, 5rem);
    margin-left: 40px;
  }
}

@media (max-width: 768px) {
  .titulo-praca-nome {
    font-size: 1rem;
    margin-left: 42px;
  }
  .titulo-principal {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 50px;
  }
}

@media (min-width: 2000px) {
  .blob-container {
    width: 250%;
  }
  .titulo-praca-nome {
    margin-left: -80px;
  }
  .titulo-principal {
    font-size: 7rem;
    margin-left: -100px;
    line-height: 1.2;
  }
}

/* =========================================
   4. LOCALIZAÇÃO
   ========================================= */
.section-localizacao {
  margin-top: 100px;
  width: 100%;
  background-color: #141414;
  padding: 100px var(--gutter);
  display: flex;
  justify-content: center;
}
.container-localizacao {
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.titulo-localizacao {
  font-family: Poppins Bold;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  position: relative;
  text-align: left;
}
.titulo-localizacao::before {
  content: "";
  background: var(--gradient-verde);
  width: 60px;
  height: 9px;
  position: absolute;
  top: -20px;
  left: 0;
  border-radius: 40px;
}
.texto-descricao {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--cor-texto-suave);
  text-align: left;
}
.localizacao-mapa {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.localizacao-mapa iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: grayscale(100%) invert(100%);
}

.mapa-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: #000; /* Marrom */
  mix-blend-mode: overlay;
  opacity: 0.6;
}

/* --- RESPONSIVIDADE LOCALIZAÇÃO --- */
@media (max-width: 1024px) {
  .section-localizacao {
    margin-top: 10px;
  }
  .container-localizacao {
    grid-template-columns: 1fr;
  }
  .localizacao-mapa {
    width: 100%;
    height: 200px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .texto-descricao {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--cor-texto-suave);
    text-align: left;
  }
}

/* =========================================
   5. PROJETO
   ========================================= */
.project-section {
  background-color: var(--cor-fundo-sec);
  padding: 100px var(--gutter);
  display: flex;
  justify-content: center;
}
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  width: 100%;
  gap: 80px;
}
.image-wrapper {
  position: relative;
  width: 50%;
  height: 500px;
}
.image-wrapper img {
  position: absolute;
  border-radius: 30px;
  width: 70%;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  transition: transform 0.4s ease, z-index 0s, box-shadow 0.4s ease;
}
.image-wrapper img:hover {
  transform: scale(1.05) translateY(-10px);
  z-index: 100;
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.img-back {
  top: 0;
  left: 0;
  z-index: 1;
  height: 350px;
}
.img-front {
  bottom: 0;
  right: 0;
  z-index: 2;
  height: 350px;
}
.content-wrapper {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.title {
  font-family: Poppins Bold;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
}
.title::before {
  content: "";
  background: var(--gradient-verde);
  width: 270px;
  height: 8px;
  position: absolute;
  left: -170px;
  top: 180%;
  border-radius: 40px;
  transform: translateY(-50%) rotate(90deg);
}
.description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--cor-texto-suave);
  text-align: left;
}

/* --- RESPONSIVIDADE PROJETO --- */
@media (max-width: 1024px) {
  .project-section .container {
    flex-direction: column-reverse;
    gap: 60px;
  }
  .image-wrapper,
  .content-wrapper {
    width: 100%;
  }

  /* Resetando para empilhar imagens */
  .image-wrapper {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .image-wrapper img {
    position: relative;
    width: 100%;
    left: 0;
  }
  .img-back {
    height: 250px;
    margin-bottom: 20px;
  }
  .img-front {
    height: 250px;
    bottom: auto;
    right: auto;
  }

  .title {
    font-family: Poppins Bold;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    text-align: left;
    margin-left: 30px;
  }

  .title::before {
    content: "";
    background: var(--gradient-verde);
    width: 50px;
    height: 8px;
    position: absolute;
    left: -50px;
    top: 50%;
    border-radius: 40px;
    transform: translateY(-50%) rotate(90deg);
  }

  .description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--cor-texto-suave);
    text-align: left;
  }
}

/* =========================================
   6. TOTEM SECTION
   ========================================= */
.totem-section {
  background-color: #161616;
  padding: 100px 5%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.totem-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.totem-info {
  flex: 1;
}
.totem-title {
  font-family: Poppins Bold;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.totem-subtitle {
  font-family: Poppins Regular;
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 450px;
  line-height: 1.6;
}
.specs-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.spec-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.spec-icon {
  min-width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 55, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gradient-verde);
  transition: transform 0.3s ease;
}
.spec-item:hover .spec-icon {
  transform: scale(1.1);
  background: rgba(0, 255, 115, 0.1);
  cursor: pointer;
}
.spec-text h3 {
  font-family: Poppins Bold;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.spec-text p {
  font-family: Poppins Regular;
  font-size: 0.95rem;
  color: #888;
  line-height: 1.5;
}

.totem-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 500px;
  z-index: 0;
  filter: blur(50px);
  background: radial-gradient(
    circle,
    rgba(0, 255, 106, 0.781) 0%,
    rgba(0, 0, 0, 0) 70%
  );
}
.totem-img {
  position: relative;
  z-index: 1;
  max-height: 600px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

/* --- RESPONSIVIDADE TOTEM --- */
@media (max-width: 960px) {
  .totem-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .totem-visual {
    display: none; /* Ou ajuste para mostrar menor */
  }
  .totem-title {
    margin-top: -10px;
    text-align: left;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 30px;
  }
  .spec-item {
    align-items: center;
    text-align: left;
  }
  .totem-subtitle {
    margin: 0 auto 40px 0;
    text-align: left;
    font-size: 1.1rem;
  }
  .totem-img {
    max-height: 400px;
  }
}

/* =========================================
   7. EVENTOS
   ========================================= */
.events-section {
  position: relative;
  min-height: 800px;
  height: auto;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url("imgProjeto/Image.jpg");
  background-size: cover;
  background-attachment: scroll;
  background-position: center;
}
.events-section .container {
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}
.events-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-title {
  font-family: Poppins Bold;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 30px;
  text-align: center;
}

.section-title::before {
  content: "";
  background: var(--gradient-verde);
  position: absolute;
  width: 60px;
  height: 8px;
  transform: rotate(90deg);
  border-radius: 40px;
  margin-left: -60px;
  margin-top: 40px;
}

.event-item {
  background-color: #2a2a2a;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}
.event-item:hover {
  background-color: #333;
  transform: translateX(10px);
}
.event-item.active {
  background-color: #252525;
  border-color: var(--cor-verde);
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.date-badge {
  background: var(--gradient-verde);
  color: #fff;
  border-radius: 50px;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}
.date-badge .day {
  font-size: 1.4rem;
  font-weight: 700;
}
.date-badge .month {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-info-preview {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
}
.click-text {
  font-size: 0.9rem;
  color: #ccc;
  text-align: left;
}
.time-preview {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
}

.details-panel-wrapper {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 80px;
}
.details-card {
  margin-top: 45px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid #333;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.details-content {
  width: 100%;
  transition: opacity 0.3s, transform 0.3s;
  padding: 20px 20px 20px 30px;
  text-align: left;
  position: relative;
}
.details-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 75%;
  background: var(--gradient-verde);
  border-radius: 4px;
}
.details-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.details-content.changing {
  opacity: 0;
  transform: translateY(10px);
}
.event-title {
  font-family: Poppins Bold;
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: left;
  background: var(--gradient-verde); /* Chama a mesma variável */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

strong {
  background: var(--gradient-verde); /* Chama a mesma variável */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.mobile-details {
  display: none; /* Começa escondido */
  width: 100%; /* Ocupa a linha inteira */
  flex-basis: 100%; /* Força a quebra de linha no flexbox */
  background: rgba(0, 0, 0, 0.2);
  margin-top: 15px;
  border-radius: 40px;
  padding: 30px;
  text-align: left;
  font-size: 0.8rem;
  color: #ddd;
  animation: slideDown 0.3s ease-out;
}

.mobile-details h3 {
  color: #00d26a;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.mobile-details p {
  margin-bottom: 5px;
  line-height: 1.4;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVIDADE EVENTOS --- */
@media (max-width: 1280px) {
  .events-section .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }
  .events-list,
  .details-panel-wrapper {
    width: 100%;
    max-width: 100%;
  }
  .section-title {
    width: 100%;
    text-align: left;
    margin-left: 30px;
  }
  .section-title::before {
    content: "";
    background: var(--gradient-verde);
    width: 50px;
    height: 9px;
    position: absolute;
    left: 65px;
    margin-top: 30px;
    border-radius: 40px;
    transform: translateY(-50%) rotate(90deg);
  }
  .details-panel-wrapper {
    padding-top: 0;
    align-items: flex-start;
  }
  .details-card {
    text-align: left;
    justify-content: flex-start;
    padding: 30px;
  }
  .details-content {
    border-left: 4px solid var(--cor-verde);
    border-top: none;
    padding-left: 20px;
    padding-top: 0;
    align-items: flex-start;
  }
  /* Remove o pseudo-elemento pois estamos usando border */
  .details-content::before {
    display: none;
  }
  .btn-agendar {
    align-self: flex-start;
    width: auto;
    max-width: 300px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .events-section {
    padding: 60px 20px;
  }
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .event-item {
    flex-wrap: wrap;
  }
  .details-panel-wrapper {
    display: none !important;
  }
  .events-list {
    width: 100%;
    max-width: 100%;
  }
  .events-section .container {
    flex-direction: column;
    align-items: stretch; /* Garante alinhamento */
  }
}

/* =========================================
   8. PAVILHÃO
   ========================================= */
.hero-section {
  margin-top: 0;
  width: 100%;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--gutter);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
    url("imgProjeto/Image1.jpg");
  background-size: cover;
  background-position: center;
}
.content-wrapper-pav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  gap: 4rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 100%;
  max-width: 600px;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  text-align: left;
}
.glass-card h1 {
  font-family: Poppins Bold;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.features-container {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.icon-circle {
  width: 50px;
  height: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.gallery-right.gallery-overlap {
  flex: 1;
  position: relative;
  height: 500px;
  pointer-events: none;
}
.gallery-image {
  position: absolute;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
  pointer-events: auto;
  cursor: pointer;
}
.gallery-image.back {
  width: 70%;
  height: 320px;
  top: 0;
  left: 10%;
  z-index: 1;
  opacity: 0.9;
}
.gallery-image.front {
  width: 70%;
  height: 320px;
  bottom: 0;
  right: 10%;
  z-index: 2;
}
.gallery-image:hover {
  transform: scale(1.08) translateY(-10px);
  z-index: 99;
  opacity: 1 !important;
}

/* --- RESPONSIVIDADE PAVILHÃO --- */
@media (max-width: 1024px) {
  .content-wrapper-pav {
    flex-direction: column;
    text-align: left;
    gap: 50px;
  }
  .glass-card {
    margin: 0;
    padding: 2rem;
    width: 100%;
    margin-left: -250px;
  }
  .features-container {
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  /* Ajuste Galeria Mobile (Empilhada) */
  .gallery-right.gallery-overlap {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    pointer-events: auto;
  }
  .gallery-image,
  .gallery-image.back,
  .gallery-image.front {
    position: relative;
    width: 100%;
    height: 300px;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    opacity: 1;
    transform: none !important;
  }
  .gallery-image:active {
    transform: scale(0.98) !important;
  }
}

@media (max-width: 768px) {
  .glass-card {
    margin-left: 4px;
  }
  .gallery-image.back,
  .gallery-image.front {
    height: 200px;
    margin-bottom: 20px;
  }
}

/* =========================================
   9. CTA & FOOTER
   ========================================= */
.cta-section {
  position: relative;
  min-height: 400px;
  height: auto;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #111111;
  background-size: cover;
  background-attachment: scroll;
  background-position: center;
}
.cta-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.cta-content h2 {
  font-family: Poppins Bold;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.cta-content p {
  margin: 0;
  font-size: 1.2rem;
  color: #ddd;
}
.cta-button {
  padding: 15px 40px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  transition: 0.3s;
  white-space: nowrap;
}
.cta-button:hover {
  transform: scale(1.05);
  background: var(--gradient-verde);
}

.site-footer {
  background-color: #0f0f0f;
  color: #fff;
  padding-top: 80px;
  border-top: 1px solid #222;
}

.footer-container {
  max-width: var(--max-width); /* Ou 1200px se não tiver a var */
  margin: 0 auto;
  padding: 0 var(--gutter) 60px; /* Ou 0 5% 60px */
  display: grid;
  grid-template-columns: 2fr 1fr 1fr; /* 1ª coluna maior, outras iguais */
  gap: 40px;
  text-align: left;
}

/* --- Coluna da Descrição (Esquerda) --- */
.footer-logo {
  font-family: Poppins Bold, sans-serif; /* Garante a fonte certa */
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
  background: linear-gradient(90deg, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-col-pav p {
  width: 100%;
  max-width: 400px;
  text-align: left;
  margin-top: 20px;
  color: #aaa; /* Texto cinza para contraste */
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- Colunas de Links (Menu e Social) --- */
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col ul li {
  margin-bottom: 12px; /* Espaço entre itens */
}

.footer-col ul li a {
  color: #888;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block; /* Necessário para o padding-left funcionar */
}

.footer-col ul li a:hover {
  color: #fff; /* Ou var(--cor-verde) */
  padding-left: 8px; /* Efeito de deslizar para direita */
}

/* --- Barra Inferior --- */
.footer-bottom {
  background-color: #0a0a0a; /* Um pouco mais escuro que o footer */
  text-align: center;
  padding: 25px;
  border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
  color: #444;
  font-size: 0.85rem;
  margin: 0;
}

/* --- RESPONSIVIDADE FOOTER --- */
@media (max-width: 1024px) {
  .cta-content {
    width: 100%;
    display: flex;
    gap: 30px;
  }
  .cta-content h2 {
    font-family: Poppins Bold;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 10px;
    position: relative;
    text-align: left;
    margin-left: 20px;
  }

  .cta-content p {
    font-size: 1.1rem;
    align-self: flex-start;
    margin-left: 20px;
  }
  .cta-content p::before {
    content: "";
    background: var(--gradient-verde);
    width: 250px;
    height: 8px;
    position: absolute;
    left: -100px;
    top: 100%;
    border-radius: 40px;
  }

  .cta-button {
    padding: 15px 40px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    transition: 0.3s;
    align-self: flex-start;
    margin-left: 20px;
    margin-top: 20px;
  }
  .cta-button:hover {
    transform: scale(1.05);
    background: var(--gradient-verde);
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-logo {
    margin-bottom: 20px;
  }
  .footer-col {
    display: none;
  }
}
