/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: 'Cormorant Garamond', serif;
  background-color: #33212C;
  line-height: 1.6;
}

/* === NAVEGAÇÃO COM HOVER SUAVE E BRILHO === */
.navigation {
  display: flex;
  gap: 8px;
}

.nav-pill {
  padding: 8px;
  height: 36px;
  font-size: 20px;
  color: #FFCB6E;
  font-family: 'Cormorant Garamond', serif;
  text-decoration: none;
  transition: 
    color 0.3s ease,
    transform 0.3s ease,
    text-shadow 0.3s ease;
}

.pin-spacer {
  background: linear-gradient(#33212C 40%, #21151C 100%);
}

.nav-pill:hover {
  color: #f6ac52;
  transform: scale(1.08);
  text-shadow: 0 0 2px #FFD580, 0 0 15px #FFD580;
}

/* Animações */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* === ANIMAÇÕES === */
@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScroll {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === FUNDO ANIMADO SUAVE COM 'FOGOS' BRANCOS === */
.espaco-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,0.15) 2px, transparent 2px),
    radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
  background-size: 300px 300px, 150px 150px, 100px 100px;
  animation: fogosAnimados 8s linear infinite;
  z-index: 0;
}

@keyframes fogosAnimados {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 400px 600px, 300px 400px, 200px 300px;
  }
}

/* === ANIMAÇÃO EXCLUSIVA PARA A SEÇÃO O ESPAÇO === */
.espaco-section .animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.espaco-section .animate.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Sequência de delays */
.espaco-delay-1 { transition-delay: 0.1s; }
.espaco-delay-2 { transition-delay: 0.3s; }
.espaco-delay-3 { transition-delay: 0.5s; }
.espaco-delay-4 { transition-delay: 0.7s; }
.espaco-delay-5 { transition-delay: 0.9s; }
.espaco-delay-6 { transition-delay: 1.1s; }
.espaco-delay-7 { transition-delay: 1.3s; }
.espaco-delay-8 { transition-delay: 1.5s; }
.espaco-delay-9 { transition-delay: 1.7s; }
.espaco-delay-10 { transition-delay: 1.9s; }
.espaco-delay-11 { transition-delay: 2.1s; }
.espaco-delay-12 { transition-delay: 2.3s; }
.espaco-delay-13 { transition-delay: 2.5s; }
.espaco-delay-14 { transition-delay: 2.7s; }
.espaco-delay-15 { transition-delay: 2.9s; }
.espaco-delay-16 { transition-delay: 3.1s; }
.espaco-delay-17 { transition-delay: 3.3s; }

/* === ESTILOS DO RODAPÉ === */
/* === ESTILOS DO RODAPÉ === */
/* === FOOTER DESKTOP === */
.rodape-desktop {
  position: relative;
  width: 100%;
  height: 287px;
}

.fundo-rodape{
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
}

.flores-rodape {
  position: absolute;
  width: 100%;
  height: 250px;
}

.conteudo-rodape {
  width: 100%;
  height: 250px;
  background: linear-gradient(103.74deg, #21151C 52.99%, #875673 115.37%);
  border-bottom: 2px solid #FFCB6E;
}

.logo-rodape {
  height: 200px;
  width: 100%;
}

.img-logo-rodape {
  padding: 10px;
  margin-top: 40px;
  margin-left: 20px;
}

.info-rodape {
  position: absolute;
  left: 170px;
  bottom: 60px;
  color: white;
  font-family: 'Cormorant Garamond', serif;
}

.info-rodape .titulo-rodape {
  font-size: 24px;
  color: #FFCB6E;
}

.info-rodape .subtitulo-rodape {
  font-weight: 700;
  font-size: 16px;
}

.linha-rodape {
  width: 247px;
  border: 1px solid #FFCB6E;
  margin: 8px 0;
}

.menu-titulo-rodape {
  color: #FFCB6E;
  font-size: 16px;
  margin: 0;
}

.menu-links-rodape {
  text-decoration: underline;
  text-decoration-color:#FFCB6E;
  font-size: 16px;
  margin-top: 2px;
  color: #FFFFFF;
  cursor: pointer;
}

.menu-links-rodape:hover{
  color: #BA8C54;
}

.lista-menu-links-rodape {
  display: flex;
  justify-content: space-around;
}

.fa-circle{
  font-size: 3px;
  padding: 13px;
}

.telefone-rodape {
  font-size: 20px;
  font-weight: 600;
  margin-top: 0px;
  text-decoration: underline;
  text-decoration-color: #BA8C54;
  text-underline-offset: 3px;
  font-family: "Cormorant Infant", sans-serif;
}

.telefone-rodape span {
  color: #BA8C54;
}

.como-chegar {
  position: absolute;
  bottom: 170px;
  right: 385px;
  color: #FFCB6E;
  font-family: 'Cormorant Garamond', serif;
}

.titulos-rodape {
  font-size: 25px;
  margin: 0;
}

.botao-rota {
  margin-top: 10px;
  margin-left: 20px;
  width: 92px;
  height: 35px;
  border: 1.5px solid #BA8C54;
  border-radius: 76px;
  background: transparent;
  color: #BA8C54;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 800;
  cursor: pointer;
  padding: 5px;
  text-decoration: none;
}

.botao-rota:hover{
  color: #33212C;
  background-color: #FFCB6E;
}

.redes-rodape {
  position: absolute;
  bottom: 175px;
  right: 70px;
  color: #FFCB6E;
  font-family: 'Cormorant Garamond', serif;
}

.redes-sociais-rodape {
  display: flex;
  flex-direction: initial;
  gap: 20px;
}

.fa-instagram, .fa-facebook-f, .fa-location-dot{
  font-size: 20px;
  color: #FFCB6E;
  text-decoration: none;
  cursor: pointer;
}

.fa-instagram:hover, .fa-facebook-f:hover, .fa-location-dot:hover{
  color: #FFFFFF;
}

.premiacoes {
  position: absolute;
  bottom: 60px;
  right: 15px;
}

.premiacoes img {
  width: 500px;
  height: 54.8px;
}

.rodape-final {
  bottom: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(90deg, #21151C 24.13%, #33212C 100%);
  font-family: 'Cormorant Infant', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  color: #FFCB6E;
  text-align: center;
  line-height: 90px;
}

/* === FOOTER MOBILE === */
.rodape-mobile {
  display: none;
  background: linear-gradient(103.74deg, #21151C 52.99%, #875673 115.37%);
  color: white;
  font-family: 'Cormorant Garamond', serif;
  padding: 40px 20px 0;
}

.rodape-mobile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  max-width: 400px;
  margin: 0 auto;
}

.logo-mobile-footer {
  margin-bottom: 10px;
}

.logo-mobile-img {
  max-width: 120px;
  height: auto;
}

.endereco-mobile {
  text-align: center;
}

.endereco-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #FFCB6E;
  font-size: 18px;
  font-weight: 600;
}

.endereco-icon i {
  font-size: 20px;
}

.endereco-texto {
  font-size: 16px;
  margin: 5px 0;
  color: white;
}

.tracar-rota-mobile {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  border: 1.5px solid #BA8C54;
  border-radius: 25px;
  background: transparent;
  color: #BA8C54;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tracar-rota-mobile:hover {
  background-color: #FFCB6E;
  color: #33212C;
}

.telefone-mobile {
  text-align: center;
}

.telefone-label {
  font-size: 18px;
  color: white;
  margin-bottom: 8px;
  font-weight: 600;
}

.telefone-numero {
  font-size: 20px;
  color: #BA8C54;
  text-decoration: underline;
  text-decoration-color: #BA8C54;
  font-weight: 600;
}

.premiacoes-mobile {
  text-align: center;
}

.premiacoes-mobile-img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.redes-mobile {
  text-align: center;
}

.redes-mobile-titulo {
  font-size: 18px;
  color: #FFCB6E;
  margin-bottom: 15px;
  font-weight: 600;
}

.redes-mobile-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.rede-mobile-link {
  color: #FFCB6E;
  font-size: 24px;
  transition: all 0.3s ease;
}

.rede-mobile-link:hover {
  color: #FFFFFF;
  transform: scale(1.1);
}

.rodape-mobile-final {
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(90deg, #21151C 24.13%, #33212C 100%);
  font-family: 'Cormorant Infant', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  color: #FFCB6E;
  text-align: center;
  line-height: 1.4;
}

/* === RESPONSIVIDADE === */
/* Mostra footer mobile a partir de 991px */
@media (max-width: 991px) {
  .rodape-mobile {
    display: block;
  }
}

/* Esconde footer desktop a partir de 575px */
@media (max-width: 575px) {
  .rodape-desktop {
    display: none;
  }
}

/* Ajustes para tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .conteudo-rodape {
    padding: 25px;
  }
  
  .info-rodape {
    left: 140px;
  }
  
  .como-chegar {
    right: 300px;
  }
  
  .redes-rodape {
    right: 50px;
  }
  
  .premiacoes img {
    width: 400px;
  }
}

/* Ajustes para mobile pequeno no footer mobile */
@media (max-width: 480px) {
  .rodape-mobile {
    padding: 30px 15px 0;
  }
  
  .rodape-mobile-content {
    gap: 25px;
  }
  
  .logo-mobile-img {
    max-width: 100px;
  }
  
  .endereco-icon {
    font-size: 16px;
  }
  
  .endereco-texto {
    font-size: 14px;
  }
  
  .tracar-rota-mobile {
    font-size: 14px;
    padding: 6px 16px;
  }
  
  .telefone-label {
    font-size: 16px;
  }
  
  .telefone-numero {
    font-size: 18px;
  }
  
  .premiacoes-mobile-img {
    max-width: 250px;
  }
  
  .redes-mobile-titulo {
    font-size: 16px;
  }
  
  .rede-mobile-link {
    font-size: 22px;
  }
  
  .rodape-mobile-final {
    font-size: 12px;
    padding: 15px;
  }
}