/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fontes */
body {
  font-family: 'Open Sans', sans-serif;
  background: #fffdfd;
  color: #4a4a4a;
  line-height: 1.6;
}

/* Cabeçalho */
header {
  background: #fff;
  border-bottom: 1px solid rgb(246, 238, 227);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; 
  z-index: 10; /* só garante que o menu fique sobre fundos, não sobre conteúdo */
  box-shadow: 0 2px 6px rgba(223, 194, 160, 0.3);
}


.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo h1 {
  font-family: 'Great Vibes', cursive;
  color: rgb(182, 138,104);
  font-size: 1.8rem;
}

.logo .slogan {
  font-style: italic;
  font-size: 0.85rem;
  color: rgb(182, 138,104);
  margin-left: 5px;
}

nav a {
  color: #aa7b5b;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: rgba(79, 55, 23, 0.932);
}




/* Hero carrossel */
/* Hero carrossel */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #fbeaea;
  padding: 50px 20px;
  gap: 30px;
  text-align: center;
}

.hero-carousel {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  overflow: visible; /* importante para mostrar slides vizinhos */
  padding: 20px 0;
}

.hero-carousel .swiper-wrapper {
  display: flex;
  align-items: center;
}

.hero-carousel .swiper-slide {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  width: 300px; /* largura do slide */
  flex-shrink: 0;
}

.hero-carousel .swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.hero-text {
  max-width: 450px;
  font-family: 'Great Vibes', cursive;
  color: #aa7b5b;
  align-items: center;
}

.hero-text h2 {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 5px;
  align-items: center;
}


.btn-whatsapp {
  display: inline-block;
  background: rgb(182, 138,104);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
   font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
  background: #dfc2a0;
  transform: scale(1.05);
}

/* Promoção */
.promo {
  background: #f7f0ec;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.promo-content {
  max-width: 900px;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.promo-content img {
  max-width: 340px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(245, 192, 192, 0.5);
}

.promo-content div h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: rgb(182, 138,104);;
  margin-bottom: 10px;
}

.promo-content div p {
  font-size: 1.1rem;
  color: #665050;
  margin-bottom: 15px;
}

/* Portfólio (grid de álbuns) */
.portfolio {
  padding: 40px 20px;
  text-align: center;
  background: #fffdfd;
}

.portfolio h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: rgb(182, 138,104);
  margin-bottom: 25px;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.album-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(209, 106, 130, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.album-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-bottom: 2px solid #f6eee3;
}

.album-card h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: rgb(182, 138,104);
  margin: 18px 0 10px;
}

.album-card .btn-whatsapp {
  margin: 15px 0 25px;
  background:rgb(182, 138,104);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.album-card .btn-whatsapp:hover {
  background:rgb(182, 138,104);
  transform: scale(1.05);
}

.album-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgb(182, 138,104);
}


/* SOBRE */
.sobre {
  background: #fffdfc;
  padding: 60px 20px;
}

.sobre-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.sobre-texto {
  flex: 1 1 450px;
}

.sobre-texto h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.6rem;
  color: #b68a68;
  margin-bottom: 15px;
}

.sobre-texto p {
  font-size: 1.1rem;
  color: #665050;
  margin-bottom: 20px;
  line-height: 1.8;
}

.sobre-foto {
  flex: 1 1 350px;
  text-align: center;
}

.sobre-foto img {
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(182,138,104,0.3);
  object-fit: cover;
}



/* Depoimentos estilo WhatsApp */
.depoimentos-whatsapp {
  background: #fff9f9;
  padding: 50px 20px;
  text-align: center;
}

.depoimentos-whatsapp h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: rgb(182, 138,104);
  margin-bottom: 30px;
}

.chat-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chat-bubble {
  max-width: 75%;
  padding: 15px 22px;
  background: #fcf5ed;
  border-radius: 20px 20px 20px 5px;
  color: rgb(182, 138,104);
  font-style: italic;
  box-shadow: 0 0 10px #fcf5ed;
  opacity: 0;
  transform: translateY(20px);
}

.chat-bubble.right {
  align-self: flex-end;
  background: rgb(182, 138,104);
  color: white;
  border-radius: 20px 20px 5px 20px;
  box-shadow: 0 0 12px rgb(182, 138,104);
}

.chat-bubble span {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  font-style: normal;
  color: inherit;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Contato */
.contato {
  background: #f7f0ec;
  padding: 50px 20px;
  text-align: center;
}

.contato h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: rgb(182, 138,104);
  margin-bottom: 15px;
}

.contato p {
  color: rgb(182, 138,104);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* Botão WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: rgb(182, 138,104);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 10px rgb(182, 138,104);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 9999;
}

.whatsapp-float:hover {
  background:rgb(182, 138,104);
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
}

/* Botão música */
#toggle-music {
  position: fixed;
  right: 90px;
  bottom: 20px;
  background: rgb(182, 138,104);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  box-shadow: 0 4px 10px #aa7b5b;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

#toggle-music img {
  width: 30px;
  height: 30px;
}


/* Localização */
.localizacao {
  padding: 40px 20px;
  background: #f7f0ec;
  text-align: center;
}

.localizacao h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: rgb(182, 138,104);
  margin-bottom: 20px;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px #f6eee3;
}

/* Rodapé */
footer {
  background: #fcf5ed;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  color: #aa7b5b;
  border-top: 1px solid #dfc2a0;
  margin-top: 40px;
}

/* Animação fade-in */
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.8s ease;
}

/* Visível por padrão */
section, .album-card, .chat-bubble {
  opacity: 1;
  transform: translateY(0);
}

/* Só anima se o JS adicionar a classe */
.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsividade */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .promo-content {
    flex-direction: column;
  }
  nav a {
    margin-left: 12px;
  }
  .albums-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
  }
  .album-card img {
    height: 200px;
  }
  .album-card h3 {
    font-size: 1.5rem;
  }
}



/*Estilo albuns */


    .album-container { 
      width: auto; 
      display: flex; 
      justify-content: center; 
      margin: 40px auto; 
      box-shadow: 0 0 20px rgba(230,183,198,0.25); 
    }
    .flipbook { 
      width: 1680px;   /* duas páginas lado a lado */
      height: 600px;   /* altura proporcional */
      margin: 0 auto; 
    }
    .flipbook > div { background: #fff; }
    .flipbook img { 
      width: 100%; 
      height: 100%; 
      object-fit: contain; 
      display: block; 
      border-radius: 6px; 
    }
    .album-actions { 
      text-align:center; 
      margin-top:18px; 
    }
    .album-actions button { 
      background: rgb(182, 138,104);; 
      border: none; 
      color: white; 
      padding: 10px 20px; 
      margin: 10px; 
      border-radius: 8px; 
      cursor: pointer; 
      font-weight: bold; 
      transition: background 0.3s; 
    }
    .album-actions button:hover { background:rgb(182, 138,104); }
    header { 
      padding:20px; 
      display:flex; 
      align-items:center; 
      justify-content:space-between; 
      gap:10px; 
    }
    header a { color:rgb(182, 138,104); text-decoration:none; font-weight:600; }
    @media (max-width: 960px) {
      .flipbook { width: 100%; height: 480px; }
    }
    @media (max-width: 600px) {
      .flipbook { width: 100%; height: 360px; }
    }

/* -------------------------------
   Ajustes extras de responsividade
--------------------------------*/

/* Tablets médios (até 1024px) */
@media (max-width: 1024px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero {
    padding: 40px 15px;
  }

  .promo-content {
    text-align: center;
  }
}

/* Celulares grandes (até 768px) */
@media (max-width: 768px) {
  header {
    padding: 12px 20px;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  nav a {
    font-size: 0.95rem;
    margin-left: 10px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h2 {
    font-size: 1.4rem;
  }

  .promo-content img {
    max-width: 100%;
  }

  .albums-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .album-card img {
    height: 180px;
  }

  .album-card h3 {
    font-size: 1.3rem;
  }

  .flipbook {
    height: 320px;
  }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    margin: 6px 0;
    font-size: 1rem;
  }

  .hero {
    padding: 30px 10px;
  }

  .hero-text h2 {
    font-size: 1.2rem;
  }

  .promo-content div h2 {
    font-size: 2rem;
  }

  .promo-content div p {
    font-size: 1rem;
  }

  .album-card h3 {
    font-size: 1.1rem;
  }

  .chat-bubble {
    max-width: 90%;
    font-size: 0.95rem;
    padding: 12px 18px;
  }

  .contato p {
    font-size: 1rem;
  }

  .flipbook {
    height: 240px;
  }
}

/* botão hamburguer escondido no desktop */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #b68a68; /* mesma cor dos seus detalhes */
}

/* MOBILE e TABLET */
@media (max-width: 1024px) {
  header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    align-items: center;
    justify-content: space-between;
  }

  header .logo {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  /* mostra o botão */
  .menu-toggle {
    display: block;
  }

  /* esconde menu por padrão */
  nav.menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  nav.menu a {
    padding: 12px;
    text-align: center;
    font-size: 1.1rem;
    border-top: 1px solid #eee;
  }

  /* quando ativo */
  nav.menu.active {
    display: flex;
  }
}






/* === ❄️ NEVE SUAVE === */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  background-image:
    radial-gradient(white 1.2px, transparent 1.2px),
    radial-gradient(white 1.2px, transparent 1.2px),
    radial-gradient(white 1.2px, transparent 1.2px);
  background-size: 120px 120px, 90px 90px, 60px 60px;
  background-position: 0 0, 50px 50px, 100px 100px;
  animation: snowFall 18s linear infinite;
  opacity: 0.7;
}

@keyframes snowFall {
  0% { background-position: 0 0, 50px 50px, 100px 100px; }
  100% { background-position: 400px 900px, 250px 600px, 150px 300px; }
}
/* === 🎅 PAPAI NOEL COM TRENÓ — ANIMAÇÃO DE ENTRADA === */
#santa-sleigh {
  position: fixed;
  top: 15%;
  left: -300px;
  width: 500px;
  height: auto;
  z-index: 9999;
  animation: santaFly 8s linear forwards;
  pointer-events: none;
}

@keyframes santaFly {
  0% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(60vw) translateY(-40px) scale(1.05);
  }
  100% {
    transform: translateX(110vw) translateY(-80px) scale(1.1);
    opacity: 0;
  }
}
