@use "sass:color";

:root {
  --bg: #363636; /* slate-900 */
  --text: #ffffff; /* slate-200 */
  --accent: #22d3ee; /* cyan-400 */
  --main-color: #006631;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  -webkit-tap-highlight-color: transparent;

}

html, body { height: 100%; }

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  background: var(--bg);
  color: #363636;
  background-color: white;
}

strong {
  color: #363636;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.header-mobile {
  visibility: hidden;
}

.animate__home-content {
  display: flex;
  align-items: center;
  justify-content: left;
  background-position-x: left;
  background-position-y: -200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/img-main-bg.webp);
  width: 100%;
  height: 100vh;
}

.title-main-div {
  margin-left: 90px;
  width: auto;
  color: var(--text);
  align-items: flex-start;
  flex-wrap: wrap;
 background: linear-gradient(135deg, rgba(90, 90, 90, 0.342), rgba(59, 59, 59, 0.267));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 30px;
    border:1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  padding: 40px;
  margin-top: 80px;
  animation: fadeInLeft; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s; /* don't forget to set a duration! */
}

.bar-button-home {
  display: flex;
}

.title-main-div > h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: auto;
}

.title-main-div strong {
  font-weight: 800;
  background-color: white;
  padding: 0px 20px;
  color: #006631;
}

.button-home {
  color: black;
  padding: 10px 30px;
  margin-right: 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

#button-home2:hover, #button-home1:hover {
  transform: scale(1.04);
  opacity: 0.8;
}

#button-home2 {
  border: 2px solid var(--text);
  color: var(--text);
}

#button-home1 {
  background-color: var(--main-color);
  color: var(--text);
}

.title-main-div > p {
  width: 400px;
  margin-bottom: 30px;
}

/* Container ocupa largura total */
.container-empresas {
  position: relative;
  top: -70px;
  width: 100%;
  color: white;
  max-width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}

/* Botão único sobre o carrossel */
.btn-sobre-empresas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #006631;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.container-empresas:hover .btn-sobre-empresas {
  opacity: 1;
}

/* Swiper ocupa tela toda */
.swiper-empresas {
  width: 100%;
  height: auto;
  padding: 20px 0;
}

/* Cada logo responsivo */
.swiper-slide-empresa {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide-empresa img {
  max-width: 150px;
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.swiper-slide-empresa img:hover {
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .btn-sobre-empresas {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .swiper-slide-empresa img {
    max-width: 100px;
    max-height: 70px;
  }
}


header {
  display: flex;
  padding-top: 30px;
  width: 100%;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  height: 70px;
  position: fixed;
  z-index: 1000;
  transition: top 0.3s;
}

#mobileMenu {
  display: none;
}

.icon-agro-header {
  width: 50px;
}

.nav-bar-main {
  display: flex;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(90, 90, 90, 0.342), rgba(59, 59, 59, 0.267));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 60px;
  border:1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  padding: 15px 20px;
  flex-wrap: wrap;
}

#header-nav06 {
  background: linear-gradient(135deg, rgba(90, 90, 90, 0.342), rgba(59, 59, 59, 0.267));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  border:1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  padding: 15px 20px;
  flex-wrap: wrap;
  transition: all .2s ease-in-out;
  font-size: 25px;
}

#header-nav06:hover {
  transform: scale(1.04);
}

.header-nav {
  background-image: linear-gradient(#ffffff);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: left bottom;
  transition: background-size 500ms ease;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  margin: 10px 25px;
}

a:hover { 
  background-size: 100% 3px;
 }

.container-quem-somos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  height: 70vh;
  width: 100%;
}

.text-quem-somos {
  width: 50%;
  padding: 0px 50px;
}

.text-quem-somos > p {
  margin-bottom: 30px;
  font-size: 1.3em;
}

.text-quem-somos > h1 {
  color: #006631;
  margin-bottom: 20px;
}

.button-quem-somos {
  color: black;
  padding: 10px 30px;
  margin-right: 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

.button-quem-somos:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

#button-quem-somos {
  margin-top: 20px;
  background-color: var(--main-color);
  color: var(--text);
}

.sobre-nos-img {
  display: flex;
  background-image: url(../img/sobre-nos-img.webp);
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

.container-nosso-time {
  width: 100%;
  margin-left: auto;
    margin-right: auto;
    position: relative;
    list-style: none;
    padding: 90px 0px;
    z-index: 1;
    justify-content: center;
    height: 300px;
    display: flex;
    flex-direction: column;
  overflow-x: hidden;
}

<<<<<<< HEAD
.text-container-nosso-time {
  display: flex;
  position: relative;
  justify-content: center;
  top: -80px;
  width: 100%;
  font-size: 2em;
  color: #006631;
=======}
.title-nosso-time {
  display: flex;
  justify-content: center;
  position: relative;
  top: -20px;
  width: 100%;
  font-size: 2em;
  color: #006631;
  text-align: center;
>>>>>>> 3f316d75cceb10fd57bfd863f72d4641d44ca654
}

.swiper-time {
   width: 90%;
  height: auto;
  position: absolute;
  -webkit-overflow-scrollin: hidden;
}

.nav-block-prev {
  display: flex;
  right: 0;
  z-index: 1000;
  position: absolute;
  height: 100%;
  width: 100px;
  background: linear-gradient(-90deg, #fff, transparent);
}

.nav-block-next {
  display: flex;
  left: 0;
  z-index: 1000;
  position: absolute;
  height: 100%;
  width: 100px;
  background: linear-gradient(90deg, #fff, transparent);
}

.card-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e6e6e6;
  color: #252525;
  height: 160px;
  border-radius: 12px;
  padding: 90px 30px 20px 30px;
  width: auto;
  text-align: center;
  position: relative;
  transition: all ease-in-out 0.2s;
}

.card-time:hover {
    z-index: 10;
    position: relative;
    transform: translatey(-10px)
}

.card-time-img {
  position: absolute;
  top: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #006631;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.logo-abetri {
  display: flex;
  background-image: url(../img/logo-abetri-branco.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 40px;
  border: none;
}

.card-content h2 {
  font-size: 1.3rem;
  margin: 10px 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.flag {
  width: 22px;
  height: 15px;
  border-radius: 2px;
}

.role {
  font-size: 0.75rem;
  color: #006631;
  margin: 4px 0 10px;
  letter-spacing: 1px;
  font-weight: 600;
}

.skills {
  font-size: 0.9rem;
  margin-bottom: 18px;
  color: #363636;
}

.previous {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 6px;
}

.company {
  font-family: "Georgia", serif;
  font-size: 1.5rem;
  font-weight: bold;
}

.container-nossos-servicos {
  display: flex;
  background-color: var(--main-color);
  align-items: center;
  padding-bottom: 90px;
  flex-direction: column;
  background-image: url(../img/vista-frontal-da-paisagem-com-vegetacao.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: white;
}

.container-nossos-servicos > h1, .container-nossos-servicos > h2 {
  text-align: center;
  color: white;
  width: 80%;
}

.container-nossos-servicos > h1 {
  margin-bottom: 60px;
}

.container-nossos-servicos > h2 {
    margin-top: 80px;
    font-weight: normal;
    font-style: italic;
}

.card-nossos-serviços {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.card-ns {
  display: flex;
  flex-direction: column;
  padding: 50px 60px;
  background-color: white;
  border-radius: 20px;
  gap: 20px;
  text-align: left;
  width: 50%;
  border: solid 3px #00a34f00;
  transition: ease-in-out 0.2s;
}

.card-ns:hover {
  box-shadow: #3636369d 5px 5px 15px;
  border: solid 3px #252525;

}

.card-ns > i {
  font-size: 3em;
  color: #006631;
}

.card-ns > a {
  display: flex;
  text-decoration: none;
  color: #006631;
  align-items: center;
  font-weight: bold;
  color: var(--main-color);
  text-transform: uppercase;
}

.card-ns > a > i {
  margin-left: 10px;
}

.card-ns > h1 {
  font-size: 1.3em;
  color: var(--bg);
}

#ns-04:hover {
  border-color: white;
}

#ns-04 {
  display: flex;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 900px;
  gap: 20px;
  background-image: url(../img/background-card-ns-min.webp);
  color: white;
  width: 40%;
}

#ns-04 > h1, #ns-04 i, #ns-04 .elementor-divider{
  color: white;
}

#elementor-divider-ns-04 {
  background-color: white;
}

#button-ns-card {
  border: 2px solid var(--text);
  color: var(--text);
  width: 40%;
  justify-content: center;
}

#button-ns-card:hover {
  color: #363636;
}

.elementor-divider {
  background-color: var(--main-color);
  height: 1px;
  width: 100%;
}

.card-ns > p {
  font-size: 1em;
}

.coluna-cardns-01 {
  display: flex;
  text-align: left;
  justify-content: space-between;
  width: 90%;
  gap: 30px;
}

.blog-container {
  width: 100%;
  background-color: white;
  padding: 60px 0px;
}

.blog-container-cards {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: auto;
  margin: 0px 30px;
}

.card-blog {
  display: flex;
  width: 28%;
  height: 470px;
  padding: 20px;
  flex-direction: column;
  border: 1px solid #363636;
  border-radius: 20px;
  gap: 20px;
  transition: all ease-in-out 0.2s;
}

.card-blog:hover {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transform: translate(-10px, -10px);
}

.card-blog a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #006631;
  text-decoration: none;
  font-weight: bold;
}

.title-blog-container {
  width: 100%;
}

.blog-container h2 {
  font-size: 3em;
  padding: 0px 0px 40px 40px;
}

.blog-container h4 {
  font-size: 1.5em;
  padding: 0px 0px 0px 40px;
  color: #006631;
}


.card-blog-img {
  display: flex;
  width: 100%;
  height: 250px;
  border-radius: 10px;
  background-image: url(../img/769.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.text-card-blog {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-cta {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.button-blog-index {
  color: var(--text);
  background-color: var(--main-color);
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 10px;
  transition: all .2s ease-in-out;
  font-weight: 600;
}

.button-blog-index:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.container-entre-em-contato {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: white;
  background-image: linear-gradient(-155deg, #006631, #0ea74e);
  width: 100%;
  height: auto;
}

.container-avaliacao {
      margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.container-avaliacao > h1 {
  align-self: center;
  color: white;
  margin-bottom: 40px;
}
    
.swiper-avaliacao {
  width: 90%;
  height: auto;
  position: absolute;
  -webkit-overflow-scrollin: hidden;
  margin-bottom: 40px;
}

.swiper-slide {
  display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
    }

    .card {
      display: flex;
      height: 150px;
      flex-direction: column;
      font-size: 18px;
      background: #ffffff;
      border-radius: 18px;
      border: 1px solid rgb(97, 97, 97);
      display: flex;
      font-size: 0.9em;
      color: rgb(20, 20, 20);
      justify-content: flex-start;
      border: 1px solid #363636;
      align-items: left;
      padding: 10px 40px 20px 30px;
      margin: 10px 0px 20px 0px;
      transition: all ease-in-out 0.2s;
    }

    .card:hover {
      z-index: 10;
      position: relative;
      transform: translatey(-10px)
    }

    .nome-perfil-av {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      font-size: 1.1em;
      text-align: left;
    }

    .element-next2 {
      display: flex;
      align-items: center;
      margin-left: 20px;
      justify-content: center;
      z-index: 1000;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      position: absolute;
      top: 40%;
      left: 0;
      font-weight: 900;
      color: #fff;
      background-color: #006631;
      box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.582);
      cursor: pointer;
    }


    .element-next {
      display: flex;
      align-items: center;
      margin-left: 20px;
      justify-content: center;
      z-index: 1000;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      position: absolute;
      top: 40%;
      left: 40px;
      font-weight: 900;
      color: #006631;
      background-color: #ffffff;
      box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.582);
      cursor: pointer;
    }

    .element-prev2 {
      display: flex;
      align-items: center;
      align-self: flex-end;
      justify-self: flex-end;
      margin-right: 20px;
      justify-content: center;
      z-index: 1000;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      position: absolute;
      top: 40%;
      right: 0;
      font-weight: 900;
      color: #fff;
      background-color: #006631;
      box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.582);
      cursor: pointer;
      transition: 0.2s ease-in-out;
    }

    .element-prev {
      display: flex;
      align-items: center;
      align-self: flex-end;
      justify-self: flex-end;
      margin-right: 20px;
      justify-content: center;
      z-index: 1000;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      position: absolute;
      top: 40%;
      right: 40px;
      font-weight: 900;
      color: #006631;
      background-color: #ffffff;
      box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.582);
      cursor: pointer;
      transition: 0.2s ease-in-out;
    }

    .element-prev:hover, .element-next:hover {
      scale: 1.05;
      color: white;
      background-color: #006631;
    }

    .perfil-avaliacao {
      display: flex;
      background-size: contain;
      background-repeat: no-repeat;
      width: 100%;
      align-items: center;

    }
    
    .foto-perfil-av {
      display: flex;
      background-size: contain;
      background-repeat: no-repeat;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      margin-right: 10px;
    }
    
    #ft-pf01 {
      background-image: url(../img/JOADE.png);
    }

    #ft-pf02 {
      background-image: url(../img/JANDERSON.png);
    }

    #ft-pf03 {
      background-image: url(../img/JOAO_VITOR.png);
    }

    #ft-pf04 {
      background-image: url(../img/MERCIA_ALVES.png);
    }

    #ft-pf05 {
      background-image: url(../img/RENATO_SANTOS.png);
    }

    #ft-pf06 {
      background-image: url(../img/GABRIEL_MATHIAS.png);
    }

    .google-icon {
      display: flex;
      background-size: contain;
      background-repeat: no-repeat;
      align-items: center;
      width: 20px;
      height: 20px;
      display: flex;
      justify-self: end;
      background-image: url(../img/search.png);
      margin-left: 10px;
    }

    .avaliacao-icon {
      display: flex;
      width: 80px;
      height: 20px;
      background-position: center;
      background-repeat: no-repeat;
      background-image: url(../img/stars.png);
      background-size: cover;
    }

    .icons-avaliacao {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .title-avaliacao {
      display: flex;
      width: auto;
      justify-content: center;
      font-size: 2rem;
      margin: 0px 10px;
      align-items: center;
      text-align: center;
    }

    .title-avaliacao a {
      margin-left: 5px;
      color: #006631;
    }

    #sub-title-avaliacao {
      font-size: 1em;
      font-weight: 500;
      font-style: italic;
      margin-bottom: 20px;
    }

     .main-footer{
      display: flex;
      flex-direction: column;
      justify-content: center;
      background:white;
      color:#363636;
      padding:40px 20px 20px;
      font-family:system-ui, sans-serif;
      border-top: 1px solid #363636;
    }
    .footer-container{
      display:grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap:20px;
      max-width:1300px;
      margin:0 auto;
    }

    .google-maps {
      border-radius: 20px;
      border: 3px solid #006631;
    }


    .footer-col h3{
      font-size:18px;
      margin-bottom: 20px;
      color:#363636;
    }

    .footer-col p {
      margin-bottom: 10px;
    }

    .footer-col ul{
      list-style:none;
      padding:0;
      margin:0;
    }
    .footer-col ul li{
      margin:6px 0;
    }
    .footer-col ul li a,
    .footer-col p a{
      color:#363636;
      text-decoration:none;
      transition:color .3s;
    }
    .footer-col ul li a:hover,
    .footer-col p a:hover{
      color:#6b6b6b;
    }
    .footer-logo{
      max-width:90px;
      margin-bottom:10px;
    }
    .social-icons a{
      display:inline-block;
      margin-right:10px;
      font-size: 26px;
      color:#363636;
      transition:all ease-in 0.2s;
    }
    .social-icons a:hover{
      scale: 1.1;
      color:#6b6b6b;
    }
    .footer-bottom{
      text-align:center;
      margin-top:30px;
      border-top:1px solid rgba(255,255,255,0.2);
      padding-top:15px;
      font-size:14px;
      color:#363636;
    }


    .modal {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: center;
  position: fixed; 
  z-index: 1; 
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  animation: popupIn 0.4s ease forwards;
}

@keyframes popupIn {
      0% { transform: scale(0.7); opacity: 0; }
      80% { transform: scale(1.05); opacity: 1; }
      100% { transform: scale(1); opacity: 1; }
    }

     @keyframes popupOut {
      from { transform: scale(1); opacity: 1; }
      to { transform: scale(0.7); opacity: 0; }
    }

.fechar {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.fechar:hover {
  color: red;
}

