@font-face {
  font-family: "VNI Korin";
  src: url("fonte/vni-korin.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@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=Lora:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display: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 a {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.whatsapp a:hover {
  background-color: #1da851;
  cursor: pointer;
}

.destaks-caixa {
  display: flex;
  width: 100%;
  height: 90vh;
}

/* Texto à esquerda */
.destaks-caixinha {
  width: 65%;
  background-color: #3c6e47;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  font-size: 1.8rem;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(99, 91, 91, 0.7);
  height: 120vh;
  text-align: justify;
}

.destaks-title {
  margin-bottom: 20px;
  font-size: 2.5rem;
  margin-left: 300px;
  margin-top: 10px;
  text-align: justify;
}

.destaks-title h2 {
  display: flex;
  margin-left: 200px;
  font-family: "Lora", serif;
  text-align: justify;
}

/* Imagem à direita */
.destaks-caixola {
  width: 35%;
  height: 120vh;
  background: url(./imagenss/feira-2.jpeg) center/cover no-repeat;
  position: relative;
  margin-left: 2px;
  text-align: justify;
}

/* Mapa */
.mapinha {
  margin-top: 20px;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mapinha iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.destaks-caixinha p {
  margin-top: 20px;
  font-size: 1.55rem;
  text-align: justify;
}

.destaks-caixinha h2,
.destaks-caixinha h4,
.destaks-caixinha li {
  font-family: "Lora", serif;
}

/* BOTÕES CTA */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 60px auto 40px;
  padding: 20px;
  background-color: transparent;
  margin-top: 155px;
  margin-right: 300px;
}

.cta-button {
  background-color: #25d366;
  color: white;
  padding: 12px 25px;
  font-size: 1.2rem;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  min-width: 200px;
}

.cta-button:hover {
  background-color: #1da851;
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}

/* RESPONSIVIDADE */
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px 5%;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .logo-img {
    width: 120px;
    margin-left: 43px;
  }

  .whatsapp-header {
    justify-content: center;
    padding: 8px 15px;
    margin-top: 20px;
    align-items: center;
    margin-left: 70px;
  }

  .instagram-header {
    align-items: center;
    margin-top: 12px;
    margin-left: 10px;
  }

  .whatsapp-header a i {
    font-size: 1.1rem;
  }

  .destaks-caixa {
    flex-direction: column;
    height: auto;
  }

  .destaks-caixinha {
    width: 100%;
    padding: 20px;
    height: auto;
    align-items: flex-start;
  }

  .destaks-caixinha h2 {
    margin-top: 350px;
  }

  .destaks-caixinha h4 {
    text-align: left;
    text-align: justify;
  }

  .destaks-title {
    font-size: 2rem;
    margin: 0 0 20px 0;
    text-align: left;
  }

  .destaks-title h2 {
    font-size: 2rem;
    margin-left: 0;
  }

  .destaks-caixola {
    width: 100%;
    height: 300px;
    margin-left: 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 40px auto 30px;
    width: 100%;
    display: none;
  }

  .cta-button {
    width: 90%;
    max-width: 300px;
    font-size: 1.1rem;
    padding: 12px 20px;
  }

  .mapinha {
    height: 200px;
  }
}

@media screen and (max-width: 480px) {
  header {
    padding: 10px;
  }

  .logo-img {
    width: 100px;
    margin-right: 43px;
  }

  nav ul {
    gap: 8px;
  }

  li {
    font-size: 1rem;
    margin-left: 0;
  }

  .whatsapp-header {
    margin-left: 26px;
    padding: 6px 12px;
  }

  .whatsapp-header a {
    font-size: 0.9rem;
  }

  .destaks-caixinha {
    padding: 15px;
    font-size: 1.2rem;
  }

  .destaks-title {
    font-size: 1.5rem;
    margin: 10px 0;
  }

  .destaks-title h2 {
    font-size: 1.5rem;
    align-items: center;
  }

  .cta-button {
    font-size: 1rem;
    padding: 10px;
  }
}
