:root {
  --roxo: #7e294b;
  --vinho: #7e294b;
  --bege: #f7e7ce;
  --dourado: #e7c07e;
  --branco: #fff;
  --rosa-claro: #fcebef;
  --cinza: #999;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-padding-top: 100px
}

.rdc {
  height: 100px;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--branco);
  color: var(--vinho);
  padding-top: 80px;
}


.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  z-index: 1000;
  background-color: var(--vinho);
  color: var(--branco);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-btn {
  background-color: var(--dourado);
  border: none;
  padding: 0.5rem 1rem;
  color: var(--vinho);
  font-weight: bold;
  cursor: pointer;
}

.banner {
  width: 100%;
  height: 400px;
  background-image: url('banners/Banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1; /* importante para que o conteúdo dentro apareça */
  margin-top: 100px; /* compensa o topo fixo */
  height: 650px;
  margin-top: 10px;
}



.banner-content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 1rem 2rem;
  border-radius: 12px;
}

/* Troca a imagem no celular */
@media (max-width: 768px) {
  .banner {
    margin-top: 10px;
    height: 600px;
    background-image: url('banners/Banner_Mobile.jpg');
  }
}


.shop-btn {
  margin-top: 1rem;
  background-color: var(--dourado);
  color: var(--vinho);
  border: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  cursor: pointer;
}

.valores {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  padding: 2rem 1rem;
  text-align: center;
}

.valores h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.valores-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

.valor {
  max-width: 200px;
  font-size: 0.85rem;
}

.valor img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.valor h3 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 1rem;
  min-height: 3em; /* força mesma altura para títulos */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.valor p {
  font-size: 1rem;
  line-height: 1.3rem;
}

.produtos {
  background-size: 100%;
  padding: 2rem;
  text-align: center;
}

.produtos img {
  width: 100%;
  max-width: 800px;
  height: auto;
}

.footer {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #7e294b;
  padding: 2rem 1rem;
  font-size: 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-box {
  flex: 1 1 200px;
  min-width: 180px;
}

.logo-footer img {
  width: 150px;
  margin-bottom: 0.5rem;
}

.footer-box h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #7e294b;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 0.5rem;
}

.footer-box ul li a {
  color: #7e294b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-box ul li a:hover {
  color: #7e294b;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

.footer-simples {
  background-color: #7e294b; /* Vinho */
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  font-family: Arial, sans-serif;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-box {
    margin-bottom: 2rem;
  }
}

@media (max-width: 600px) {
  .social-icons img {
    width: 40px;
    height: 40px;
  }
}

.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 40px auto;
  gap: 20px;
  flex-wrap: wrap;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.subtitle {
  color: #b79e53;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.title {
  color: #7c2d60;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.paragraph {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.image-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-content img {

  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 11px 11px 0px rgba(255, 58, 173, 0.337);
  border-color: #7e294b;
}

/* Responsividade */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .title {
    font-size: 2rem;
  }

  .paragraph {
    font-size: 0.95rem;
  }

  .image-content img {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .title {
    font-size: 1.7rem;
  }

  .paragraph {
    font-size: 0.9rem;
  }

  .image-content img {
    max-width: 100%;
  }
}

.imagem-links {
  
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.imagem-links a {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imagem-links img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 16px;
}

/* Responsivo */
@media (max-width: 768px) {
  .imagem-links {
    flex-direction: column;
    gap: 20px;
  }

  .imagem-links img {
    max-width: 90vw;
  }
}