/* CONFIGURAÇÕES GERAIS E SCROLL */
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #2b1e12;
  color: #f5f5f5;
  line-height: 1.6;
}

/* TOPO FIXO */
.header-topo {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(#1a1108, #000);
  z-index: 1100;
  padding: 0 20px;
}

.topo-img {
  width: 60px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

.topo-img.esquerda {
  background-image: url("../images/copo.png");
}

.topo-img.direita {
  background-image: url("../images/microfone.png");
}

.topo-texto {
  flex: 1;
  text-align: center;
}

.topo-texto h1 {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  color: #ffb347;
  white-space: nowrap;
}

/* MENU FIXO */
.menu {
  position: fixed;
  top: 80px;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(#4a321a, #2f1f10);
  border-bottom: 3px solid #ff9900;
}

.menu ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  max-width: 1300px;
  margin: 0 auto;
}

.menu li {
  flex: 1;
  min-width: fit-content;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.menu a {
  padding: 12px 15px;
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.3s;
}

.menu a:hover {
  background: rgba(255,153,0,0.2);
  color: #ffcc66;
}

/* CONTEÚDO */
.conteudo {
  margin-top: 180px;
}

/* SEÇÃO HOME */
.container-home {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 20px;
  text-align: center;
}

.home-header {
  margin-bottom: 30px;
}

.hero-titulo {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #ff9900;
  margin-bottom: 10px;
}

.hero-frase {
  font-family: "Brush Script MT", cursive;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #ffb347;
  line-height: 1.2;
}

.home-banner-img {
  width: 100%;
  height: 450px;
  background-image: url("../images/main.png");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,153,0,0.2);
}

/* SEÇÃO ESPAÇOS */
.secao-espacos {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.titulo-secao {
  text-align: center;
  font-size: 2.2rem;
  color: #ff9900;
  margin-bottom: 40px;
}

.espacos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card-espaco {
  background: rgba(0,0,0,0.4);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.card-espaco:hover {
  transform: translateY(-10px);
}

.card-espaco img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-espaco h3 {
  margin-top: 15px;
  color: #ffcc66;
}

.card-espaco p {
  margin-bottom: 20px;
  color: #ccc;
}

/* RODAPÉ ATUALIZADO */
.footer {
  background: #110a05;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-top: 2px solid #ff9900;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  text-align: center;
}

.footer-titulo {
  color: #ff9900;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-family: "Brush Script MT", cursive;
}

.footer-info p, .footer-horarios p {
  color: #ccc;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-info strong, .footer-horarios strong {
  color: #ffb347;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.footer-obs {
  font-size: 0.8rem !important;
  color: #777 !important;
  margin-top: 10px;
}

.footer-copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  font-size: 0.8rem;
  color: #555;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .topo-img {
    width: 45px;
    height: 35px;
  }
  .home-banner-img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .conteudo {
    margin-top: 220px;
  }
  .hero-frase {
    font-size: 1.8rem;
  }
  .footer-container {
    gap: 30px;
  }
}