:root {
  --cor-fundo: #0d0d0d;
  --cor-texto: #f5f5f5;
  --cor-dourado: #c9a84b;
  --fonte-principal: 'Poppins', sans-serif;
}

/* ---- Reset & Base ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  font-family: var(--fonte-principal);
  scroll-behavior: smooth;
  line-height: 1.6;
}

/* ---- Navbar ---- */
.navbar {
  background-color: rgba(0,0,0,0.95);
}

.nav-link {
  color: var(--cor-texto) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--cor-dourado) !important;
}

.text-gold {
  color: var(--cor-dourado) !important;
}

/* ---- Hero ---- */
section[class*='hero'] {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--cor-texto);
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
  padding: 4rem 1rem;
}

/* ---- Botões ---- */
.btn-prime {
  background-color: var(--cor-dourado);
  color: #000;
  border: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  padding: 0.7rem 2rem;
}

.btn-prime:hover {
  background-color: #b38d30;
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Seções ---- */
section {
  padding: 3rem 1rem;
}

h2, h3, h4, h5 {
  color: var(--cor-dourado);
}

p {
  color: var(--cor-texto);
}

/* Fade in sections */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}


/* ---- Cards e Galeria ---- */
.servicos-card, .galeria-item {
  background-color: #1a1a1a;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicos-card:hover, .galeria-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* ---- Formulário ---- */
form input, form textarea {
  background-color: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cor-texto);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: var(--cor-dourado);
  box-shadow: 0 0 8px rgba(201,168,75,0.5);
}

.mapa-google {
  width: 100%;
  height: 50vh;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* ---- Footer ---- */
footer {
  background-color: #111;
  color: #bbb;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 1rem;
}

footer a {
  text-decoration: none;
  color: var(--cor-texto);
  transition: color 0.3s ease;
}

.social-icons img {
  width: 3rem;
  height: auto;
  margin-bottom: 2rem;
}

footer a:hover {
  color:var(--cor-dourado) !important;
}

.footer-direitos img {
  width: 8rem; 
  height: auto;
  margin-top: -1rem;
}

/* ---- Popups ---- */
#popupSucesso {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--cor-dourado);
  color: #000;
  padding: 15px 25px;
  border-radius: 10px;
  z-index: 999;
}

.whatsapp-float {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0.5rem;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.2);
}

.demo-banner {
  max-width: 2200px;
  height: auto;
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  margin: 0.5rem 1rem;
  background: #4F4F4F; 
  color: #fff;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  border-radius: 0.5rem;
  z-index: 999; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.demo-banner p,
.demo-banner a {
  margin: 0;
  text-align: left;
} 

.demo-link {
  color: white;
  text-decoration: underline;
  margin-left: 5px;
  font-weight: bold;
}

.demo-link:hover {
  color: #b38d30;
}

.demo-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  font-weight: 600;
  
}

.banner-cookie {
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position:fixed;
  bottom: 1rem;
  background: #4F4F4F; 
  gap: 0.5rem;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  border-radius: 0.5rem;
  z-index: 999; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  left: 50%;
  transform: translateX(-50%);

}

.banner-cookie p,
.banner-cookie a {
  margin: 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
} 

.cookie-btn{
  background: #b38d30;
  color: #000;
  font-weight: 600  ;
  border: none;
  padding: 8px 14px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
}

.footer-direitos a{
  color: #fff;
  text-decoration: none;
}


/* ---- Mobile First Responsivo ---- */
@media(min-width: 576px) {
  section[class*='hero'] {
    min-height: 80vh;
    padding: 5rem 2rem;
  }
}

@media(min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .mapa-google {
    margin-top: 3rem;
    width: 100%;
    height: 50vh;
  }
}

@media(min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media(min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
