/* Created by Tivotal */

/* Google Fonts(Poppins) */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap");

:root {
  --dark-blue: #404096;
  --blue: #3532f8;
  --gradient: linear-gradient(90deg, var(--dark-blue), var(--blue));
}

/* ----- Scroll Bar CSS ----- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 12px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-blue);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: none;
}

*::selection {
  background: var(--blue);
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: #f9f9f9;
}

section {
  min-height: 100vh;
  padding: 0 9%;
  padding-top: 7.5rem;
  padding-bottom: 2rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 3rem;
  border-radius: 5rem;
  background: var(--gradient);
  font-size: 1.7rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s linear;
}

.btn:hover {
  transform: scale(1.1);
}

.heading {
  text-align: center;
  background: var(--gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 3.5rem;
  text-transform: uppercase;
  padding: 1rem;
  margin-top: 0.5rem;
}

.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: #f1f1f1;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.chatbot-container.minimized {
  height: 40px;
}

.chatbot-header {
  background-color: #333;
  color: white;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.chatbot-header img {
  width: 60px; /* Ajuste o tamanho da imagem conforme necessário */
  height: 60px;
  border-radius: 50%;
  margin-right: 10px;
}

.chatbot-header h2 {
  margin: 0;
}

.chatbot-body {
  height: 340px;
  padding: 10px;
  overflow-y: scroll;
}

.chatbot-message {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.chatbot-message p {
  margin: 5px 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 13rem;  
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: 2rem 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

header .logo {
  max-width:150px;
  max-height:350px;
  width: auto;
  height: auto;
}

header .img-logo {
  max-width:150px;
  max-height:350px;
  width: auto;
  height: auto;
}

.links{
  font-size: 2rem;
  padding-top: 1rem;
  
}

.links .yt{
  color: #c4302b;
  padding-top: 1rem;
}

.links .insta{
  font-size: 2rem;
  padding-top: 1rem;
} 


.links .img-insta{
  height: 2.8rem;
  width: 2rem;
  padding-top: 1.2rem;
}

.links .face{
  color: #3b5998;
  padding-top: 1rem;
}


.links .in{
  color: #0e76a8;
  padding-top: 1rem;
}

header .navbar a {
  font-size: 1.7rem;
  margin-left: 2rem;
  color: #000;
  transition: 0.3s;
}

header .navbar a:hover {
  color: var(--blue);
}

header input {
  display: none;
}

header label {
  font-size: 3rem;
  color: var(--dark-blue);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #25d366;
  border-radius: 50%;
  z-index: 9999;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #128c7e;
}

.whatsapp-button i {
  color: #fff;
  font-size: 30px;
}




.home {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: url(../images/home-bg-img.png) no-repeat; */
  background-size: cover;
  background-position: center;
  background-image: url("images/fundo-new.gif");
  background-color: #fff;
  
}



.home .content {
    width: 80%;
    padding: 50px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    float: left;

}

.home .image img {
  width: 40vw;
  animation: anim 3s linear infinite;
}

@keyframes anim {
  0%,
  100% {
    transform: translateY(0rem);
  }
  50% {
    transform: translateY(-3.5rem);
  }
}

.home .content h3 {
  font-size: 4.5rem;
  background-color: #fff;
  color: #333;
  text-transform: uppercase;

}

.home .content h3 span {
  color: var(--blue);
  text-transform: uppercase;
}

.home .content p {
  font-size: 1.7rem;
  background-color: #fff;
  color: #666;

}

.alert {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("images/fundo.jpg");
  height: 100vh; /* Isso faz com que a seção ocupe toda a altura da janela de visualização */
}

.info-alert {
  padding: 20px; /* Espaçamento interno ao redor da imagem */
  border: 2px solid #ccc; /* Borda cinza ao redor do quadro branco */
  border-radius: 10px; /* Borda arredondada */
  background-image: url("images/fundo.jpg");
}

.banner {
  max-width: 100%; /* Garante que a imagem não seja maior do que o contêiner */
  height: auto; /* Mantém a proporção da imagem */
}


.features .info {
  text-align: center;
  color: black;
  font-size: 1.6rem;
  margin: 1rem auto;
  width: 70rem;
  text-transform: none;
}

.features .box-container {
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #000;
}

.features .box-container .out {
  text-transform: none !important;
  flex: 1 0 30rem !important;
  background: #fff !important;
  border-radius: 0.5rem !important;
  border: 0.1rem solid rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
  margin: 0 1.5rem !important;
  padding: 3rem 2rem !important;
  border-radius: 0.5rem !important;
  text-align: center !important;
  transition: 0.2s linear !important; 

}

.features .box-container .out img{
  width: 50rem !important;
  /* border-radius: 85% !important; */
}

.features .box-container .box-wrapper {
    display: flex;
    align-items: center;
    transition: transform 0.5s ease-in-out;
    text-transform: none;
  }

  
  .features .box-container .box {
    text-transform: none;
    flex: 1 0 30rem;
    background: #fff;
    border-radius: 0.5rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin: 0 1.5rem;
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: 0.2s linear;
    
  }
  
  .box-container-farm .box-farm .image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.box-container-farm .box-farm img {
    width: 100%;
    height: auto; /* Mantém as proporções originais da imagem */
    object-fit: cover; /* para garantir que a imagem cubra todo o contêiner, mantendo as proporções */
}

.box-container-farm .box-farm .text-overlay {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    /* transform: translate(-50%, -50%); */
    text-align: center;
}

.box-container-farm .box-farm h3{
  font-size: 3rem;
  text-align: center;
  color: #fff;
}
.box-container-farm .box-farm p {
    font-size: 2rem;
    color: #fff;
    text-align: justify;
}

/* inicio */
.box-container-fake .box-fake .image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.box-container-fake .box-fake img {
  width: 100%;
  height: 60rem; /* Mantém as proporções originais da imagem */
  object-fit: cover; /* para garantir que a imagem cubra todo o contêiner, mantendo as proporções */
  position: relative;
}

.box-container-fake .box-fake .text-overlay {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  /* transform: translate(-50%, -50%); */
  text-align: center;
}

.box-container-fake .box-fake h3{
  font-size: 3rem;
  color: #fff;
  text-align: center;
}

.box-container-fake .box-fake p {
  font-size: 2rem;
  color: #fff;
  text-align: justify;
}


  .features .box-container .box img {
    height: 35rem !important;
    width: 100% !important;
    /* border-radius: 40% ; */
  }

  .features .box-container .box p {
    font-size: 2rem;
    color: #000;
  }

@media screen and (max-width: 767px) {
  .features .box-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}

.features .box-container .box h3 {
  font-size: 2rem;
  color: #333;
  padding-top: 1rem;
}

.features .box-container .box p  {
  font-size: 1.3rem;
  color: #666;
  padding: 1rem 0;
}

.features .box-container .box .custom-list li {
  font-size: 1.3rem;
  color: #666;
  padding: 1rem 0;
}


.features .box-container .btn {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2rem;
  margin-top: 2rem;
  text-decoration: none;
  transition: background 0.2s linear;
}

.features .box-container .btn:hover {
  background: #555;
}

.features .box-container .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  cursor: pointer;
}

.features .box-container .arrow.right {
  right: -3rem;
}

.features .box-container .arrow.left {
  left: -3rem;
}

.about {
  padding-top: 3rem;
  background: url(./images/footer-oceano.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  left: 8%;
  right:8%;
}

.about .heading{
  color: #fff;
}

.about .column {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.about .column .image {
  flex: 1 1 40rem;
}

.about .column .image img {
  width: 100%;
}

.about .column .content {
  flex: 1 1 40rem;
  text-align: center;
  background-size: cover;
  max-width: 100rem;

}

.about .column .content {
  flex: 1 1 40rem;
  text-align: justify;

}

.img-esg {
  text-align: center; /* Centraliza as imagens horizontalmente na div */
}

.img-esg img {
  width: 200px; 
  height: 80%; 
  margin: 0 10px; 
}

.img-esg .small-image-1{
  height: 50rem;
  width: 50rem;
}

.img-esg .small-image-2{
  width: 50rem;
}



.about .column .content h3 {
  text-align: center;
  font-size: 3rem;
  color: #fff;


}


.about .column .content p {
  font-size: 2rem;
  color: #fff;
  padding: 1rem 0;
}

.about .column .content .video-new {
  text-align: center;
  justify-content: center;
}

.about.column .content .video-new .video{
  height: 100rem;
  width: 100%;
}

.about.column .content .video-new .video:hover{
  transform: scale(1.3);
}

.about .column .content .buttons a:last-child {
  margin-left: 2rem;
}

.column-news .content-news{
    flex: 1 0 30rem;
    border-radius: 0.5rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin: 0 1.5rem;
    padding: 3rem 2rem;
    text-align: justify;
    transition: 0.2s linear;
    font-size: 2rem;
}


.column .content li{
    font-size: 2rem;
    text-align: left;
    color: #666;
}

/* .newsletter {
  text-align: center;
  padding: 5rem 1rem;
  background: url(./images/politica-fundo.png) repeat;
  background-size: cover;
  background-position: center;
} */

/* .newsletter h3 {
  color: #fff;
  font-size: 3rem;
  text-transform: uppercase;
}

.newsletter p {
  color: #fff;
  font-size: 1.6rem;
  margin: 2rem auto;
  width: 70rem;
} */

.pricing .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing .box-container .box {
  flex: 1 1 27rem;
  margin: 1rem;
  padding: 1rem;
  background-color: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  text-align: center;
  padding-bottom: 3rem;
  transition: 0.3s;
}

.pricing .box-container .box:hover {
  transform: scale(1.6);
  border: 0.2rem solid var(--blue);
}

.pricing .box-container .box .title {
  color: var(--blue);
  font-size: 2.5rem;
  padding-top: 1rem;
}

.pricing .box-container .box .price {
  font-size: 4rem;
  color: var(--blue);
  padding: 1rem 0;
}

.pricing .box-container .box .price span {
  font-size: 2rem;
}

.pricing .box-container .box ul {
  padding: 1rem 0;
  list-style: none;
}

.pricing .box-container .box ul li {
  font-size: 1.7rem;
  color: #666;
  padding: 0.5rem 0;
}

.pricing .box-container .box ul li .fa-check {
  color: lightgreen;
}

.pricing .box-container .box ul li .fa-times {
  color: tomato;
}

.pricing-ods .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-ods .box-container .box {
  flex: 1 1 27rem;
  margin: 1rem;
  padding: 1rem;
  background: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  text-align: center;
  padding-bottom: 3rem;
  transition: 0.3s;
}

.pricing-ods .box-container .box img{
  width: 100%;
  height: auto;
}

.pricing-ods .box-container .box-2 {
  flex: 1 1 27rem;
  margin: 1rem;
  padding: 1rem;
  background: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  text-align: center;
  padding-bottom: 3rem;
  transition: 0.3s;
}

.pricing-ods .box-container .box-2 img{
  width: 100%;
  height: auto;
}

.pricing-ods .box-container .box p{
  opacity: 0;
}

.pricing-ods .box-container .box:hover {
  transform: scale(1.6);
  border: 0.2rem solid var(--blue);
}

.pricing-ods .box-container .box:hover p {
  opacity: 1;
  text-transform: uppercase;
}

.pricing-servico .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-servico .box-container .box {
  flex: 1 1 27rem;
  margin: 1rem;
  padding: 1rem;
  background: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  text-align: center;
  padding-bottom: 3rem;
  transition: 0.3s;
}
.pricing-servico .box-container .box:hover {
  transform: scale(1.1);
  border: 0.2rem solid var(--blue);
}

.pricing-servico .box-container .box .title {
  color: var(--blue);
  font-size: 2.5rem;
  padding-top: 1rem;
}

.pricing-servico .box-container .box img {
  max-width: 50rem;
}




.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 4rem;
  flex-direction: row;
  
}

.contact .image {
  flex: 1 1 40rem;
}

.contact .column {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 50%;
  
}

.contact .column  .content h3 {
  font-size: 3rem;
  color: #000;
}


.contact .column  .content p {
  font-size: 2rem;
  color: var(--blue);
  padding: 1rem 0;
  text-transform: none;
}

.contact form {
  flex: 1 1 40rem;
  padding: 2rem 3rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  background: #fff;
}

.contact form .heading {
  text-align: left;
  padding: 0;
  padding-bottom: 2rem;
}

.contact form .inputBox {
  position: relative;
}

.contact form .inputBox input,
.contact form .inputBox textarea {
  width: 100%;
  background: none;
  color: #666;
  margin: 1.5rem 0;
  padding: 0.5rem 0;
  font-size: 1.7rem;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
  text-transform: none;
}

.contact form .inputBox textarea {
  resize: none;
  height: 13rem;
}

.contact form .inputBox label {
  position: absolute;
  top: 1.7rem;
  left: 0;
  font-size: 1.7rem;
  color: #666;
  transition: 0.2s linear;
}

.contact form .inputBox input:focus ~ label,
.contact form .inputBox input:valid ~ label,
.contact form .inputBox textarea:focus ~ label,
.contact form .inputBox textarea:valid ~ label {
  top: -0.5rem;
  font-size: 1.5rem;
  color: var(--blue);
}

.contact .inputBox .vertente {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .3);
  color: #444;
  background-color: rgb(255, 255, 255); /* Cor de fundo */
  appearance: none; /* Remove o estilo padrão do seletor */
  border-top: 20px;

}







.footer-new {
  padding-top: 3rem;
  background: url(./images/footer-oceano.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  left: 8%;
  right:8%;
}

.footer-new .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Garante que os elementos fiquem um ao lado do outro com algum espaço entre eles */
  padding: 2rem; /* Adiciona algum espaçamento entre os elementos e a borda da seção */
}

.footer-new .box-container .box {
  flex: 0 1 calc(30% - 2rem); /* Define a largura das colunas e subtrai o espaçamento entre elas */
  margin-bottom: 2rem; /* Adiciona algum espaçamento na parte inferior de cada coluna */
  text-transform: none;
}

.footer-new .box-container .box h3 {
  font-size: 2.5rem;
  padding: 1rem 0;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-transform: none;
}

.footer-new .box-container .box p {
  font-size: 1.5rem;
  padding: 0.5rem 0;
  color: #eee;
  text-transform: none;
  text-align: justify;
}


.footer {
  padding-top: 3rem;
  background: url(./images/footer-oceano.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.footer .box-container {
  display: flex;
  flex-wrap: wrap;
}

.footer .box-container .box {
  flex: 1 1 25rem;
  margin: 2rem;
  text-transform: none;
  
}

.footer .box-container .box h3 {
  font-size: 2.5rem;
  padding: 1rem 0;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-transform: none;
}

.footer .box-container .box p {
  font-size: 1.5rem;
  padding: 0.5rem 0;
  color: #eee;
  text-transform: none;
  text-align: justify;

}

.footer .box-container .box a {
  display: flex;
  font-size: 1.5rem;
  /* padding: 0.2rem 0; */
  color: #eee;
  transition: 0.3s;
}

.footer .box-container .box a:hover {
  text-decoration: underline;
}

.footer .box-container .box i{
    font-size: 2.68rem;
}

.footer .box-container .box i, a{
    margin-right: 1.5rem;
}

.footer .box-container .box .info {
  display: flex;
  align-items: center;
}

.footer .box-container .box .info i {
  margin: 0.5rem 0;
  margin-right: 1rem;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 1.5rem;
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  text-align: center;
}

.footer .box-container .box .info p{
 text-transform: none;

}

.yt-footer{
  font-size:2rem;
  justify-content:justify;
  padding-right: 0.7rem;

}

.instagram-footer{
  font-size:2rem;
  justify-content:justify;
  padding-left: 0.4rem;
}

.face-footer{
  font-size:2rem;
  justify-content:justify;
  padding-left: 0.9rem;
}

.in-footer{
  font-size:2rem;
  justify-content:justify;
  padding-left: 0.4rem;
}

.footer .credit {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  color: #fff;
  border-top: 0.1rem solid #fff5;
  padding: 2.5rem 1rem;
  text-align: center;
}


/* media queries  */

@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }
}

@media (max-width: 991px) {
  section {
    padding: 0 3%;
    padding-top: 7.5rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  header label {
    visibility: visible;
    opacity: 1;
  }

  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem 2rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: 0.3s linear;
  }

  header .navbar a {
    display: block;
    margin: 2rem 0;
    font-size: 2rem;
  }

  header input:checked ~ .navbar {
    transform: scaleY(1);
    opacity: 1;
  }

  header input:checked ~ label::before {
    content: "\f00d";
  }

  .home {
    flex-flow: column-reverse;
  }

  .home .image img {
    width: 100%;
  }

  .home .content h3 {
    font-size: 3.6rem;
    
  }

  .home .content p {
    font-size: 1.5rem;
  }

  .about {
    background-position: right;
  }

  .newsletter p {
    width: auto;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .about .column .content .buttons a {
    width: 100%;
    text-align: center;
  }

  .about .column .content .buttons a:last-child {
    margin: 1rem 0;
    
  }


}