/* ============================================================
   1. RESET E CONFIGURAÇÕES GERAIS
   (Margens, fontes do corpo, cores globais)
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: url("../Imagens/Fundo.png") no-repeat top center fixed;
  background-size: cover;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  z-index: 99;
}

/* ============================================================
   2. CABEÇALHO (HEADER) E NAVEGAÇÃO
   (Logo, menus, links da navbar)
   ============================================================ */

.hero {
  height: 100vh;
  margin-top: 0 !important; 
  margin-left: 120px;
  background: url("../Imagens/1.2.JPG") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 80%,
    transparent 100%
  );
  mask-image: linear-gradient(to bottom, black 98%, transparent 100%);
}

.hero-nav-container {
  position: absolute;
  bottom: 50px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 20;
  left: auto;
  transform: none;
}

.hero-nav-container::after {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 100%;
  height: 20px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 136, 0, 0.2) 0%,
    transparent 70%
  );
  z-index: -1;
}

.nav-group {
  display: flex;
  gap: 15px;
  margin-left: 30px;
}

.nav-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 15px;
  pointer-events: none;
}

.nav-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-tooltip {
  position: absolute;
  bottom: 85px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  border: 1px solid rgba(255, 136, 0, 0.5);
}

.nav-item:hover .nav-tooltip {
  opacity: 1;
  transform: translateY(-10px);
}

.glass-btn {
  width: 70px;
  height: 70px;
  display: flex !important;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 99;
  backface-visibility: hidden;
  perspective: 1000px;
  -webkit-font-smoothing: antialiased;
  transform: translateZ(0);
}

.glass-btn:hover {
  background: rgba(255, 136, 0, 0.3) !important;
  border-color: #ff8800;
  color: #ff8800;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.btn-label {
  font-size: 10px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

.glass-btn i {
  font-size: 1.2rem;
}

.status-card {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 136, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #00ff00;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff00;
}

.status-card p {
  color: #fff;
  font-size: 0.8rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-tagline {
  max-width: 450px;
  position: absolute;
  top: 45%;
  left: 140px;
  z-index: 20;
  border-left: 4px solid #ff8800;
  padding-left: 20px;
}

.hero-tagline p {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #ff8800;
  margin: 0;
  font-weight: 700;
}

.hero-tagline span {
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.2 !important;
  font-weight: 500;
  margin-top: 5px;
  display: block;
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.visualizer-container {
  position: absolute;
  left: 140px;
  bottom: 120px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
  z-index: 0;
}

.bar {
  width: 6px;
  height: 8px;
  background: #ff8800;
  border-radius: 3px;
  transition: height 0.15s ease;
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}

@keyframes bounce {
  from {
    height: 5px;
  }
  to {
    height: 40px;
  }
}

#titulo {
  position: absolute;
  left: 140px;
  top: 0px;
  z-index: 10;
  width: clamp(280px, 30vw, 500px);
  height: auto;
  margin-top: 0;
  animation: aparecertitulo 2s ease-in-out forwards;
}

#titulo img {
  width: 100%;
  height: auto;
}

@keyframes aparecertitulo {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    filter: drop-shadow(0 0 0px orange);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 15px orange);
  }
}

.hero h1 {
  font-family: "Urbanist", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  color: #f4d35e;
}

.hero p {
  font-family: "Urbanist", sans-serif;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-text {
  position: relative;
  max-width: 600px;
  padding: 2rem;
  text-align: left;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero .overlay {
  position: relative;
  max-width: 600px;
  padding: 2rem;
  text-align: left;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0px;
  width: 120px;
  height: 100vh;
  background: #111;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  animation: pulseGlow 1s infinite alternate;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
  transition: all 0.5s ease;
  z-index: 1000 !important;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sidebar li {
  margin: 0px 0;
}

.sidebar a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: #ff8800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 5px;
  transition: all 0.3s ease;
  text-align: center;
}

.sidebar a:hover {
  background: rgba(255, 136, 0, 0.1);
  color: #ffaa33;
}

.sidebar a:hover .icon,
.sidebar a:hover .text {
  transform: scale(1.1);
}

.icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 10px;
}

.visualizer-container {
  position: absolute;
  left: 140px;
  bottom: 120px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
  z-index: 15;
}

.bar {
  width: 6px;
  height: 8px;
  background: #ff8800;
  border-radius: 3px;
  transition: height 0.15s ease;
}

/* ============================================================
   3. CONTEÚDO PRINCIPAL (MAIN / SECTIONS)
   (Banners, seções de texto, imagens do meio)
   ============================================================ */

.message-balloon {
  position: fixed;
  left: 130px;
  bottom: 37px;
  background: #ff8800;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
  z-index: 11;
}

.message-balloon.hidden {
  opacity: 0;
  pointer-events: none;
}

.info,
.agenda,
.galeria {
  min-height: 100vh;
  margin-left: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  box-sizing: border-box;
  background: transparent;
}

.message-balloon {
  position: fixed;
  left: 130px;
  bottom: 37px;
  background: #ff8800;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 11;
}

.status-card {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 136, 0, 0.3);
}

.info-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  width: 100%;
}

.info-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.info-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
  box-shadow: 20px 20px 0px #ff8800;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.info-image img:hover {
  transform: scale(1.02);
}

.info-glass-card {
  flex: 1.2;
  text-align: left;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-glass-card h2 {
  font-size: 3rem;
  color: #ff8800;
  margin-bottom: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.info-glass-card h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #fff;
  margin-top: 10px;
}

.info-glass-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff;
  margin-top: 25px;
  margin-bottom: 30px;
  font-weight: 400;
  text-align: justify;
}

.especialidades {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.especialidades span {
  background: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #ff8800;
  border: 2px solid #ff8800;
  box-shadow: 4px 4px 0px rgba(255, 136, 0, 0.2);
  transition: 0.3s;
  cursor: default;
}

.especialidades span:hover {
  background: #ff8800;
  color: #fff;
  transform: translateY(-3px);
}

.agenda-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(to right, #ff8800, #fff, #ff8800);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.agenda-title::after {
  content: "";
  display: block;
  width: 50%;
  height: 5px;
  background: #ff8800;
  margin: 10px auto 0;
  border-radius: 10px;
}

.agenda-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.agenda-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.agenda-item {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  color: white;
  width: 100%;
}

.agenda-item:hover,
.agenda-item.active {
  background: rgba(255, 136, 0, 0.2);
  border-color: #ff8800;
  transform: translateX(10px);
}

.agenda-item .date {
  color: #ff8800;
  font-weight: bold;
  font-size: 1.2rem;
}

.agenda-footer {
  border: 1px dashed #ff8800;
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}

.agenda-map {
  flex: 1;
  height: 450px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 136, 0, 0.3);
  overflow: hidden;
}

#map-frame {
  width: 100%;
  height: 100%;
  border: none;
}

.agenda-cta-btn {
  display: block;
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 136, 0, 0.3);
  border-radius: 15px;
  color: #ff8800;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.agenda-cta-btn:hover {
  background: rgba(255, 136, 0, 0.2);
  border-color: #ff8800;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.4);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.galeria h2,
.carrossel-container h3 {
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(to right, #ff8800, #fff, #ff8800);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
  letter-spacing: 2px;
}

.galeria h2 {
  font-size: 3.5rem;
  margin-bottom: 30px;
}
.carrossel-container h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.galeria-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.carrossel-container {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 136, 0, 0.3);
  animation: none !important;
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.5) !important;
  position: relative;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}


.carrossel-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
}

.carrossel-item {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0;
}

.carrossel-item iframe,
.carrossel-item img {
  width: 90%;
  max-width: 500px;
  height: 350px;
  border-radius: 15px;
  object-fit: cover;
}

.prev,
.next {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #ff8800;
  color: #ff8800;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background: #ff8800;
  color: #fff;
  box-shadow: 0 0 20px #ff8800;
}
/* ============================================================
   4. COMPONENTES ESPECÍFICOS
   (Botões, formulários, cartões)
   ============================================================ */

.hamburger {
  display: none !important;
  position: fixed !important;
  top: 15px !important;
  right: 15px !important;
  width: 45px !important;
  height: 45px !important;
  z-index: 99999 !important;
  background: rgba(255, 136, 0, 0.9) !important;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.glass-btn {
  width: 70px;
  height: 70px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-btn:hover {
  background: rgba(255, 136, 0, 0.2) !important;
  transform: translateY(-5px);
  color: #ff8800;
}

.ball {
  width: 65px;
  height: 65px;
  background-color: #ff8800;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.4);
  cursor: pointer;
  transform-origin: center center;
}

.ball i {
  color: white;
  font-size: 1.8rem;
}

.ball.playing {
  animation: spin 3s linear infinite !important;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.controls {
  display: flex;
  gap: 3px;
  justify-content: center;
}

.controls button {
  width: 35px;
  height: 35px;
  background-color: #ff8800;
  border: none;
  border-radius: 8px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
  padding: 0;
}

.controls button:hover {
  transform: scale(1.05);
  background-color: #ff9922;
}

.controls button i {
  font-size: 1rem;
}

.progress {
  width: 85%;
  height: 4px;
  background: rgb(204, 163, 86);
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: #ff8800;
  width: 0%;
}

.back-to-top {
  position: fixed;
  right: 33px;
  bottom: 24px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 136, 0, 0.6);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ff8800;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  visibility: hidden;
}

.back-to-top i {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.back-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.2);
}

.back-to-top:hover {
  background: rgba(255, 136, 0, 0.3);
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(255, 136, 0, 0.6);
  color: #ffffff;
}

/* ============================================================
   5. RODAPÉ (FOOTER)
   (Contatos, links inferiores, redes sociais)
   ============================================================ */

.footer {
  margin-left: 120px;
  background-color: #111;
  color: #f4d35e;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer a {
  color: #ff8800;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffaa33;
  text-decoration: underline;
}

.footer a:not(:last-child)::after {
  content: "|";
  margin-left: 15px;
  color: #444;
  text-decoration: none;
  display: inline-block;
}

/* ============================================================
   6. MEDIA QUERIES (RESPONSIVIDADE AJUSTADA)
   ============================================================ */

@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden !important;
    position: relative;
    width: 100% !important;
  }

  section {
    margin-left: 0 !important;
    width: 100vw !important;
    padding: 0 !important;
  }

  .hero {
    background-position: 50% center !important;
    position: relative;
    width: 100vw !important;
    margin: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }

  #titulo {
    position: absolute !important;
    top: 25px !important;
    left: 15px !important;
    width: 200px !important;
    max-width: none !important;
    min-width: 200px !important;
    height: auto !important;
    margin: 0 !important;
    z-index: 100 !important;
    transform: none !important;
  }

  #titulo img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    filter: drop-shadow(0 0 5px #ff8800)
      drop-shadow(0 0 15px rgba(255, 136, 0, 0.432)) !important;
  }

  .status-card {
    position: absolute !important;
    top: 15px !important;
    right: 70px !important;
    padding: 4px 10px !important;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(8px);
    border-radius: 20px !important;
  }
  .status-card p {
    font-size: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    color: #fff !important;
  }
  .status-card .status-dot {
    width: 6px !important;
    height: 6px !important;
    min-width: 6px !important;
  }

  .hero-tagline {
    position: absolute !important;
    top: 32% !important;
    left: 15px !important;
    max-width: 240px !important;
    z-index: 10;
  }

  .hero-tagline p {
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
  }

  .hero-tagline span {
    font-size: 0.9rem !important;
  }

  .hero-nav-container {
    position: absolute !important;
    top: 50% !important;
    right: 10px !important;
    transform: translateY(-40%) !important;
    flex-direction: column !important;
    gap: 6px !important;
    z-index: 100;
  }

  .nav-group {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .glass-btn {
    width: 45px !important;
    height: 45px !important;
    border-radius: 8px !important;
  }

  .glass-btn i {
    font-size: 0, 9rem !important;
  }

  .visualizer-container {
    left: 7px !important;
    bottom: 100px !important;
    transform: none !important;
    width: 70% !important;
  }
  .bar {
    width: 8px !important;
    background: #ff8800 !important;
    border-radius: 100px !important;
    transition:
      height 0,
      1s ease;
  }

  nav ul {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important; 
  }

  nav ul li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }


  nav ul li a {
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 15px 0 !important; 
    margin: 0 !important;
    text-decoration: none !important;
    border-radius: 0 !important; 
  }


  nav ul li a.active, 
  nav ul li a:hover {
    background-color: rgba(255, 136, 0, 0.2) !important;
    border-left: 4px solid #ff8800 !important; 
  }

  .sidebar {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: -120px !important;
    width: 120px !important;
    height: 100vh !important;
    z-index: 2000 !important;
    transition: left 0.4s ease-in-out !important;
    visibility: visible !important;
  }
  .sidebar.active {
    left: 0 !important;
  }
  .sidebar ul {
    flex: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .nav-player {
    margin-top: 200px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  #musicMessage {
    display: none !important;
  }

  .info-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
    padding: 20px !important;
  }

  .info-image {
    width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .info-image img {
    width: 90% !important;
    max-width: 350px !important;
    height: auto !important;
    border-radius: 20px !important;
    border: 2px solid #ff8800;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
  }

  .info-glass-card {
    width: 100% !important;
    padding: 25px !important;
    margin: 0 !important;
  }

  .info-glass-card h2 {
    font-size: 1.8rem !important;
    text-align: center;
    color: #ff8800;
  }

  .info-glass-card p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    text-align: justify;
    margin-bottom: 20px !important;
  }
  .especialidades {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    justify-items: start;
  }

  .especialidades span {
    font-size: 0.55rem !important;
    white-space: nowrap;
  }

  .agenda-title,
  .galeria .agenda-title {
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
    letter-spacing: 1px !important;
    text-align: center !important;
  }

  .agenda-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    padding: 0 15px !important;
  }

  .agenda-list {
    width: 100% !important;
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
  }

  .agenda-item {
    width: 100% !important;
    padding: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: 0.3s;
  }

  .agenda-item.active {
    border-color: #ff8800 !important;
    background: rgba(255, 136, 0, 0.1) !important;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.2);
  }

  .agenda-item .date {
    font-weight: bold !important;
    color: #ff8800 !important;
    font-size: 1.1rem !important;
    margin-bottom: 5px !important;
  }

  .agenda-item .location {
    font-size: 0.9rem !important;
    color: #ddd !important;
  }
  .agenda-map {
    width: 100% !important;
    height: 250px !important;
    order: 2 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 136, 0, 0.5) !important;
    animation: neon-pulse-map 2s infinite alternate ease-in-out !important;
  }

  #map-frame {
    width: 100% !important;
    height: 100% !important;
  }

  .agenda-cta-btn {
    width: 100% !important;
    margin-top: 15px !important;
    padding: 18px !important;
    display: block !important;
    text-align: center !important;
    text-decoration: none !important;
    background: rgba(255, 136, 0, 0.15) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 136, 0, 0.4) !important;
    border-radius: 12px !important;
    color: #ff8800 !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow:
      inset 0 0 10px rgba(255, 255, 255, 0.05),
      0 5px 15px rgba(0, 0, 0, 0.3) !important;

    transition: all 0.3s ease !important;
  }
  .agenda-cta-btn:active {
    transform: scale(0.98) !important;
    background: rgba(255, 136, 0, 0.25) !important;
  }
  .agenda-item.active,
  .agenda-cta-btn {
    animation: neon-pulse-button 1s infinite alternate ease-in-out !important;
  }

  .galeria-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    padding: 0 10px !important;
  }

  .carrossel-item {
    min-width: 100% !important;
    padding: 0 5px;
    box-sizing: border-box;
  }

  .carrossel-item iframe {
    width: 100% !important;
    height: 200px !important;
    border-radius: 15px;
    border: 1px solid rgba(255, 136, 0, 0.3);
  }

  .carrossel-item img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    border-radius: 15px;
  }

  .carrossel-container button.prev,
  .carrossel-container button.next {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 136, 0, 0.5) !important;
    color: #ff8800 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    top: 55% !important;
  }

  .carrossel-container h3 {
    font-size: 1.2rem !important;
    margin-bottom: 15px !important;
    color: #ff8800;
    text-align: center;
    letter-spacing: 2px;
  }

  .footer {
    display: block !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    padding: 10px 0 10px 0 !important;
    background: #000 !important;
    border: none !important;
    text-align: center !important;
  }

  .footer p {
    display: block !important;
    width: 100% !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    color: #ff8800 !important;
    font-size: 0.75rem !important;
    background: transparent !important;
    border: none !important;
  }

  .footer-links {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    background: transparent !important;
    border: none !important;
    width: auto !important;
  }

  .footer-links a {
    display: inline !important;
    color: #ff4400 !important;
    font-size: 0.7rem !important;
    text-decoration: none !important;
    padding: 0 5px !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    white-space: nowrap !important;
  }

  .footer-links a:not(:last-child)::after {
    content: "|" !important;
    margin-left: 10px !important;
    color: #333 !important;
  }
  @media (max-width: 1024px) {
    .video-desktop-only {
      display: none !important;
    }
  }
}

@media (max-width: 400px) {
  #titulo {
    width: 110px !important;
  }
  .glass-btn {
    width: 42px !important;
    height: 42px !important;
  }
  .hero-tagline {
    top: 25% !important;
    max-width: 220px !important;
  }
  .hamburger {
    display: flex !important;
    position: fixed !important;
    top: 15px !important;
    right: 15px !important;
    width: 45px !important;
    height: 45px !important;
    z-index: 99999 !important;
    background: rgba(255, 136, 0, 0.9) !important;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
}

/* ============================================================
   7 ANIMAÇÕES
   ============================================================ */

@keyframes pulsar-status {
  0% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(4, 255, 12, 0.7);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
    box-shadow: 0 0 8px 2px rgba(0, 255, 8, 0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 8, 0);
  }
}

@keyframes pulseGlow {
  from {
    box-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
  }
  to {
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.7);
  }
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}
.status-dot {
  animation: pulsar-status 1s infinite ease-in-out !important;
}
