/* ======= RESET E BASE ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(160deg, #4B0000, #660000, #4B0000);
  color: #f9f9f9;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ======= CONTAINER ======= */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}

/* ======= CORES PRINCIPAIS ======= */
:root {
  --vinho: #660000;
  --rosa-claro: #fbc1d8;
  --rosa-escuro: #c92b4c;
  --dourado: #d2aa6d;
  --branco: #ffffff;
}

/* ======= HEADER ======= */
header {
  background-color: var(--vinho);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

.logo {
  height: 100px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--rosa-claro);
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--dourado);
}

/* ======= HERO ======= */
.hero {
  background-color: var(--vinho);
  text-align: center;
  padding: 100px 20px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: #b28a4a;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.5rem;
  color: var(--branco);
  margin-bottom: 30px;
}

/* ======= SEÇÕES ======= */
.section {
  padding: 100px 0;
  background-color: #1a0007;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dourado);
  text-align: center;
}

.section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.section.dark {
  background-color: var(--vinho);
}

.servicos-lista {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.servicos-lista li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  padding-left: 20px;
  position: relative;
  color: var(--rosa-claro);
}

.servicos-lista li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--dourado);
}

/* ======= PORTFÓLIO ======= */
.portfolio-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 100px;
  margin-top: 80px;
}

.portfolio-galeria img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.4s, box-shadow 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.portfolio-galeria img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

/* ======= FORMULÁRIO DE CONTATO ======= */
.form-contato {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.form-contato input,
.form-contato textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.form-contato textarea {
  resize: vertical;
  min-height: 120px;
}

.form-contato button {
  background-color: var(--dourado);
  color: var(--vinho);
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-contato button:hover {
  background-color: #b28a4a;
}

/* ======= RODAPÉ ======= */
footer {
  background-color: #0d0004;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: var(--rosa-claro);
}

/* ======= ANIMAÇÕES ======= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section h2,
.hero-content h1,
.hero-content p {
  animation: fadeInUp 1.2s ease forwards;
}

/* ======= DECORATIVOS ======= */
.section::before {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--dourado);
  margin: 0 auto 30px;
  border-radius: 4px;
}


/* ============ REDES SCOAS ====== */

.redes-sociais {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.redes-sociais a img {
  width: 30px;
  height: 30px;
  filter: invert(100%);
  transition: transform 0.3s;
}

.redes-sociais a:hover img {
  transform: scale(1.2);
  filter: invert(65%) sepia(100%) saturate(300%) hue-rotate(10deg);
}


/* === ANIMAÇÃO DE ENTRADA AO ROLAR === */
.scroll-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.scroll-anim.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==== RESPONSIVIDADE SEM PERDER O MENU ORIGINAL ==== */
@media (max-width: 768px) {
  
  header .container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }
  
  .logo {
    height: 35px;
  }
  
  nav ul {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav a {
    font-size: 0.9rem;
    padding: 5px;
  }
  
  /* HERO */
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  
  /* SEÇÕES */
  .section {
    padding: 50px 20px;
    min-height: auto;
  }
  
  /* PORTFÓLIO */
  .portfolio-galeria {
    grid-template-columns: 1fr;
  }
  
  /* REDES SOCIAIS */
  .redes-sociais {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.parallax-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#home.parallax-bg {
    background-image: url('imagens/banner.jpg'); /* substitua pela imagem que quiser */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.lancamento-destaque {
  position: relative;
  padding: 0;
  margin: 0;
}

.lancamento-bg {
  position: relative;
  width: 100%;
  height: 80vh; /* altura grande estilo hero */
  overflow: hidden;
}

.banner-fundo {
  width: 100%;
  height: 80vh;          /* ocupa altura de viewport */
  object-fit: cover;     /* mantém proporção e corta se necessário */
  object-position: center; /* posição padrão no desktop */
  display: block;
}

/* Versão mobile: mostra mais a direita */
@media (max-width: 768px) {
  .banner-fundo {
    object-position: right center; /* foca na parte direita da imagem */
  }
}
.lancamento-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* escurece a imagem pra dar contraste */
}

.lancamento-conteudo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 600px;
  padding: 20px;
}

.lancamento-conteudo h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.lancamento-conteudo p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-lancamento {
  display: inline-block;
  padding: 14px 30px;
  background: #ff4d4d; /* cor vibrante p/ destacar */
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-lancamento:hover {
  background: #e60000;
}
