:root {
  /* Paleta de cores */
  --color-rose-gold: #b86874;
  --color-creme-elegante: #FDF6F0;
  --color-verde-eucalipto: #7BA69D;
  --color-dourado: #D4AF37;

  /* Fontes */
  --font-title-primary: 'Playfair Display', serif;
  --font-title-alt: 'Cinzel', serif;
  --font-text-primary: 'Poppins', sans-serif;
  --font-text-alt: 'Lato', sans-serif;

  /* Tamanhos */
  --font-size-title: 2.5rem;
  --font-size-subtitle: 1.75rem;
  --font-size-text: 1rem;
  --font-size-small-text: 0.875rem;
}

/* Reset e base */
body {
  margin: 0;
  font-family: var(--font-text-primary);
  background-color: var(--color-creme-elegante);
  color: #333;
}

/* Cabeçalho */
header {
  background: var(--color-rose-gold);
  text-align: center;
  padding: 2rem 1rem;
}

header img.logo-header {
  max-width: 200px;
  height: auto;
}

header p {
  font-family: var(--font-text-alt);
  font-size: 1.2em;
  color: var(--color-creme-elegante);
}

/* Navegação */
nav {
  background-color: #fff;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

nav a {
  margin: 0 1rem;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--color-rose-gold);
  font-weight: bold;
  font-family: var(--font-text-alt);
}

nav a:hover {
  color: var(--color-dourado);
}

.subtitle {
  text-align: center;
  font-family: var(--font-title-primary);
  color: var(--color-rose-gold);
  font-size: var(--font-size-subtitle);
  margin-bottom: 2rem;
}

/* Banner e Carrossel principal */
.banner {
  position: relative;
  background-image: url('');
  background-size: cover;
  background-position: center;
  height: 630px;
  min-height: 500px;
  max-height: 700px;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Efeito translúcido rose gold */
.banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(183, 110, 121, 0.35); /* rose gold translúcido */
  z-index: 2;
  pointer-events: none;
}

/* Carrossel cobre todo o banner */
.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  z-index: 3;
  display: flex;
  align-items: center;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.carousel-item {
  min-width: 100%;
  height: 100%;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* Destaques sobrepostos ao banner */
.destaque-banner,
.section#destaques {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  background: rgba(255,255,255,0.85);
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 2rem;
  border-radius: 16px;
}

.produtos-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.produtos-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.produtos-card {
  min-width: 250px;
  max-width: 300px;
  margin: 0 10px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}

.produtos-card:hover {
  transform: scale(1.03);
}

.destaque-frase {
  font-family: var(--font-title-alt);
  font-size: 1.5em;
  color: var(--color-rose-gold);
  text-align: center;
  margin-top: 2rem;
}

/* Seção padrão */
.section-sobre {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.section-sobre h2 {
  text-align: center;
  font-family: var(--font-title-primary);
  color: var(--color-rose-gold);
  margin-bottom: 2rem;
}

.section-sobre p {
  max-width: 900px;
  margin: auto;
  padding-bottom: 30px;
  text-align: center;
  font-family: var(--font-text-primary);
}

/* Card de produto */
.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
}

.card-body h3 {
  font-size: 1.2rem;
  color: var(--color-verde-eucalipto);
  margin: 0 0 0.5rem;
  font-family: var(--font-title-alt);
}

.card-body p {
  margin: 0.5rem 0;
  font-family: var(--font-text-alt);
  font-size: var(--font-size-text);
}

/* Rodapé */
footer {
  background-color: var(--color-rose-gold);
  color: white;
  text-align: center;
  padding: 1rem;
  position: relative;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  display: inline;
  margin: 0 10px;
}

footer ul li a {
  color: white;
  text-decoration: none;
  font-family: var(--font-text-alt);
}

footer ul li a img:hover {
  transform: scale(1.09);
}

/* Botão WhatsApp */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 99;
}

.whatsapp:hover {
  transform: scale(1.1);
}

/* Responsividade geral */
@media (max-width: 1024px) {
  header img.logo-header {
    max-width: 150px;
  }

  nav a {
    margin: 0 0.5rem;
    font-size: 1.1rem;
  }

  .destaque-banner {
    width: 85%;
    padding: 1.5rem;
  }

  .section-sobre {
    padding: 1.5rem;
  }
}

/* Tablets e celulares */
@media (max-width: 768px) {
  header {
    padding: 1.5rem 1rem;
  }

  header p {
    font-size: 1em;
  }

  nav {
    padding: 0.5rem;
  }

  nav a {
    display: inline-block;
    margin: 0.3rem 0.5rem;
    font-size: 1.1rem;
  }

  .banner {
    height: 900px;
    min-height: 900px;
  }

  .destaque-banner {
    width: 90%;
    padding: 1rem;
    font-size: 0.9rem;
  }

  .produtos-card {
    min-width: 75vw;
    max-width: 85vw;
  }

  .section-sobre h2 {
    font-size: 1.4rem;
  }

  .section-sobre p {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .card-body h3 {
    font-size: 1rem;
  }

  .card-body p {
    font-size: 0.9rem;
  }
}

/* Celulares pequenos */
@media (max-width: 480px) {
  header img.logo-header {
    max-width: 120px;
  }

  header p {
    font-size: 0.9em;
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav a {
    margin: 0.3rem 0;
    font-size: 1.1rem;
  }

  .banner {
    height: 700px;
    min-height: 700px;
  }

  .destaque-banner {
    width: 95%;
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .destaque-frase {
    font-size: 1.1em;
  }

  .produtos-card {
    min-width: 85vw;
    max-width: 95vw;
  }

  .whatsapp {
    width: 55px;
    height: 55px;
    font-size: 22px;
    bottom: 15px;
    right: 15px;
  }
}


