@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Lora:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Roboto+Slab:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Playfair Display", serif;
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 5vw;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: background-color 0.3s ease;
  flex-wrap: wrap;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.logo-img {
  width: 145px;
  height: auto;
}
/* Navegação */
nav {
  width: auto;
  flex-grow: 1;
}

ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

li {
  font-size: 1.3rem;
  font-family: "Lora", sans-serif;
  color: #fff; /* Cor padrão */
  transition: all 0.3s ease;
  position: relative;
  margin-left: 50px;
}

/* Estilização especial para o texto degradê no hover */
li:hover {
  background: linear-gradient(45deg, #f7e98e, #f1c857, #d4af37, #b18904);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

nav ul li:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

a i {
  margin-right: 5px;
}

/* WhatsApp Header */
.whatsapp-header {
  background: linear-gradient(45deg, #43e97b, #25a18b);
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 2px 2px 10px rgba(56, 249, 215, 0.4);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  width: max-content;
  margin-right: 13px;
}

.whatsapp-header a {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: white;
  text-decoration: none;
}

.whatsapp-header a i {
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Efeito hover invertendo as cores do degradê */
.whatsapp-header:hover {
  background: linear-gradient(45deg, #2cc5a9, #38c466);
  cursor: pointer;
}

.instagram-header {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 2px 2px 10px rgba(204, 24, 136, 0.5);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  width: max-content;
}

.instagram-header a {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: white;
  text-decoration: none;
}

.instagram-header a i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.instagram-header:hover {
  background: linear-gradient(
    45deg,
    #bc1888,
    #cc2366,
    #dc2743,
    #e6683c,
    #f09433
  );
  cursor: pointer;
}

/* WhatsApp flutuante */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

/* WhatsApp fixo no rodapé (mantendo como está) */
.whatsapp a {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.whatsapp a:hover {
  background-color: #1da851;
  cursor: pointer;
}

/* Div com fundo da "Nossa História" */
.destaks-content {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column; /* Mantém o título e o texto empilhados */
  justify-content: center; /* Centraliza verticalmente */
  align-items: center; /* Centraliza horizontalmente */
  text-align: center;
  padding: 0 20px; /* Espaço nas laterais */
  background: url(./imagenss/fundo.png) center/cover no-repeat fixed;
  color: rgb(36, 0, 0);
  font-family: "VNI Korin", sans-serif;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  text-align: justify;
}

/* Adicionando sobreposição para ajustar a opacidade sem afetar o conteúdo */
.destaks-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Ajuste a opacidade aqui */
  z-index: 1;
}

/* Mantém o conteúdo acima da sobreposição */
.destaks-content > * {
  position: relative;
  z-index: 2;
}

.destaks-content h2 {
  font-size: 2.5rem;
  font-family: "Merriweather", serif;
  color: #f5f5f5;
  margin-bottom: 20px;
  text-transform: uppercase;
  width: 100%; /* Garante que o título ocupe toda a largura */
  text-align: center; /* Título centralizado */
}

.destaks-content p {
  font-size: 1.8rem;
  color: #ffffff;
  text-align: center; /* Mantém o texto centralizado */
  margin: 0 20px;
  padding: 0;
  width: 80%;
  white-space: normal;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(99, 91, 91, 0.7);
  font-family: "Roboto", sans-serif;
  text-align: justify;
}
.zendesk-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80vh;
  background-color: #b7bfc1; /* Cor de fundo */
  padding: 0 20px;
  margin-top: 4px;
}

.zendesk-content {
  width: 46%; /* Ajuste o espaço à esquerda do texto */
  font-size: 1.2rem;
  color: #333;
  text-align: left;
  line-height: 1.6;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-left: 100px;
  text-align: justify;
}

.zendesk-image {
  width: 29%; /* Ajuste para acompanhar o tamanho do texto */
  height: 70%;
  background-image: url(./imagenss/Familia.jpg); /* Substitua pelo caminho da sua imagem */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-right: 120px; /* A margem à esquerda para afastar a imagem */
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .zendesk-section {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 20px 10px;
  }

  .zendesk-content {
    width: 90%;
    margin-left: 0;
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1rem;
  }

  .zendesk-image {
    width: 90%;
    height: 250px;
    margin-right: 0;
  }

  .destaks-content {
    height: auto;
    padding: 40px 10px;
  }

  .destaks-content h2 {
    font-size: 2rem;
    margin-top: 320px;
  }

  .destaks-content p {
    font-size: 1.1rem;
    width: 95%;
    margin: 0 auto;
    text-align: justify;
  }

  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px 5%;
    background-color: rgba(0, 0, 0, 0.1);
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .logo-img {
    width: 120px;
    margin-left: 40px;
  }

  .whatsapp-header {
    align-items: center;
    margin-top: 20px;
    margin-left: 40px;
  }
  .instagram-header {
    align-items: center;
    margin-top: 12px;
    margin-left: 10px;
  }
}

/* Responsividade para telas muito pequenas (tipo 320px a 480px) */
@media (max-width: 480px) {
  .zendesk-section {
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 20px 10px;
  }

  .zendesk-content {
    width: 95%;
    margin-left: 0;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-align: justify;
  }

  .zendesk-image {
    width: 95%;
    height: 200px;
    margin-right: 0;
  }

  .destaks-content {
    height: auto;
    padding: 30px 10px;
    padding-top: 313px;
  }

  .destaks-content h2 {
    font-size: 1.6rem;
    margin-top: 80px;
  }

  .destaks-content p {
    font-size: 1rem;
    width: 100%;
    margin: 0 auto;
    text-align: justify;
  }

  header {
    flex-direction: column;
    padding: 10px;
    height: auto;
    text-align: center;
  }

  .logo-img {
    width: 100px;
    margin-right: 45px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
  }

  li {
    font-size: 0.95rem;
    margin-left: 0;
  }

  .whatsapp-header {
    justify-content: center;
    padding: 6px 12px;
    font-size: 0.9rem;
    margin-right: 30px;
  }

  .whatsapp-header a i {
    font-size: 1rem;
  }
}
