body {
  margin: 0;
  font-family: Arial;
  background: #000;
  color: white;
  padding-top: 80px;
  overflow-x: hidden; /* 🔥 evita sumir botão */
}

/* FUNDO ESCURO */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 999;
}

/* CAIXA */
.popup-content {
  background: #111;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  color: #fff;
  position: relative;
}

/* BOTÃO FECHAR */
.fechar {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 18px;
}

/* BOTÃO PRINCIPAL */
.btn-popup {
  display: block;
  margin: 20px 0;
  background: gold;
  color: #000;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* TEXTO RECUSA */
.recusar {
  font-size: 12px;
  color: #aaa;
  cursor: pointer;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  padding: 15px 40px; /* mais equilibrado */
  box-sizing: border-box;

  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 9999;
  transition: 0.3s;
}

/* QUANDO SCROLLAR */
header.scrolled {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
}

/* LINK DO LOGO (IMPORTANTE PRA NÃO QUEBRAR) */
header a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
}

/* LOGO */
.logo {
  height: 45px;
  object-fit: contain;
  margin-top: 2px;
}

/* AÇÕES (lado direito) */
.actions {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  z-index: 10000;
}

/* BOTÃO INSTA */
.insta-link {
  background: linear-gradient(45deg, #dd2a7b, #515bd4);
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;

  display: flex;
  align-items: center;
  gap: 8px;

  transition: 0.3s;
  height: 20px;
}

/* HOVER */
.insta-link:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(221,42,123,0.5);
}

/* BOTÃO VIP */
.btn {
  background: linear-gradient(135deg, gold, goldenrod);
  color: black;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s;
  height: 20px;
}

/* HOVER */
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,215,0,0.4);
}


/* HERO */
.hero {
  position: relative;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  overflow: hidden;

  margin-top: 80px; /* espaço do header */
}

/* LOGO COMO FUNDO (AGORA CERTO) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: url('images/logo.png') center no-repeat;
  background-size: contain; /* NÃO DISTORCE */

  background-position: 50% 30%;

  filter: blur(8px) brightness(0.4); /* DESFOQUE + ESCURO */
  transform: scale(1.2); /* evita bordas cortadas */

  z-index: 1;
}

/* TEXTO NA FRENTE */
.hero-texto {
  position: relative;
  z-index: 2;
  margin-top: -60px; /* sobe um pouco o texto */
}

.hero-texto h2 {
  font-size: 42px;
  color: #fff;
  font-weight: bold;
}

.hero-texto p {
  color: #ccc;
  margin-top: 10px;
}
/* ===== CARROSSEL FESTAS ===== */

.destaque-carrossel .card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* OVERLAY PREMIUM */
.destaque-carrossel .acoes-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 80%); /* começa escondido embaixo */

  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 12px;

  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3;
}

/* FUNDO COM BLUR */
.destaque-carrossel .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);

  opacity: 0;
  transition: 0.4s;
  z-index: 2;
}

/* ATIVO */
.destaque-carrossel .card.ativo::after {
  opacity: 1;
}

.destaque-carrossel .card.ativo .acoes-card {
  opacity: 1;
  transform: translate(-50%, -50%); /* sobe pro centro */
}

/* BOTÕES */
.btn-card {
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;

  transition: 0.2s;
}

/* GRADIENTE PREMIUM */
.ingresso {
  background: linear-gradient(90deg, #00ff88, #00ccff);
  color: #000;
}

/* WHATSAPP */
.pix {
  background: #25D366;
  color: #fff;
}

/* HOVER */
.btn-card:hover {
  transform: scale(1.05);
}

/* OVERLAY PREMIUM */
.destaque-carrossel .acoes-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 80%); /* começa escondido embaixo */

  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 12px;

  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3;
}

/* FUNDO COM BLUR */
.destaque-carrossel .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);

  opacity: 0;
  transition: 0.4s;
  z-index: 2;
}

/* ATIVO */
.destaque-carrossel .card.ativo::after {
  opacity: 1;
}

.destaque-carrossel .card.ativo .acoes-card {
  opacity: 1;
  transform: translate(-50%, -50%); /* sobe pro centro */
}

/* BOTÕES */
.btn-card {
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;

  transition: 0.2s;
}

/* GRADIENTE PREMIUM */
.destaque-carrossel .ingresso {
  background: linear-gradient(90deg, goldenrod, gold);
  color: #000;
}

/* WHATSAPP */
.destaque-carrossel .pix {
  background: #00ccff;
  color: #000;
}
.destaque-carrossel .btn-card {
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
}
/* HOVER */
.destaque-carrossel .pix {
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* ===== CARROSSEL CORPUS CHRIST ===== */

.carrossel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

.carrossel-container {
  position: relative; 
}

.carrossel::-webkit-scrollbar {
  display: none;
}

/* ===== CARD ===== */
.card {
  min-width: 240px;   
  max-width: 240px;
  flex: 0 0 auto;     

  background: #111;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

/* ===== IMAGEM ===== */
.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.destaque-carrossel .card {
  min-width: 300px;
  max-width: 300px;
}

.destaque-carrossel .card img {
  height: 380px;
}

.destaque-carrossel h2 {
  font-size: 28px;
}

.destaque-carrossel {
  margin-bottom: 40px;
}

/* ===== INFO ===== */
.info {
  padding: 12px;
  background: #111;
}

/* ===== TEXTOS ===== */
.data {
  font-size: 12px;
  color: #aaa;
}

.info h3 {
  margin: 5px 0;
  font-size: 16px;
  color: #fff;
}

.local {
  font-size: 13px;
  color: #ccc;
}

/* ===== BOTÃO ===== */
.btn-card {
  display: block;
  margin-top: 10px;
  background: gold;
  color: black;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-card:hover {
  background: #ffd700;
}

/* ===== HOVER CARD ===== */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

/* BOTÕES */
.seta {
  position: absolute;
  top: 50%;                 
  transform: translateY(-50%); 
  z-index: 10;
  background: rgba(0,0,0,0.7);
  border: none;
  color: white;
  font-size: 25px;
  cursor: pointer;
  width: 45px;
  height: 45px;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.esquerda {
  left: 10px;
}

.direita {
  right: 10px;
}

.seta:hover {
  background: gold;
  color: black;
}

/* MENU LATERAL */
.menu {
  position: fixed;
  right: -300px;
  top: 0;
  width: 250px;
  height: 100%;
  background: #111;
  padding: 20px;
  transition: 0.3s;
}

.menu a {
  display: block;
  margin: 15px 0;
  color: white;
  text-decoration: none;
}

.menu.active {
  right: 0;
}

.menu-btn {
  background: none;
  color: white;
  font-size: 20px;
  border: none;
}

/* ===== CONTAINER ===== */
.parceiros {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .parceiros {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .parceiros {
    grid-template-columns: 1fr;
  }
}

/* ===== CARD ===== */
.card-parceiro {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  transition: transform 0.35s ease, box-shadow 0.35s ease;

  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: aparecer 0.6s ease forwards;
}

/* delay em cascata */
.card-parceiro:nth-child(2) { animation-delay: 0.1s; }
.card-parceiro:nth-child(3) { animation-delay: 0.2s; }
.card-parceiro:nth-child(4) { animation-delay: 0.3s; }

/* ===== IMAGEM ===== */
.card-parceiro img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* hover leve */
.card-parceiro:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.4),
    0 0 15px gold;
}

.card-parceiro:hover img {
  transform: scale(1.05);
}

/* ativo (clicado) */
.card-parceiro.ativo {
  transform: scale(1.03);
}

.card-parceiro.ativo img {
  transform: scale(1.08);
}

/* ===== BORDA PREMIUM ===== */
.card-parceiro::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;

  border: 1px solid rgba(255,255,255,0.15);

  opacity: 0;
  transition: 0.4s;
}

.card-parceiro:hover::before {
  opacity: 1;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.4),
    0 0 20px rgba(255,255,255,0.1);
}
/* ===== OVERLAY (BLUR) ===== */
.card-parceiro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(10px);

  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}

.card-parceiro.ativo::after {
  opacity: 1;
}

/* ===== AÇÕES ===== */
.acoes-parceiro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 80%);
  width: 85%;

  opacity: 0;
  text-align: center;
  z-index: 3;

  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-parceiro.ativo .acoes-parceiro {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* ===== TEXTO ===== */
.card-parceiro .info {
  position: absolute;
  bottom: 10px;
  left: 15px;

  color: #fff;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.5px;

  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  z-index: 2;
}

/* ===== BOTÕES ===== */
.btn-parceiro {
  display: block;
  margin-top: 10px;
  padding: 12px;

  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;

  background: linear-gradient(135deg, #00ff88, #00ccff);
  color: #000;

  box-shadow: 0 0 15px rgba(0,255,150,0.4);
  transition: transform 0.2s ease;
}

.btn-parceiro:hover {
  transform: scale(1.05);
}

/* whatsapp */
.btn-parceiro:nth-child(2) {
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 10px rgba(37,211,102,0.6);
}

/* ===== ANIMAÇÃO ===== */
@keyframes aparecer {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* WHATSAPP */
.whatsapp-fixo{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
box-shadow:0 4px 12px rgba(0,0,0,0.4);
z-index:999;
transition:0.3s;
}

.whatsapp-fixo svg{
width:32px;
height:32px;
}

.whatsapp-fixo:hover{
transform:scale(1.1);
}

@media (max-width: 900px) {
  .parceiros {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .parceiros {
    grid-template-columns: 1fr;
  }
}

/* MODAL */

/* FUNDO */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  overflow-y: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

/* CAIXA */
.modal-content {
  position: relative;
  margin: 5% auto;
  width: 90%;
  max-width: 420px;
  max-height: 80vh;
  border-radius: 16px;
  overflow: auto;
}
  .modal-content {
  background: linear-gradient(
    180deg,
    rgba(20,20,20,0.95),
    rgba(10,10,10,1)
  );

  border: 1px solid rgba(238, 255, 0, 0.322);
  box-shadow: 0 10x 30px rgba(0,0,0,0.6);

  animation: subir 0.3s ease;
}

/* ANIMAÇÃO */
@keyframes subir {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* FECHAR */
.fechar {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
}

/* BANNER */
.banner {
  position: relative;
  height: 150px;
  background: linear-gradient(to top, #000, #111);
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, transparent);
}

.banner h2 {
  position: absolute;
  bottom: 50px;
  left: 20px;
  font-size: 18px;
}

.banner p {
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-size: 12px;
  color: #ccc;
}

/* ABAS */
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  flex-wrap: wrap;
}

.tabs button {
  padding: 6px 10px;
  border-radius: 20px;
  border: none;
  background: #222;
  color: #fff;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s;
  font-size: 12px;
}

.tabs button:hover {
  background: goldenrod;
  color: #000;
}

.tabs button.ativo {
  opacity: 1;
  background: goldenrod;
  color: #000;
}

/* CONTEÚDO */
#conteudo {
  padding: 12px;
  font-size: 13px;
  line-height: 1.4;
}

.dia {
  display: none;
}

.dia.ativo {
  display: block;
}

/* TEXTO */
#conteudo p {
  margin: 8px 0;
  color: #ddd;
  margin-bottom: 10px;
}

/* BOTÕES */
.acoes {
  padding: 20px;
}

.btn {
  display: block;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.4;
}

/* INGRESSO */
.ingresso {
  background: linear-gradient(90deg, goldenrod, goldenrod);
  color: #000;
}

/* WHATS */
.whatsapp {
  background: #00ccff;
  color: #000;
}

.insta-section {
  padding: 60px 20px;
  background: #000;
  text-align: center;
}

/* IMAGEM */
.insta-banner {
  max-width: 1000px;
  margin: 0 auto 30px;
  border-radius: 16px;
  overflow: hidden;
}

.insta-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* TEXTO */
.insta-texto h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 10px;
}

.insta-texto p {
  color: #aaa;
  margin-bottom: 30px;
}

/* ===== INSTAGRAM SECTION ===== */
.insta-section {
  padding: 80px 20px;
  background: #000;
}

/* CONTAINER LADO A LADO */
.insta-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* ===== LADO ESQUERDO (CENTRALIZADO) ===== */
.insta-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* LOGO */
.insta-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  opacity: 0.9;
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
}

/* TÍTULO */
.insta-left h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* TEXTO */
.insta-left p {
  color: #aaa;
  max-width: 400px;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* PERFIL */
.insta-perfil {
  margin-bottom: 25px;
}

.insta-perfil strong {
  display: block;
  color: #fff;
  font-size: 16px;
}

.insta-perfil span {
  color: #888;
  font-size: 14px;
}

/* BOTÃO */
.btn-seguir {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #833AB4, #C13584);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-seguir:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(193,53,132,0.4);
}

/* ===== LADO DIREITO ===== */
.insta-feed {
  width: 100%;
}

/* GRID INSTAGRAM */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.insta-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s;
}

.insta-grid img:hover {
  transform: scale(1.05);
  filter: brightness(0.8);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .insta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===== FAQ PREVIEW ===== */

.faq-preview {
  padding: 100px 20px 80px;
  text-align: center;
  background: #000;
}

.faq-preview h2 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 10px;
}

.faq-preview .sub {
  color: #aaa;
  margin-bottom: 50px;
  font-size: 15px;
}

/* 🔥 GRID 2 COLUNAS */
.faq-list {
  max-width: 900px;
  margin: 0 auto 40px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* CARD */
.faq-item {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 20px;
  text-align: left;

  border: 1px solid rgba(255,255,255,0.05);

  transition: 0.3s;
}

/* HOVER */
.faq-item:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

/* PERGUNTA */
.faq-item h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* RESPOSTA */
.faq-item p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.5;
}

/* BOTÃO */
.btn-faq {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 25px;

  background: linear-gradient(135deg, gold, goldenrod);
  color: #000;

  font-weight: bold;
  text-decoration: none;

  transition: 0.3s;
}

/* HOVER */
.btn-faq:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,215,0,0.4);
}

/* 📱 RESPONSIVO (celular = 1 coluna) */
@media (max-width: 700px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
}
/* ===== FAQ PAGE ===== */

/* ===== PÁGINA ===== */
.faq-page {
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}

/* TÍTULO PRINCIPAL */
.faq-page h1 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 10px;
}

.faq-page::after {
  content: "Tire todas as suas dúvidas antes de curtir";
  display: block;
  text-align: center;
  color: #888;
  margin-bottom: 60px;
}

/* ===== CATEGORIA ===== */
.faq-categoria {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.faq-categoria h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #00ffcc;
  border-left: 3px solid #00ffcc;
  padding-left: 10px;
  grid-column: span 2;
}

/* ===== BOX ===== */
.faq-box {
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 0 20px;
  transition: 0.3s;
  align-items: start;
}

/* HOVER */
.faq-box:hover {
  background: rgba(255,255,255,0.05);
}

/* BOTÃO */
.faq-box button {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  padding: 18px 0;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}

/* ÍCONE + */
.faq-box button::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  transition: 0.3s;
}

/* RESPOSTA */
.resposta {
  max-height: 0;
  overflow: hidden;
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  transition: all 0.4s ease;
}

/* ATIVO */
.faq-box.ativo {
  background: rgba(255,255,255,0.06);
}

.faq-box.ativo .resposta {
  max-height: 500px;
  padding-bottom: 15px;
}

/* TROCA + POR - */
.faq-box.ativo button::after {
  content: "−";
}

@media (max-width: 768px) {
  .faq-categoria {
    grid-template-columns: 1fr;
  }
}

.footer {
  width: 100%;
  padding: 20px 0;
  margin-top: 60px;

  text-align: center;
  color: #777;
  font-size: 13px;

  background: transparent; /* ou #000 */
  border-top: 1px solid rgba(255, 255, 255, 0.05);

  display: flex;
  justify-content: center;
  align-items: center;
}

.footer p {
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}