body {
  margin: 0;
  background-color: #000;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 20px 0 10px 0;
}

header a {
  color: white;
  text-decoration: none;
}

header img {
  width: 100%;
  max-width: 75px;
  height: auto;
  border-radius: 8px;
}

header .logo-text {
  font-family: 'Georgia', serif;
  font-size: 1em;
  font-weight: bold;
  white-space: nowrap;
  color: white;
  text-decoration: none;
}

nav {
  margin: 0 40px 20px 40px;
}

.menu-toggle {
  display: none;
  font-size: 1.8em;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.menu-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
  align-items: center;
}

.menu-items a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  transition: 0.3s;
  border-radius: 5px;
}

.menu-items a:hover {
  background-color: hotpink;
  color: black;
}

.menu-items a.destaque {
  background-color: #000;
  color: white;
  border: 2px solid hotpink;
  border-radius: 5px;
  transition: 0.3s;
  margin-left: 80px;
}

.menu-items a.destaque:hover {
  background-color: hotpink;
  color: black;
  border-color: hotpink;
}

.separator {
  width: 90%;
  max-width: 1000px;
  height: 1px;
  background-color: #444;
  margin: 10px auto 30px auto;
}

.banner-principal {
  overflow: hidden;
  display: inline-block;
  border-radius: 8px;
}

.banner-principal img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.banner-principal img:hover {
  transform: scale(1.05);
}

h1 {
  font-size: 2em;
  margin-bottom: 30px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 10px;
}

.links-grid a {
  background: transparent;
  color: white;
  text-decoration: none;
  border: 1px solid white;
  padding: 15px 25px;
  transition: all 0.3s;
  border-radius: 8px;
  min-width: 120px;
}

.links-grid a:hover {
  background-color: hotpink;
  color: black;
  border-color: hotpink;
}

.info-extra {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  color: #ddd;
}

.info-extra h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.info-extra p {
  font-size: 1em;
  line-height: 1.6;
}

footer {
  margin-top: 40px;
  padding: 20px;
  border-top: 1px solid #444;
}

.banners-rodape {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.banners-rodape a {
  overflow: hidden;
  display: inline-block;
  border-radius: 8px;
}

.banners-rodape a img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.banners-rodape a img:hover {
  transform: scale(1.05);
}

.extra-links {
  margin: 15px 0;
}

.extra-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.95em;
}

.extra-links a:hover {
  color: hotpink;
}

.reportar {
  font-size: 0.9em;
  color: #ccc;
  margin-top: 10px;
}

.reportar a {
  color: hotpink;
  text-decoration: none;
}

.reportar a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 0.9em;
  color: #888;
  margin-top: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu-items {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .menu-items.show {
    display: flex;
  }

  .menu-items a.destaque {
    margin-left: 0;
  }
}


/* Fotos acompanhantes */
.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.pessoa {
  width: calc(20% - 20px); /* 5 por linha */
  text-align: center;
  color: white;
  overflow: hidden;
  border-radius: 8px;
}

.pessoa img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease;
}

.pessoa:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4); /* sombra rosa (opcional) */
}

.pessoa h3 {
  margin: 10px 0 5px;
  font-size: 1.1em;
  font-weight: bold;
}

.pessoa p {
  margin: 0;
  font-size: 0.95em;
  color: #ccc;
}

/* Responsivo para tablets */
@media (max-width: 1024px) {
  .pessoa {
    width: calc(33.33% - 20px); /* 3 por linha */
  }
}

/* Responsivo para celular */
@media (max-width: 600px) {
  .pessoa {
    width: 100%;
  }
}


/* Fotos pessoais em galeria */
.catalogo {
  margin: 60px auto;
  max-width: 700px;
  padding: 0 20px;
  text-align: center;
  color: white;
}

.catalogo-container {
  position: relative;
  overflow: hidden;
}

.catalogo-slide {
  display: none;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.catalogo-slide.active {
  display: block;
  animation: fadeSlide 0.6s ease-in-out;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.catalogo-slide img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  display: block;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #222;
  color: white;
  font-size: 2em;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 50%;
  z-index: 10;
  transition: background-color 0.3s;
}

.prev:hover,
.next:hover {
  background-color: hotpink;
  color: black;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Informações abaixo da galeria */
.catalogo-info {
  margin-top: 30px;
}

.catalogo-info h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.catalogo-info p {
  font-size: 1em;
  margin: 5px 0;
  color: #ccc;
}

.catalogo-info .telefone {
  font-weight: bold;
  color: hotpink;
}

.catalogo-info .whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: hotpink;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.catalogo-info .whatsapp-btn:hover {
  background-color: #ff69b4cc;
}

.catalogo-info .mensagem-final {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  color: #aaa;
}

/* Responsivo */
@media (max-width: 600px) {
  .catalogo-info .whatsapp-btn {
    width: 90%;
  }

  .prev,
  .next {
    font-size: 1.5em;
    padding: 6px 12px;
  }
}