* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

:root{
  --header-h: 110px;
}

body {
  background: #000;
  color: #fff;
}

/* HERO */
.hero {
  min-height: calc(100vh - var(--header-h));
  background-image:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("background-novo-sol.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BOTÃO */
.btn {
  display: inline-block;
  padding: 15px 35px;
  background: #d4af37;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #b9962e;
}

/* SEÇÕES */
section {
  padding: 80px 20px;
  background: #111;
}

section h2 {
  text-align: center;
  color: #d4af37;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* SOBRE */
.sobre p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  color: #ddd;
}

/* PRODUTOS */
.produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.produto {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #2a2a2a;
}

.produto h3 {
  color: #d4af37;
  margin-bottom: 15px;
}

.produto p {
  color: #ccc;
  font-size: 1rem;
}

/* CONTATO */
.contato {
  text-align: center;
}

.contato p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  background: #000;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}

/* Scroll reveal (animação ao descer) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Acessibilidade: respeita quem desativa animações */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* HEADER FIXO */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212,175,55,0.18);
}

.header-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo{
  height: 80px;      /* ajuste fino se quiser */
  width: auto;
  display: block;
}

/* MENU */
.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link{
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  opacity: 0.92;

  padding: 10px 12px;
  border-radius: 999px;
  transition: 0.2s;
}

.nav-link:hover{
  opacity: 1;
  background: rgba(212,175,55,0.14);
}

/* Espaço pro header não cobrir o conteúdo */
body{
  padding-top: var(--header-h); /* importante: igual/um pouco maior que a altura do header */
}

/* Responsivo básico */
@media (max-width: 640px){
  .header-inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .nav{
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }
  .brand-logo{
  height: 80px;
  width: auto;
  display: block;
}
}

/* SLIDER (Missão / Visão / Valores) */
.slider{
  position: relative;
  margin: 0 auto;
  max-width: 920px;
}

.slider-viewport{
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,0.18);
  background: rgba(0,0,0,0.35);
}

.slider-track{
  display: flex;
  transition: transform 520ms ease;
  will-change: transform;
}

.slide{
  min-width: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* imagem inteira (não corta) */
.slide img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* garante imagem inteira */
}

/* Botões */
.slider-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;

  background: rgba(0,0,0,0.55);
  color: #d4af37;
  font-size: 28px;
  line-height: 44px;
  text-align: center;

  transition: 0.2s;
  z-index: 2;
}

.slider-btn:hover{
  background: rgba(0,0,0,0.75);
}

.slider-btn.prev{ left: -14px; }
.slider-btn.next{ right: -14px; }

/* Bolinhas */
.slider-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.35);
}

.dot.is-active{
  background: #d4af37;
}

/* Responsivo: setas dentro do card no mobile */
@media (max-width: 640px){
  .slider-btn.prev{ left: 10px; }
  .slider-btn.next{ right: 10px; }
}

/* MVV (Missão / Visão / Valores) com FUNDO FIXO */
.mvv{
  position: relative;
  margin: 0 auto;
  max-width: 980px;
}

.mvv-viewport{
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.18);
  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url("img-missao.png") center/cover no-repeat;
}

/* track desliza (troca só o conteúdo) */
.mvv-track{
  display: flex;
  transition: transform 520ms ease;
  will-change: transform;
}

.mvv-slide{
  min-width: 100%;
  padding: 48px 26px;
  text-align: center;
  color: #111;
}

/* Caixinha do texto por cima do fundo */
.mvv-slide > h3,
.mvv-slide > p,
.mvv-slide > ul{
  max-width: 760px;
  margin: 0 auto;
}

.mvv-slide h3{
  font-size: 2.3rem;
  letter-spacing: 2px;
  font-weight: 800;
  color: #7a0f0f; /* vinho parecido com as artes */
  margin-bottom: 16px;
  text-transform: uppercase;
}

.mvv-slide p{
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 700;
  color: #111;
}

.mvv-slide ul{
  list-style: none;
  padding: 0;
  margin-top: 6px;
}

.mvv-slide li{
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 800;
  color: #111;
}

.mvv-slide li::before{
  content: "• ";
  color: #111;
}

/* Botões (setas) */
.mvv-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;

  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 28px;
  line-height: 46px;
  text-align: center;

  transition: 0.2s;
}

.mvv-btn:hover{
  background: rgba(0,0,0,0.75);
}

.mvv-btn.prev{ left: -14px; }
.mvv-btn.next{ right: -14px; }

/* Bolinhas */
.mvv-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

/* Ajuste de contraste da seção */
.sobre{
  background: #111;
}

/* Responsivo */
@media (max-width: 640px){
  .mvv-btn.prev{ left: 10px; }
  .mvv-btn.next{ right: 10px; }

  .mvv-slide{
    padding: 34px 18px;
  }

  .mvv-slide h3{
    font-size: 1.8rem;
  }

  .mvv-slide p,
  .mvv-slide li{
    font-size: 1.05rem;
  }
}