/* ------------------------ Navbar Desktop --------------------------*/
*{
  font-family: 'Poppins';
  font-style: normal;  
}

.header {
  position: absolute;
  max-width: 100%;
  height: 100px;
  left: 0px;
  top: 0px;
  background-color: #FFF7ED;
}

.header .img{
  position: absolute;
  width: 40px;
  height: 34px;
  left: 170px;
  top: 30px;
}

.header .navbar-nav{
  position: absolute;
  left: 240px;
  width: 1128px;
  top: 30.5px;

  display: flex;
  align-items: center;
  text-align: center;
}

.header .navbar-nav .buttons{
  display: flex;
  margin-left: 30px;
}

.header .navbar-nav ul li{
  list-style: none;
  display: inline-block;
}

.header .navbar-nav ul li a{
  margin: 0 15px; 
  font-weight: 400;
  font-size: 16px;
  line-height: 138.4%;
  text-decoration: none;
  color: #1C1B1F;
}

.header .navbar-nav a:hover{
  color: rgba(242, 175, 92, 0.97);
}

/* Estilo comum para ambos os botões */
.header .navbar-nav .button,
.page-four .button-container .button, .page-five .button-container .button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;

  margin: 0 5px;
  width: 144px;
  height: 48px;
  border-radius: 2000px;
  transition: all 0.3s ease;
}

/* Estilo do botão de download */
.header .navbar-nav .button-download, .page-one .retangulo .button-download,
.page-four .button-container .button-download,
.page-five .button-container .button-download  {
  background: rgba(242, 175, 92, 0.97);
}

.header .navbar-nav .button-download:hover,  
.page-four .button-container .button-download, .page-five .button-container .button-download{
  filter: brightness(1.1);
}

/* Estilo do botão do WhatsApp com gradiente */
.header .navbar-nav .button-whatsApp, .page-one .retangulo .button-whatsApp,
.page-five .button-container .button-whatsApp{
  background: linear-gradient(180deg, #038520 0%, #1FAF38 100%);
  width: 159px !important;
}

.header .navbar-nav .button-whatsApp:hover, .page-one .retangulo .button-whatsApp:hover,
.page-five .button-container .button-whatsApp:hover, .footer .footer-column .whatsapp-button:hover {
  filter: brightness(1.2);
}

/* Texto dos botões */
.header .navbar-nav .button, .page-five .button-container .button {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.2px;
  display: inline-flex;
  gap: 8px;
}


.header .navbar-nav .button-whatsApp span,
.page-five .button-container .button-whatsApp span {
  color: #ffffff;
}

.header .navbar-nav .button-download span,
.page-five .button-container .button-download span {
  color: #1C1B1F;
}

.header .menu-icon, .header .navbar-nav .close-icon {
  display: none;
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ------------------------ Page One Desktop ------------------------*/

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* width Scrollbar*/
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar:hover{
  width: 10px;
}

/* Track Scrollbar */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle Scrollbar*/
::-webkit-scrollbar-thumb {
  background:  rgba(242, 175, 92, 0.72);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background:  rgba(242, 175, 92);

}

/* Estilo da seção da página */
body .page-one {
  left: 0px;
  top: 106px;
  position: absolute;
  width: 100vw;
  max-width: 100%;
  height: 645px;
}

/* Imagem com animação de zoom out */
body .page-one .background-img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  animation: zoomOut 2s ease-out forwards;
}


/* Texto com posicionamento e animação de fade-in */
body .page-one .text-title {
  position: absolute;
  width: 416px;
  height: 128px;
  left: 100px;
  top: 70.5px;
  text-align: left;

  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  font-size: 40px;
  line-height: 55px; 
  letter-spacing: 0.1px;
  color: #FFFFFF;

  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 2s;
}

/* Keyframes: animação da imagem */
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Keyframes: animação do texto */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------ Page Two Desktop --------------------------*/

.page-two {
  padding-top: 800px;
  text-align: center;
}

.page-two .text-title, .page-six .text-title{
  font-weight: 600;
  font-size: 34px;
  line-height: 55px;
  letter-spacing: 0.1px;
  color: #1C1B1F;
  margin-bottom: 60px;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  width: 330px;
  padding: 32px 24px;
  background: #FFFFFF; /* tom pastel igual ao fundo da imagem */
  border-radius: 20px;
  box-shadow: 0px 2px 8px rgba(122, 67, 0, 0.05);
  border: 1px solid #F4E2CC;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card img.icone {
  background-color: rgba(242, 175, 92, 0.2);
  padding: 20px;
  border-radius: 20px;
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 16px;
}

.page-two h3 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 5px;
  color: #1C1B1F;
}

.page-two h4 {
  font-weight: 400;
  margin-top: 30px;
  width: 296px;
  font-size: 16px;
  line-height: 150%;
  justify-content: center;
  color: #1C1B1F;
}


/* ------------------------ Page Four Desktop ---------------------------*/

.page-four {
  background-color: #FFF7ED;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-four .text-content {
  margin-top: 5px;
}

.page-four .text-content h1 {
  font-size: 36px;
  font-weight: 600;
  color: #1C1B1F;
  margin: 0 auto;
}

.page-four .text-content h5 {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #1C1B1F;
  margin-top: 10px;
  max-width: 600px;
}

.carousel-container {
  position: relative;
  width: 800px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide {
  position: absolute;
  width: 280px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 1s ease-in-out;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
  font-weight: 600;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 15px 15px;
  border-radius: 12px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Posições de destaque: centro, esquerda, direita */
.carousel-slide.center {
  z-index: 3;
  transform: scale(1.1);
}

.carousel-slide.left {
  transform: translateX(-240px) scale(0.9);
  z-index: 2;
}

.carousel-slide.right {
  transform: translateX(240px) scale(0.9);
  z-index: 2;
}



/* ------------------------ Page Five Desktop --------------------------*/

.page-five {
  padding: 1rem 0rem;
  background-color: #fff;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row; 
  flex-wrap: wrap;
  gap: -1rem;
  max-width: 1200px;
  margin: 0 10%;
}

.text-content {
  flex: 1;
  min-width: 300px;
  margin-top: -3.5rem;
}

.text-content h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1C1B1F;
  width: 550px;
}

.text-content h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #1C1B1F;
  margin: 0.75rem 0;
  display: flex;
  align-items: center;
}

.page-five .text-content h5::before {
  content: "✓";
  color: #00a86b;
  margin-right: 0.5rem;
}

.page-five .content-wrapper .button-container {
  position: absolute;
  margin-top: 1rem;
  left: 25%;
  transform: translateX(-50%);
  display: flex;
}

.page-five .content-wrapper .celular {
  flex: 1;
  max-width: 424px;
  width: 80%;
}


/* ------------------------ Page Six Desktop --------------------------*/
.page-six{
  margin-top: -1rem;
  background-color: #FFF7ED; 
  padding: 60px 60px;
}

.page-six .text-title{
  justify-content: center;
  text-align: center;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block; /* garante que envolva tudo certinho */
}

.page-six .card img.produtor{
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
}

.page-six h3 {
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0%;
  text-align: center;
  color: #1C1B1F;
  margin: 10px 0;
}

.page-six h4 {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #1C1B1F;
}



/* ------------------------ Desktop Footer --------------------------*/

.footer {
  background: #FFFCF7;
  padding: 40px 20px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer .footer-column .app-buttons img:hover, .footer .footer-column .app-buttons .social-icons img:hover{
  filter: brightness(1.3);
}

.footer-column h4 {
  font-size: 14px;
  color: #1C1B1F;
  margin-bottom: 10px;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  margin: 0 6px;
}

.app-buttons a img {
  height: 40px;
  margin: 5px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 159px;
  height: 48px;
  background: linear-gradient(180deg, #038520 0%, #1FAF38 100%);
  color: white;
  border-radius: 2000px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}


.whatsapp-button img, .header .navbar-nav .button img, .page-five .button img{
  width: 20px;
  height: 20px;
}

.whatsapp-button span {
  display: inline-block;
}

.footer-copy {
  margin-top: 30px;
  font-size: 12px;
  color: #1C1B1F;
}


/* ------------------------ Navbar iPad --------------------------*/
@media screen and (max-width: 1024px) {

  .header {
    height: 70px;
  }
  
  .header .navbar-nav {
    display: none; /* esconde por padrão */
    visibility: hidden;
    position: fixed;
    top: 0;
    width: 280px;
    height: 600px;
    left: calc(100vw - 280px);
    background-color: #FFF;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 60px 20px;
    transition: right 0.3s ease-in-out;
    z-index: 1;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  }

  .header .navbar-nav.mobile-active {
    display: flex;
    visibility: visible;
  }

  .header .navbar-nav .close-icon {
    display: block;
    visibility: visible;
    position: absolute;
    left: 30px;
    top: 35px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 2;
  }

  .header .navbar-nav .close-icon img, .header .menu-icon img{
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .header .menu-icon {
    display: block;
    visibility: visible;
    position: absolute;
    left: calc(100vw - 70px);
    top: 35px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1;
  }

  .header .img {
    position: absolute;
    left: 40px;
    top: 35px;
    width: 32px;
    height: 32px;
    z-index: 2;
  }

  .header .navbar-nav ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
  }

  .header .navbar-nav ul li {
    margin-bottom: 20px;
    width: 100%;
    list-style: none;
    padding: 15px 0;
    border-bottom: 1px solid #E0E0E0; /* Linha separadora */
  }

  .header .navbar-nav ul li a {
    font-size: 18px;
    text-align: left;
    display: block;
  }

  .header .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 12px;
    width: 80%;
  }

}

/* ------------------------ Navbar celular --------------------------*/

@media screen and (max-width: 414px){
  .header .navbar-nav{
    top: 0px;
    z-index: 2;
  }
}


/* ------------------------ Page One iPad --------------------------*/

@media screen and (max-width: 1024px) {

  body .page-one .text-title {
    width: 25%;
    height: auto;
    left: 80px;
    font-weight: 600;
    font-size: 32px;
  }  

}

/* ------------------------ Page one celular --------------------------*/

@media screen and (max-width: 414px){

  body .page-one .text-title {
    width: 80%;
    font-weight: 600;
    margin-top: 150px;
    left: 10%;
    font-size: 28px;
    line-height: 40px;
    text-align: center;   
    justify-content: center; 
  } 
  
  body .page-one .background-img {
    object-fit: cover;
    object-position: 38% 50%; 
   }

}

/* ------------------------ Page Two iPad --------------------------*/

@media screen and (max-width: 1024px) {
  .page-two .text-title, .page-six .text-title{
    font-size: 30px;
  }

  .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .card {
    width: 330px;
    padding: 32px 24px;
  }
}

/* ------------------------ Page Two celular --------------------------*/

@media screen and (max-width: 414px){
  .page-two .text-title, .page-six .text-title{
    font-size: 28px;
  }
}

/* ------------------------ Page Four iPad --------------------------*/
@media screen and (max-width: 1024px) {
  .page-four .text-content {
    margin-top: 5px;
  }
  
  .page-four .text-content h1 {
    font-size: 28px;
    width: 80%;
    margin: 0px auto;
  }

  .carousel-container {
    width: 80%;
    max-width: 80%;
  }

  .carousel-slide {
    position: absolute;
    width: 70%;
    height: 90%;
    transform: none !important;
    opacity: 0;
    z-index: 1;
  }

  .carousel-slide.center {
    opacity: 1;
    z-index: 2;
    transform: scale(1.05);
  }

  .carousel-slide.left,
  .carousel-slide.right {
    display: none;
  }
  
}

/* ------------------------ Page Four celular --------------------------*/

@media screen and (max-width: 414px){

  .page-four {
    padding: 20px 20px;
  }

  .page-four .text-content {
    margin-top: 5px;
  }
  
  .page-four .text-content h1 {
    font-size: 28px;
    width: 90%;
    margin: 0px auto;
  }

  .page-four .text-content h5 {
    margin-top: 20px;
  }

  .carousel-slide {
    width: 100%;
    height: 100%;
  }

  .carousel-container {
    width: 80%;
    max-width: 80%;
    margin-top: -20px;
  }

}

/* ------------------------ Page Five iPad --------------------------*/
@media screen and (max-width: 1024px) {

  .text-content h1 {
    font-size: 28px;
  }

  .page-five .content-wrapper .celular {
    flex: 1;
    max-width: 314px;
    width: 70%;
  }
}


/* ----------------------- Page Five celular -------------------------*/
@media screen and (max-width: 414px){

  .text-content {
    margin-top: -0.5rem;
  }

  .text-content h1 {
    font-size: 24px;
    width: 340px;
    height: auto;
  }

  .page-five .content-wrapper .celular {
    width: 15%;
    height: auto;
    max-width: 314px;
  }

  .page-five .button-container .button-download{
    display: none;
  }

  .page-five .button-container .button-whatsApp{
    display: none;
  }
  
}

/* ------------------------ Page Six iPad --------------------------*/

@media screen and (max-width: 1024px) {

}

/* -------------------- Page Six celular ----------------------*/

@media screen and (max-width: 414px){

  .page-six{
    padding: 50px 50px;
  }

  .page-six .text-title{
    font-size: 22px;
    width: 360px;
    height: 64px;
    margin-bottom: -2px;
    justify-content: center;
    text-align: left;
  }

  .page-six  .cards-container {
  gap: 30px;
  margin: 0 auto;
  }

}