/* ================== CSS SITE NOVO ================== */

.all-test {
  background-color: #33333386;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
  justify-content: center !important;
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #05665f;
  --secondary-color: #333333;
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #80d0c7;
  --custom-btn-bg-hover-color: #13547a;
  --dark-color: #000000;
  --p-color: #ffffff;
  --border-color: #7fffd4;
  --link-hover-color: #13547a;

  --body-font-family: 'Open Sans', sans-serif;
  --title-font-family: 'Montserrat', sans-serif;

  --h1-font-size: 58px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --menu-font-size: 14px;
  --btn-font-size: 18px;
  --copyright-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

.custom-row {
  /* Em vez de ".row", usamos ".custom-row" */
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
  justify-content: center !important;
}


/*--------------------------------------------------------------
# Geral
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

::selection {
  background-color: #05665f;
  color: white;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  color: #444444;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #333;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-track {
  background-color: rgb(215, 215, 215);
}

body::-webkit-scrollbar-thumb {

  background: rgb(99, 99, 99);
  border-radius: 3px;
}

/* .teste{
  background-color: #ffffff00;
} */

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #333;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #012970;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 57px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #8894f6;
  content: "/";
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #05665f;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #05665f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.header-alternativo {
  background-color: #333;
}

.header.header-scrolled {
  background: #333;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: 'Montserrat', sans-serif;
  margin-top: 3px;
}

/*--------------------------------------------------------------
# Header Blog
--------------------------------------------------------------*/
.header-blog {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: #05665f;
}

.header-blog.header-scrolled {
  background: #05665f;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header-blog .logo {
  line-height: 0;
}

.header-blog .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header-blog .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: 'Montserrat', sans-serif;
  margin-top: 3px;
}

.blog-clique {
  color: #008d85;
}

.blog-clique:hover {
  color: #008d86e8;
}

@media(max-width: 515px) {
  .blog-clique {
    color: #008d85;
  }

  .blog-clique:hover {
    color: #008d86e8;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/

.menu-icon {
  margin-bottom: 7px !important;
}


.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  /* font-weight: 700; */
  color: #ffffff9f;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #e9e9e9;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #fff;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 10px;
  color: #008d85;
  font-weight: 600;
}

@media(max-width: 414px) {

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: #fff;
    padding: 8px 20px;
    margin-left: 0px;
    border-radius: 10px;
    color: #008d85;
    font-weight: 300;
  }

  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 0px !important;
  }

  .adm {
    background: #008d85;
    color: #fff !important;
    border-radius: 4px;
    width: 15%;
    margin-left: 5%;
    padding: 15px !important;
    margin-top: 5%;

  }

}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #008d85;
  background: #fffffff3;
}

.navbar .dropdown ul {
  display: block;
  /* flex-direction: column;
  flex-wrap: nowrap;
  align-content: normal;
  justify-content: normal;
  align-items: flex-start; */
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.mydropdown {
  width: 100px !important;
  height: 100px !important;
}


.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #333;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.dropdown-item {
  color: #333 !important;
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #333;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #ffffff9f;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


.table-menu th {
  color: #008d85 !important;
}

.table-menu td {
  color: #848484 !important;
  font-size: 16px;
}


.th-icon .menu-icon {
  vertical-align: middle;
  font-size: 24px;
}

.th-icon span {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  color: #008d85;
}

table {
  caption-side: bottom;
  border-collapse: separate;
  margin-top: -10px !important;
}

.table-bordered>:not(caption)>*>* {
  border-width: 1px;
  border-radius: 7px;
}


.dropdown-menu li a i {
  margin-right: 10px;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  color: #008d85;
}

.dropdown-menu li a:hover {
  transform: scale(1.00);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  transition: 0.3s;
  color: #008d85 !important;
}

.dropdown-menu li a:hover i {
  color: #fff;
}

.span-agro {
  margin-right: 41%;
}

.span-restaurant {
  margin-right: 45%;
}

.span-commerce {
  margin-right: 25%;
}

.span-store {
  margin-right: 35%;
}

.btn-close {
  background-color: #fff !important;
  margin-left: 90%;
  margin-top: 2%;
}

.sib-form .entry__field {
  -webkit-align-items: center;
  align-items: center;
  background: #fff;
  border: 1px solid #333 !important;
  /* border-radius: 7px; */
  display: -webkit-inline-flex;
  display: inline-flex;
  margin: 0.25rem 0;
  max-width: 100%;
}


/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/

.hero {
  background: url(../images/site-novo/notebook.jpg) bottom center no-repeat;
  background-size: 100%;
}

@media(min-width: 1400px) {
  .hero {
    background: url(../images/site-novo/notebook.jpg) bottom center no-repeat;
    background-size: 100%;
    height: 571px;
  }
}

/* .hero a {
  display: block;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
} */

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}

.hero h2 {
  color: #ebebee;
  /* margin: 15px 0 0 0; */
  font-size: 23.5px;
  font-weight: 600;
  text-align: center;
}

.text-lg-start {
  /* height: 40px; */
  width: 63%;
  background: rgb(245, 231, 231);
  margin-top: 20px;
}

.hero .btn-get-started {
  line-height: 0;
  transition: 0.5s;
  color: #333;
  box-shadow: 0px 5px 30px rgba(1, 187, 156, 0.4);
  width: 50%;
  height: 50px;
  margin-top: 3%;
  padding: 0 !important;
  position: relative;
}

@media(max-width:768px) {
  .hero .btn-get-started {
    line-height: 0;
    transition: 0.5s;
    color: #333;
    box-shadow: 0px 5px 30px rgba(1, 187, 156, 0.4);
    width: 60%;
    height: 50px;
    margin-top: 3%;
    padding: 0 !important;
    position: relative;
    margin-right: 40%;
  }
}

.hero .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  width: 80%;
  padding: 10px;
}

.hero .btn-get-started i {
  font-size: 18px;
  transition: 0.3s;
  width: 21%;
  background: #333;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.hero .hero-img {
  text-align: center;
}

.hero-banner {
  width: 90%;
}

/* Estilos para o botão branco */
.btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: white;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}


/* Adicione novos estilos para o botão preto */
.btn-container {
  justify-content: center;
  /* Centralizar os botões horizontalmente */
}

.btn-get-started-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: #333;
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-left: 48%;
  margin-top: 3%;
  height: 40px !important;
}

.btn-get-started-black:hover {
  color: #fff;
}

.btn-get-started-black i {
  margin-left: 4px;
  font-size: 18px;
}

.arrow-i:hover {
  color: #fff;
}

.hero-title-h1 {
  color: #fff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.705);
  font-size: 38px !important;
}

.hero-title-h2 {
  color: #fff !important;
  text-align: left !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.705);
}

.hero-title-h1-gestao {
  color: #e2e8e4 !important;
  font-size: 37px !important;
}

/* Demais estilos permanecem inalterados */

.text-center.text-lg-start {
  display: flex;
  flex-direction: column;
}


@media (max-width: 1368px) {
  .hero {
    /* background-attachment: fixed; */
    height: 80vh;
  }

  .hero h2 {
    color: #ebebee;
    /* margin: 15px 0 0 0; */
    font-size: 20px;
    font-weight: 600;
    text-align: center;
  }

  .system {
    color: #333;
  }


}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
    text-align: left;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero .hero-img img {
    width: 100%;
  }
}

@media (max-width: 414px) {
  .hero {
    width: 100%;
    height: 90vh;
    background: url(../images/site-novo/mobine.jpg) top center no-repeat;
    background-size: cover;
  }

}

@media (min-width: 1900px) {
  .hero {
    width: 100%;
    height: 84vh;
    background: url(../images/site-novo/ADAPTADAS.jpg) top center no-repeat;
    background-size: cover;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  background-color: #008d860a;
  padding: 40px;
}

.about h3 {
  font-size: 14px;
  font-weight: 700;
  color: #008d85;
  text-transform: uppercase;
}

.about h2 {
  font-size: 24px;
  font-weight: 700;
  color: #008d85;
}

.about p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #008d85;
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.about .btn-read-more span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .btn-read-more:hover i {
  transform: translateX(5px);
}

/* .pract-banner {
  width: 100%;
  height: 100vh;
  background: url(../images/site-novo/img_bg_1.webp) top center no-repeat;
  background-size: cover;
} */

/*--------------------------------------------------------------
# Sistemas
--------------------------------------------------------------*/
.values .box {
  padding: 30px;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

@media(max-width:768px) {
  .values .box {
    padding: 30px;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
    text-align: center;
    transition: 0.3s;
    height: 100%;
    width: 384px;
  }
}

.values .box img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .box h3 {
  font-size: 24px;
  color: #333;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.values .box:hover img {
  transform: scale(1);
}

.system {
  color: #333;
}

.desc-sys {
  color: #848484;
}


/*--------------------------------------------------------------
# SGMAT
--------------------------------------------------------------*/

.features {
  background-color: #e8e8e8;
}

.features-agro {
  background-color: #fff !important;
}

.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  margin-left: 2% !important;

}

.features .feature-box i {
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 38px;
  border-radius: 3px;
  transition: 0.3s;
  color: #008d85;
}

/* .features .feature-box:hover i {
  background: #008d85;
  color: #fff;
} */

/* .features .feture-tabs {
  margin-top: 120px;
} */

.features .feture-tabs h3 {
  color: #333;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

.feature-sgmat {
  /* background: linear-gradient(0deg, #0cb1a9 25%, #06716a 100%); */
  background-image: url(../images/site-novo/divisor-melhore.svg);
}

.features-software {
  background: url(../images/site-novo/sgmat_banner.webp) top center no-repeat;
  width: 100%;
  height: 110vh;
  background-size: cover;

}

@media(max-width: 414px) {
  .features-software {
    background: url(../images/site-novo/banner-sgmat-mobile.webp) top center no-repeat;
    width: 100%;
    height: 110vh;
    background-size: cover;

  }

  .resolva {
    margin-top: -121px !important;
    color: #fff !important;
  }

  .text-sgmat {
    color: #fff !important;
  }

  .sgmat-text-mb {
    color: #333 !important;
  }

  .tx-sgmat {
    color: #00cfc3 !important;
  }

  .eleve {
    margin-top: -121px;
  }

  .img-sgmob {
    margin-left: 5%;
  }

  .footer-links {
    margin-right: auto;
  }

}


.img-notebook {
  width: 100%;
  height: 100%;
}

.sgmat {
  text-align: center;
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
}

.btn-sgmob {
  background-color: #008d85;
  color: #fff;
  border: none;
  width: 35%;
  height: 40px;
  margin-top: 7%;

}

.sgmob-background {
  background-color: #e8e8e8 !important;
}

.img-sgmob {
  width: 88%;
  height: 92%;
}

.p-soluctions {
  font-size: 38px !important;
  /* font-weight: 100 !important; */
  font-family: Arial, Helvetica, sans-serif !important;
}

.p-soluctions-sub {
  font-size: 38px !important;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif !important;
}


@media (max-width: 768px) {
  .features .feture-tabs h3 {
    font-size: 28px;
  }
}

.features .feture-tabs .nav-pills {
  border-bottom: 1px solid #eee;
}

.features .feture-tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  color: #012970;
  padding: 12px 0;
  margin-right: 25px;
  margin-bottom: -2px;
  border-radius: 0;
}

.features .feture-tabs .nav-link.active {
  color: #4154f1;
  border-bottom: 3px solid #4154f1;
}

.features .feture-tabs .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 100;
  color: #333;
}

.features .feture-tabs .tab-content i {
  font-size: 24px;
  line-height: 0;
  margin-right: 8px;
  color: #e5300d;
}

.features .feature-icons {
  margin-top: 120px;
}

.features .feature-icons h3 {
  color: #333;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.icons-color {
  color: #008d85 !important;
}

.image-icons {
  width: 40px;
  height: 40px;
}

.div-image-icons {
  margin-left: 4%;
}

@media (max-width: 768px) {
  .features .feature-icons h3 {
    font-size: 28px;
  }
}

.features .feature-icons .content .icon-box {
  display: flex;
}

.features .feature-icons .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #fff;
}

.features .feature-icons .content .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: #0245bc;
  margin-right: 15px;
}

.features .feature-icons .content .icon-box p {
  font-size: 15px;
  color: #ffffffd6;
}

.myrow {
  padding: inherit !important;
  margin-top: 5% !important;
}

.icon-cian {
  color: #008d85 !important;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services {
  background-color: #333;
}

.services .service-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-box .icon {
  font-size: 36px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-box h3 {
  color: #fff;
  font-weight: 700;
}

.services p {
  color: #fff;
}

.services .service-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-box.blue {
  border-bottom: 3px solid #05665f;
}

.services .service-box.blue .icon {
  color: #05665f;
  background: #05666028;
}

.services .service-box.blue .read-more {
  color: #05665f;
}

.services .service-box.blue:hover {
  background: #05665f;
}

.services .service-box.orange {
  border-bottom: 3px solid #008d85;
}

.services .service-box.orange .icon {
  color: #008d85;
  background: #05666028;
}

.services .service-box.orange .read-more {
  color: #008d85;
}

.services .service-box.orange:hover {
  background: #008d85;
}

.services .service-box.green {
  border-bottom: 3px solid #00b7ae;
}

.services .service-box.green .icon {
  color: #00b7ae;
  background: #05666028;
}

.services .service-box.green .read-more {
  color: #00b7ae;
}

.services .service-box.green:hover {
  background: #00b7ae;
}

.services .service-box:hover h3,
.services .service-box:hover p,
.services .service-box:hover .read-more {
  color: #fff;
}

.services .service-box:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.icon {
  font-size: 36px;
  padding: 28px 12px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
  background-color: #008d85;
  color: #fff;
}

.gy-two {
  margin-top: 2px !important;
}

.team {

  background: url(../images/site-novo/modern-green.webp) top center no-repeat;
  width: 100%;
  height: 960px;
  background-size: cover;
}

@media (min-width: 1900px) {
  .team {

    background: url(../images/site-novo/modern.webp) top center no-repeat;
    width: 100%;
    height: 978px;
    background-size: cover;
  }
}

.team .member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 94%;
  width: 82%;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../images/site-novo/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.team .member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.team .member .social a {
  transition: color 0.3s;
  color: rgba(1, 41, 112, 0.5);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team .member .social a:hover {
  color: rgba(1, 41, 112, 0.8);
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 20px 20px 20px 20px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #333;
}

.team .member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: #5e5e5e;
}

.team .member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.team .member:hover .social {
  right: 8px;
  opacity: 1;
}

@media (max-width: 1800px) {
  .gy-two {
    margin-top: 53px !important;
    margin-left: calc(6% - 4px) !important;
  }

  .gy-one {
    margin-left: calc(6% - 4px) !important;

  }

  .team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 1px;
    line-height: 20px;
    color: #5e5e5e;
  }
}

@media (max-width: 1366px) {
  .gy-two {
    margin-top: 53px !important;
    margin-left: calc(4% - 4px) !important;
  }

  .gy-one {
    margin-left: calc(4% - 4px) !important;

  }

  .team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 1px;
    line-height: 20px;
    color: #5e5e5e;
  }

}

@media (max-width: 1920px) {
  .gy-two {
    margin-top: 53px !important;
    margin-left: calc(4% - 4px) !important;
  }

  .gy-one {
    margin-left: calc(4% - 4px) !important;

  }

  .team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 1px;
    line-height: 20px;
    color: #5e5e5e;
  }

}

.ctn-align {
  display: inline;
}


/*--------------------------------------------------------------
# Depoimento
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 0 5px rgba(24, 29, 37, 0.11);
  position: relative;
  background: #fff;
  border-radius: 15px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 35px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #0566601a;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 30px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #05665f;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #05665f;
}


/*--------------------------------------------------------------
# Contato
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  background: #fafbff;
  padding: 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: #fafbff;
  padding: 30px;
  height: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #f6f9ff;
  padding: 0 0 30px 0;
  font-size: 14px;
}

.footer-p-news {
  color: #efefef;
  font-size: 18px;
}

.footer .footer-newsletter {
  padding: 50px 0;
  background: #333;
  border-top: 1px solid #e1ecff;
}

.footer .footer-newsletter h4 {
  font-size: 32px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.footer .footer-newsletter form {
  margin-top: 20px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e1ecff;
}

.footer .footer-newsletter form input[type=text] {
  border: 0;
  padding: 8px;
  width: 100%;
  border-radius: 4px;
  height: 44px;
}

.footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 8px;
  width: calc(100% - 140px);
  border-radius: 4px;
  height: 44px;
}

.footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: 5px;
  margin-bottom: 6px;
  background: #008d85;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter form input[type=submit]:hover {
  background: #008d86e3;
}

.footer .footer-top {
  background: white;
  background-size: contain;
  border-top: 1px solid #e1ecff;
  border-bottom: 1px solid #e1ecff;
  padding: 60px 0 30px 0;
}

.icons-footer {
  color: #008d85;
}

.myform {
  background-color: #333 !important;
  border: none !important;
}

.background-input {
  background-color: #5c5c5c;
  color: #fff;
  font-size: 16px;
}

.background-input::placeholder {
  color: #fff;
}

@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}

.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: 'Montserrat', sans-serif;
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
}

.footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
  color: #012970;
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-top .footer-links {
  margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #d0d4fc;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-top .footer-links ul a {
  color: #333;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
  color: #008d85;
}

.footer .footer-top .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #012970;
}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

.trace {
  color: #008d85 !important;
}

@media (max-width: 776px) {
  .footer-info {
    text-align: start !important;
  }
}

/*--------------------------------------------------------------
# Agropecuria
--------------------------------------------------------------*/

.agro {
  background: url(../images/site-novo/banner-agro-bvx.jpg) bottom center no-repeat;
  background-size: 100%;
}

@media(min-width:1366px) {
  .agro {
    height: 80vh;
  }
}

.agro h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}

.agro h2 {
  color: #ebebee;
  /* margin: 15px 0 0 0; */
  font-size: 60px;
  font-weight: bold;
  /* text-align: center; */
}

.agro .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.agro .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.agro .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.agro .btn-get-started:hover i {
  transform: translateX(5px);
}

.agro .hero-img {
  text-align: center;
}

.agro-banner {
  width: 90%;
}

.desc-agro {
  font-size: 28px !important;
  font-weight: 300 !important;
  margin-left: 3px;
}

.title-agro {
  width: 100% !important;
}

.mytable {
  font-size: 19px !important;
  text-align: center !important;
}

.mytable th {
  color: #333 !important;
}

.left-tab {
  text-align: start !important;
}


@media (max-width: 1368px) {

  .agro h2 {
    color: #ebebee;
    /* margin: 15px 0 0 0; */
    font-size: 40px;
    font-weight: 700;
    text-align: start;
  }

  .system {
    color: #333;
  }

  .title-agro {
    width: 100% !important;
  }


}

@media (max-width: 991px) {
  .agro {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .agro .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .agro .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .agro {
    text-align: center;
  }

  .agro h1 {
    font-size: 32px;
  }

  .agro h2 {
    font-size: 20px;
  }

  .agro .agro-img img {
    width: 100%;
  }
}

.content-informs h3 {
  color: #333 !important;
}

.app-sgmob {
  margin-right: auto !important;
}


/*--------------------------------------------------------------
# Restaurantes
--------------------------------------------------------------*/

.restaurante {
  background: url(../images/site-novo/food-restaurante.webp) bottom center no-repeat;
  background-size: 100%;
  height: 80vh;
}

@media (max-width: 700px) {
  .restaurante {
    width: 100%;
    height: 90vh;
    background: url(../images/site-novo/food-restaurante-mobile.webp) top center no-repeat;
    background-size: cover;
    height: 80vh;
  }

}

.restaurante h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}

.restaurante h2 {
  color: #ebebee;
  /* margin: 15px 0 0 0; */
  font-size: 60px;
  font-weight: bold;
  /* text-align: center; */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.705);
}

.restaurante .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #333;
  background: #fff;
  box-shadow: 0px 5px 30px rgba(0, 1, 3, 0.4);
}

.restaurante .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.restaurante .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.restaurante .btn-get-started:hover i {
  transform: translateX(5px);
}

.restaurante .hero-img {
  text-align: center;
}

.restaurante-banner {
  width: 90%;
}

.desc-agro {
  font-size: 20px !important;
  font-weight: 300 !important;
}

.title-agro {
  width: 100% !important;
}


@media (max-width: 1368px) {

  .restaurante h2 {
    color: #ebebee;
    /* margin: 15px 0 0 0; */
    font-size: 40px;
    font-weight: 700;
    text-align: start;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.705);
  }

  .system {
    color: #333;
  }

  .title-agro {
    width: 100% !important;
  }


}

/* @media (max-width: 991px) {
  .restaurante {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .restaurante .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .restaurante .hero-img img {
    width: 80%;
  }
} */

@media (max-width: 768px) {
  .restaurante {
    text-align: center;
  }

  .restaurante h1 {
    font-size: 32px;
  }

  .restaurante h2 {
    font-size: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.705);
  }

  .restaurante .agro-img img {
    width: 100%;
  }
}

.content-informs h3 {
  color: #333 !important;
}

/*--------------------------------------------------------------
# Loja de Roupas
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600&display=swap');

.roupas {
  width: 100%;
  height: 80vh;
  background: url(../images/site-novo/teste-fashion.jpg) top center no-repeat;
  background-size: cover;
}

.roupas h1 {
  color: #ebebee;
  font-size: 55px;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 52px;
  text-align: left;
}

.roupas h2 {
  color: #ebebee;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 55px;
  font-weight: 500;
  letter-spacing: 1px;
}

.roupas .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #333;
  background: #fff;
  box-shadow: 0px 5px 30px rgba(0, 1, 3, 0.4);
}

.roupas .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.roupas .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.roupas .btn-get-started:hover i {
  transform: translateX(5px);
}

.roupas .hero-img {
  text-align: center;
}

.roupas-banner {
  width: 90%;
}

.etiqueta {
  width: 80%;
}

.desc-agro {
  font-size: 20px !important;
  font-weight: 300 !important;
}

.title-agro {
  width: 100% !important;
}


@media (max-width: 1368px) {
  
  .roupas h2 {
    color: #ebebee;
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 55px;
    font-weight: 500;
    text-align: start;
    letter-spacing: 1px;
    line-height: 52px;
  }

  .system {
    color: #333;
  }

  .title-agro {
    width: 100% !important;
  }


}

@media (max-width: 991px) {
  .roupas {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .roupas .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .roupas .hero-img img {
    width: 80%;
  }
}

@media (max-width: 900px) {

  .roupas {
    width: 100%;
    height: 80vh;
    background: url(../images/site-novo/bn-topo.png) top center no-repeat;
    background-size: cover;
    text-align: center;
  }

  .roupas h1 {
    font-size: 32px;
  }

  .roupas h2 {
    font-size: 27px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.705);
    line-height: 25px;
  }

  .roupas .agro-img img {
    width: 100%;
  }

  .etiqueta {
    width: 93%;
  }
}

.content-informs h3 {
  color: #333 !important;
}

/*--------------------------------------------------------------
# Comercio em Geral
--------------------------------------------------------------*/

.comercio {
  width: 100%;
  height: 80vh;
  background: url(../images/site-novo/banner-comercio.webp) top center no-repeat;
  background-size: cover;
}

.comercio h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}

.comercio h2 {
  color: #ebebee;
  /* margin: 15px 0 0 0; */
  font-size: 60px;
  font-weight: bold;
  /* text-align: center; */
}

.comercio .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #333;
  background: #fff;
  box-shadow: 0px 5px 30px rgba(0, 1, 3, 0.4);
}

.comercio .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.comercio .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.comercio .btn-get-started:hover i {
  transform: translateX(5px);
}

.comercio .hero-img {
  text-align: center;
}

.comercio-banner {
  width: 90%;
}

@media(max-width: 1400px) {
  .faleconosco {
    margin-right: 79% !important;
  }
}

@media(max-width: 700px) {
  .faleconosco {
    margin-right: 42% !important;
  }
}

.desc-agro {
  font-size: 20px !important;
  font-weight: 300 !important;
}

.title-agro {
  width: 100% !important;
}


@media (min-width: 1024px) {
  .comercio {
    background-attachment: fixed;
  }
}

@media (max-width: 1368px) {
  .comercio {
    background-attachment: fixed;
  }

  .comercio h2 {
    color: #ebebee;
    /* margin: 15px 0 0 0; */
    font-size: 40px;
    font-weight: 700;
    text-align: start;
  }

  .system {
    color: #333;
  }

  .title-agro {
    width: 100% !important;
  }


}

@media (max-width: 991px) {
  .comercio {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .comercio .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .comercio .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .comercio {
    text-align: center;
  }

  .comercio h1 {
    font-size: 32px;
  }

  .comercio h2 {
    font-size: 20px;
  }

  .comercio .agro-img img {
    width: 100%;
  }
}

@media(max-width: 500px) {
  .comercio h2 {
    font-size: 24px;
  }
}

.content-informs h3 {
  color: #333 !important;
}

.largura-col {
  justify-content: center !important;

}

/* TABELAS DOS SEGUIMENTOS */

.estoque {
  text-align: left;
  font-weight: 600;
  font-size: 20px;
  margin-left: 20px;
}

/* CONTATO */


.contato {
  width: 100%;
  height: 100vh;
  background: url(../images/site-novo/img_bg_6.webp) top center no-repeat;
  background-size: cover;
}

.contato h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}

.contato h2 {
  color: #ebebee;
  /* margin: 15px 0 0 0; */
  font-size: 60px;
  font-weight: bold;
  text-align: center;
}

.contato .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.contato .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.contato .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.contato .btn-get-started:hover i {
  transform: translateX(5px);
}

.contato .contato-img {
  text-align: center;
}

.contato-banner {
  width: 90%;
}

.desc-agro {
  font-size: 20px !important;
  font-weight: 300 !important;
}

.title-agro {
  width: 100% !important;
}


/* @media (min-width: 1024px) {
  .agro {
    background-attachment: fixed;
  }
} */

@media (max-width: 1368px) {
  /* .agro {
    background-attachment: fixed;
  } */

  .agro h2 {
    color: #ebebee;
    /* margin: 15px 0 0 0; */
    font-size: 40px;
    font-weight: 700;
    text-align: start;
  }

  .system {
    color: #333;
  }

  .title-agro {
    width: 100% !important;
  }


}

@media (max-width: 991px) {
  .contato {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .contato .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .contato .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .contato {
    text-align: center;
  }

  .contato h1 {
    font-size: 32px;
  }

  .contato h2 {
    font-size: 20px;
  }

  .contato .contato-img img {
    width: 100%;
  }

  .gtco-section2 {
    padding: 3em 0;
  }
}


/* SOBRE A EMPRESA */

.sobre {
  width: 100%;
  height: 80vh;
  background: url(../images/img_bg_5.jpg) top center no-repeat;
  background-size: cover;
}

.sobre h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}

.sobre h2 {
  color: #ebebee;
  /* margin: 15px 0 0 0; */
  font-size: 60px;
  font-weight: bold;
  text-align: center;
}

.sobre .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.sobre .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.sobre .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.sobre .btn-get-started:hover i {
  transform: translateX(5px);
}

.sobre .sobre-img {
  text-align: center;
}

.sobre-banner {
  width: 90%;
}

.h2-sobre-ep {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.705);
}

.desc-agro {
  font-size: 20px !important;
  font-weight: 300 !important;
}

.title-agro {
  width: 100% !important;
}


@media (min-width: 1024px) {
  .sobre {
    background-attachment: fixed;
  }
}

@media (max-width: 1368px) {
  .sobre {
    background-attachment: fixed;
  }

  .sobre h2 {
    color: #ebebee;
    /* margin: 15px 0 0 0; */
    font-size: 40px;
    font-weight: 700;
    text-align: center;
  }

  .system {
    color: #333;
  }

  .title-agro {
    width: 100% !important;
    text-align: center;
  }


}

@media (max-width: 991px) {
  .sobre {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .sobre .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .sobre .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .sobre {
    text-align: center;
  }

  .sobre h1 {
    font-size: 32px;
  }

  .sobre h2 {
    font-size: 20px;
  }

  .sobre .sobre-img img {
    width: 100%;
  }

  .gtco-section2 {
    padding: 3em 0;
  }
}

/* CSS DO SITE ANTERIOR DA BVX */

.gtco-section {
  padding: 2em 0;
  clear: both;
}

.gtco-section2 {
  padding: 7em 0;
  clear: both;
  background: #efefef;
}

.gtco-container {
  max-width: 1140px;
  position: relative;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.js .animate-box {
  opacity: 0;
}

#gtco-subscribe .form-control {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px !important;
  width: 100%;
  border: 2px solid transparent !important;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#gtco-subscribe .form-control:focus {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
}

#gtco-subscribe .form-control::-webkit-input-placeholder {
  color: #fff;
}

#gtco-subscribe .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

#gtco-subscribe .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}

#gtco-subscribe .form-control:-ms-input-placeholder {
  color: #fff;
}

#gtco-subscribe .form-inline .form-group .form-control {
  width: 100%;
}

.form-control {
  box-shadow: none;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.486);
  height: 54px;
  font-size: 18px;
  font-weight: 300;
}

.form-control:active,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #05665f;
}

#gtco-subscribe .form-inline .form-group {
  width: 100% !important;
  margin-bottom: 10px;
}

#gtco-subscribe .form-inline .form-group .form-control {
  width: 100%;
}

.gtco-contact-info {
  margin-bottom: 30px;
  float: right;
  width: 73%;
  position: relative;
}

.gtco-contact-info ul {
  padding: 0;
  margin: 0;
}

.gtco-contact-info ul li {
  /* padding: 0 0 0 50px; */
  margin: 0 0 30px 0;
  list-style: none;
  position: relative;
}

.gtco-contact-info a {
  color: #05665f !important;
}

.gtco-contact-info i {
  color: #cccccc !important;
}

.title-right {
  margin-bottom: 5%;
}

.assunto,
.mensagem,
.nomemail {
  margin-top: 4%;
}

.btn-primary {
  background: #05665f;
  color: #fff;
  border: 2px solid #05665f !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: #05665f !important;
  border-color: #05665f !important;
}

.btn-primary.btn-outline {
  background: transparent;
  color: #05665f;
  border: 2px solid #05665f;
}

.btn-primary.btn-outline:hover,
.btn-primary.btn-outline:focus,
.btn-primary.btn-outline:active {
  background: #05665f;
  color: #fff;
}

.msn {
  height: 129px !important;
}

.recaptcha {
  margin-top: 4% !important;
}

.feature-left {
  float: left;
  width: 100%;
  margin-bottom: 30px;
  margin-left: 110px;
  position: relative;
}

.a {
  margin-left: 130px;
}

.feature-left1 {
  float: left;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

.feature-left:last-child {
  margin-bottom: 0;
}

.feature-left .icone {
  float: left;
  margin-right: 9%;
  display: table;
  text-align: center;
}

.feature-left1 .icone {
  float: left;
  margin-right: 5%;
  display: table;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .feature-left .icone {
    margin-right: 5%;
  }
}

.feature-left .icone i {
  display: table-cell;
  vertical-align: middle;
  font-size: 30px;
  color: #05665f;
  line-height: 20px;
}

.feature-left1 .icone i {
  display: table-cell;
  vertical-align: middle;
  font-size: 30px;
  color: #008d85;
}

.feature-left .feature-copy {
  float: left;
  width: 80%;
}


@media screen and (max-width: 768px) {
  .feature-left .feature-copy {
    width: 70%;
    float: left;
  }
}

@media screen and (min-width: 375px) {
  .feature-left {
    margin-left: 0px;
  }

  .feature-left .feature-copy {
    width: 70%;
    float: left;
  }
}


@media screen and (max-width: 768px) {
  .feature-left1 .feature-copy {
    width: 70%;
    float: left;
  }
}

.feature-left .feature-copy h3 {
  line-height: 1.3;
  font-size: 18px;
  color: #5d5d5d;
  margin-bottom: -1px;
}

.feature-left1 .feature-copy h3 {
  font-size: 18px;
  color: #5d5d5d;
  margin-bottom: 10px;
}

.gtco-heading {
  margin-bottom: 5em;
}

.gtco-heading.gtco-heading-sm {
  margin-bottom: 2em;
}

.gtco-heading h2 {
  font-size: 36px;
  margin-bottom: 0px;
  line-height: 1.5;
  font-weight: bold;
  color: #000;
}

.gtco-heading p {
  font-size: 22px;
  line-height: 1.5;
  color: #333;
}


#gtco-features-2 {
  background: #efefef;
  width: 100%;
}

.gtco-video {
  height: 450px;
  overflow: hidden;
  margin-bottom: 30px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
}

.gtco-bg {
  background-position: center center;
  width: 100%;
  float: left;
  background-size: cover;
  background-repeat: no-repeat;
}

.temos {
  padding-top: 4% !important;
}

.img-infm {
  margin-left: 8% !important;
}

/* LOJA */

.loja {
  width: 100%;
  height: 100vh;
  background: url(../images/site-novo/loja.webp) top center no-repeat;
  background-size: cover;
}

.loja h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}

.loja h2 {
  color: #ebebee;
  /* margin: 15px 0 0 0; */
  font-size: 60px;
  font-weight: bold;
  text-align: center;
}

.loja .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.loja .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.loja .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.loja .btn-get-started:hover i {
  transform: translateX(5px);
}

.loja .sobre-img {
  text-align: center;
}

.loja-banner {
  width: 90%;
}

.desc-agro {
  font-size: 20px !important;
  font-weight: 300 !important;
}

.title-agro {
  width: 100% !important;
}


@media (min-width: 1024px) {
  .loja {
    background-attachment: fixed;
  }
}

@media (max-width: 1368px) {
  .loja {
    background-attachment: fixed;
  }

  .loja h2 {
    color: #ebebee;
    /* margin: 15px 0 0 0; */
    font-size: 40px;
    font-weight: 700;
    text-align: center;
  }

}

@media (max-width: 991px) {
  .loja {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .loja .loja-img {
    text-align: center;
    margin-top: 80px;
  }

  .loja .loja-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .loja {
    text-align: center;
  }

  .loja h1 {
    font-size: 32px;
  }

  .loja h2 {
    font-size: 20px;
  }

  .loja .loja-img img {
    width: 100%;
  }

  .gtco-section2 {
    padding: 3em 0;
  }
}

.gtco-bg .overlay {
  position: absolute;
  top: 0px;
  left: 51%;
  right: 13px;
  bottom: 6%;
  background: rgba(0, 0, 0, 0.31);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 1.0s;
  border-radius: 7px;
}

.gtco-video a i {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  font-size: 40px;
  color: #05665f;
}

.gtco-video1 a i {
  color: #008d85;
}

.gtco-bg:hover .overlay {
  background: rgba(35, 66, 63, 0.7);
}

.gtco-video:hover a {
  /* position: relative; */
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.gtco-video.gtco-video-sm {
  height: 250px;
}

.gtco-video a {
  z-index: 1001;
  position: absolute;
  top: 50%;
  margin-top: -45px;
  margin-left: 20%;
  width: 90px;
  height: 90px;
  display: table;
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.icon-loja {
  font-size: 36px;
  padding: 4px 27px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: block;
  line-height: 0;
  transition: 0.3s;
  color: #05665f;
  float: left;

}

.feature-left p {
  color: #828282;
}

/*--------------------------------------------------------------
# Certificado Digital
--------------------------------------------------------------*/

.certificado-digital {
  width: 100%;
  height: 110vh;
  background: url(../images/site-novo/banner-certificado.webp) top center no-repeat;
  background-size: cover;
}

.certificado-digital h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}

.certificado-digital h2 {
  color: #ebebee;
  /* margin: 15px 0 0 0; */
  font-size: 60px;
  font-weight: bold;
  /* text-align: center; */
}

.certificado-digital .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.certificado-digital .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.certificado-digital .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.certificado-digital .btn-get-started:hover i {
  transform: translateX(5px);
}

.certificado-digital .certificado-img {
  text-align: center;
}

.certificado-digital-banner {
  width: 90%;
}


@media (min-width: 1024px) {
  .certificado-digital {
    background-attachment: fixed;
  }
}

@media (max-width: 1368px) {
  .certificado-digital {
    background-attachment: fixed;
  }

  .certificado-digital h2 {
    color: #ebebee;
    /* margin: 15px 0 0 0; */
    font-size: 40px;
    font-weight: 700;
    text-align: start;
  }


}

@media (max-width: 991px) {
  .certificado-digital {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .certificado-digital .certificado-img {
    text-align: center;
    margin-top: 80px;
  }

  .certificado-digital .certificado-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .certificado-digital {
    text-align: center;
  }

  .certificado-digital h1 {
    font-size: 32px;
  }

  .certificado-digital h2 {
    font-size: 20px;
  }

  .certificado-digital .agro-img img {
    width: 100%;
  }
}

.banner-certificado {
  height: 314px !important;
  width: 943px !important;
  margin-left: -191px !important;
}

.quadrados {
  margin-left: 30px;
  margin-bottom: 50px;
  background-color: #e7e7e7;
  border-radius: 5px;
}

.cdigital {
  margin-top: 5% !important;
}

.vazio {
  margin-bottom: 5% !important;
}

.h8-title {
  font-weight: bold;
}

/* ADM */

.key-pass {
  color: #008d85 !important;
}

/*--------------------------------------------------------------
# Aplicativos
--------------------------------------------------------------*/

.aplicativos {
  width: 100%;
  height: 110vh;
  background: url(../images/site-novo/aplicativos.webp) top center no-repeat;
  background-size: cover;
}

.aplicativos h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}

.aplicativos h2 {
  color: #ebebee;
  /* margin: 15px 0 0 0; */
  font-size: 70px;
  font-weight: bold;
  /* text-align: center; */
}

.aplicativos .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.aplicativos .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.aplicativos .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.aplicativos .btn-get-started:hover i {
  transform: translateX(5px);
}

.aplicativos .aplicativos-img {
  text-align: center;
}

.aplicativos-banner {
  width: 90%;
}



@media (min-width: 1024px) {
  .aplicativos {
    background-attachment: fixed;
  }
}

@media (max-width: 1368px) {
  .aplicativos {
    background-attachment: fixed;
  }

  .aplicativos h2 {
    color: #ebebee;
    /* margin: 15px 0 0 0; */
    font-size: 40px;
    font-weight: 700;
    text-align: start;
  }

}

@media (max-width: 991px) {
  .aplicativos {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .aplicativos .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .aplicativos .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .aplicativos {
    text-align: center;
  }

  .aplicativos h1 {
    font-size: 32px;
  }

  .aplicativos h2 {
    font-size: 20px;
  }

  .aplicativos .aplicativos-img img {
    width: 100%;
  }
}


.apps-bvx {
  text-align: center !important;
}

.apps-p {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #ebebee !important;
}

.app2 {
  width: 100%;
  height: 80vh;
  background: url(../images/site-novo/img_bg_3.webp) top center no-repeat;
  background-size: cover;
}

.app2 h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}

.app2 h2 {
  color: #ebebee;
  /* margin: 15px 0 0 0; */
  font-size: 60px;
  font-weight: bold;
  /* text-align: center; */
}

.app2 .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.app2 .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.app2 .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.app2 .btn-get-started:hover i {
  transform: translateX(5px);
}

.app2 .app2-img {
  text-align: center;
}

.app2-banner {
  width: 90%;
}



@media (min-width: 1024px) {
  .app2 {
    background-attachment: fixed;
  }
}

@media (max-width: 1368px) {
  .app2 {
    background-attachment: fixed;
  }

  .app2 h2 {
    color: #ebebee;
    /* margin: 15px 0 0 0; */
    font-size: 40px;
    font-weight: 700;
    text-align: start;
  }

}

@media (max-width: 991px) {
  .app2 {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .app2 .app2-img {
    text-align: center;
    margin-top: 80px;
  }

  .app2 .app2-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .app2 {
    text-align: center;
  }

  .app2 h1 {
    font-size: 32px;
  }

  .app2 h2 {
    font-size: 20px;
  }

  .app2 .app2-img img {
    width: 100%;
  }
}

.divs-apps {
  margin-top: 8%;
  margin-bottom: 8%;
}

.icon-app {
  font-size: 36px;
  padding: 28px 26px;
  border-radius: 100%;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
  background-color: #efefef;
  color: #05665f;

}

.feature-center {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  float: left;
  width: 100%;
  margin-bottom: 40px;
}

.feature-center h3 {
  text-transform: uppercase;
  font-size: 18px;
  color: #5d5d5d;
}

.feature-center p,
.feature-center h3 {
  margin-bottom: 30px;
  color: #828282;
}

.app-link {
  color: #05665f;
}

/*--------------------------------------------------------------
# Sites
--------------------------------------------------------------*/

.sites {
  width: 100%;
  height: 110vh;
  background: url(../images/site-novo/sites.webp) top center no-repeat;
  background-size: cover;
}

.sites h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}

.sites h2 {
  color: #ebebee;
  /* margin: 15px 0 0 0; */
  font-size: 70px;
  font-weight: bold;
  /* text-align: center; */
}

.sites .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.sites .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.sites .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.sites .btn-get-started:hover i {
  transform: translateX(5px);
}

.sites .sites-img {
  text-align: center;
}

.sites-banner {
  width: 90%;
}


@media (min-width: 1024px) {
  .sites {
    background-attachment: fixed;
  }
}

@media (max-width: 1368px) {
  .sites {
    background-attachment: fixed;
  }

  .sites h2 {
    color: #ebebee;
    /* margin: 15px 0 0 0; */
    font-size: 40px;
    font-weight: 700;
    text-align: start;
  }

}

@media (max-width: 991px) {
  .sites {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .sites .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .sites .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .sites {
    text-align: center;
  }

  .sites h1 {
    font-size: 32px;
  }

  .sites h2 {
    font-size: 20px;
  }

  .sites .sites-img img {
    width: 100%;
  }
}

.mywebsite {
  margin-top: 8% !important;
  margin-bottom: 4% !important;
}

/* ADM */

.adm-bvx {
  width: 100%;
  height: 80vh;
  background: url(../images/site-novo/banner-adm.webp) top center no-repeat;
  background-size: cover;
}

.adm-bvx h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}

.adm-bvx h2 {
  color: #ebebee;
  /* margin: 15px 0 0 0; */
  font-size: 60px;
  font-weight: bold;
  text-align: center;
}

.adm-bvx .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.adm-bvx .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.adm-bvx .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.adm-bvx .btn-get-started:hover i {
  transform: translateX(5px);
}

.adm-bvx .contato-img {
  text-align: center;
}

.adm-bvx-banner {
  width: 90%;
}


@media (min-width: 1024px) {
  .adm-bvx {
    background-attachment: fixed;
  }
}

@media (max-width: 1368px) {
  .adm-bvx {
    background-attachment: fixed;
  }

  .adm-bvx h2 {
    color: #ebebee;
    /* margin: 15px 0 0 0; */
    font-size: 40px;
    font-weight: 700;
    text-align: center;
  }


}

@media (max-width: 991px) {
  .adm-bvx {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .adm-bvx .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .adm-bvx .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .adm-bvx {
    text-align: center;
  }

  .adm-bvx h1 {
    font-size: 32px;
  }

  .adm-bvx h2 {
    font-size: 20px;
  }

  .adm-bvx .adm-bvx-img img {
    width: 100%;
  }

  .gtco-section2 {
    padding: 3em 0;
  }
}

.card-title {
  font-size: 16px;
  color: #05665f !important;
  font-weight: 700;
  text-align: center;
  margin-top: 8px !important;
}

.card {
  margin-top: 10px !important;
}

/* Blog */

.blog-bvx {
  width: 100%;
  height: 80vh;
  background: url(../images/site-novo/banner-blog.webp) top center no-repeat;
  background-size: cover;
}

.blog-bvx h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}

.blog-bvx h2 {
  color: #ebebee;
  /* margin: 15px 0 0 0; */
  font-size: 60px;
  font-weight: bold;
  text-align: center;
}

.blog-bvx .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.blog-bvx .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.blog-bvx .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.blog-bvx .btn-get-started:hover i {
  transform: translateX(5px);
}

.blog-bvx .contato-img {
  text-align: center;
}

.blog-bvx-banner {
  width: 90%;
}


@media (min-width: 1024px) {
  .blog-bvx {
    background-attachment: fixed;
  }
}

@media (max-width: 1368px) {
  .blog-bvx {
    background-attachment: fixed;
  }

  .blog-bvx h2 {
    color: #ebebee;
    /* margin: 15px 0 0 0; */
    font-size: 40px;
    font-weight: 700;
    text-align: center;
  }


}

@media (max-width: 991px) {
  .blog-bvx {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .blog-bvx .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .blog-bvx .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .blog-bvx {
    text-align: center;
  }

  .blog-bvx h1 {
    font-size: 32px;
  }

  .blog-bvx h2 {
    font-size: 20px;
  }

  .blog-bvx .blog-bvx-img img {
    width: 100%;
  }

  .gtco-section2 {
    padding: 3em 0;
  }
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  /* background-color: #0a6863; */
  /* background: url(../images/site-novo/testee.webp) top center no-repeat; */
  width: 100%;
  /* height: 650px; */
  background-size: cover;
}

/* @media(min-width: 1900px) {
  .faq {
    height: 700px;
  }
}

@media(min-width: 400px) {
  .faq {
    height: 750px;
  }
} */

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 15px 20px 0;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: #444444;
  text-align: left;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background: none;
  color: #008d85;
  border-bottom: 0;
}

.accordion-body {
  padding-left: 10px !important;
  border: 0;
}

.accordion-item {
  /* border-radius: 8px !important; */
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing {
  background-color: #e8e8e8;
  /* background-image: url('../images/site-novo/bvx-divisor-grama.png'); */

}

.pricing .box {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 4px;
  position: relative;
  /* overflow: hidden;
  transition: 0.3s; */
}

/* .pricing .box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
} */

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: #444444;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing img {
  padding: 30px 40px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 3px;
  color: #000000;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #939393;
}

.pricing .btn-buy:hover {
  background: #d57e0a;
  color: #fff;
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #4154f1;
  color: #fff;
}

.dropdown-menu {
  max-height: 500px;
  width: 300px !important;
  text-align: left;
}

.mydrops {
  max-height: 500px;
  width: 700px !important;
  text-align: center;
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  margin: -30px -30px 15px -30px;
  position: relative;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-box .post-date {
  font-size: 16px;
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
  display: block;
  margin-bottom: 10px;
}

.recent-blog-posts .post-box .post-title {
  font-size: 24px;
  color: #008d85;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  transition: 0.3s;
}

.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}

.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
  color: #008d85;
}

.recent-blog-posts .post-box:hover .post-img img {
  /* transform: rotate(6deg) scale(1.2); */
  transform: scale(1.02);
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 509px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #008d85;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #008d86ee;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #4084fd;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-icon {
  color: #008d85 !important;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: left;
  text-align-last: left;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #05665f;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #056660ec;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #012970;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #0d64fd;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #013289;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #4154f1;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #012970;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(1, 41, 112, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #4154f1;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #012970;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #013ca3;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #a0aaf8;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #a0aaf8;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #012970;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #013289;
}

.blog .blog-pagination {
  color: #024ed5;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #012970;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #4154f1;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #008d85;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #008d85;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #008d86ec;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #008d85;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #008d86ec;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #008d85;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #008d86ec;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #008d85;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #d7e6ff;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #008d85;
  background: #008d85;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #008d86b7;
  font-size: 14px;
}

.pagination.pagination-lg .page-item.active .page-link {
  background-color: #05665f;
  color: #fff;
}

.pagination.pagination-lg .page-item:not(.active) .page-link {
  background-color: #fff;
  color: #05665f;
}

/* MODAL ENTRADA */

.modal {
  border-radius: 7px;
  overflow: hidden;
  background-color: transparent;
}

.modal .logo a img {
  width: 30px;
}

.modal .modal-content {
  background-color: transparent;
  border: none;
  border-radius: 7px;
}

.modal .modal-content .modal-body {
  /* border-radius: 7px; */
  background-color: #efefef;
  padding-left: 0px;
  padding-right: 0px;
  /* -webkit-box-shadow: 0 10px 50px -10px rgba(0, 0, 0, 0.9); */
  /* box-shadow: 0 10px 50px -10px rgba(0, 0, 0, 0.9); */
  overflow-y: auto;
}

.modal .modal-content .modal-body h2 {
  font-size: 18px;
}

.modal .modal-content .modal-body p {
  color: #777;
  font-size: 14px;
}

.modal .modal-content .modal-body h3 {
  color: #fff;
  font-size: 22px;
}

.modal .modal-content .modal-body .close-btn {
  color: #000;
}

.modal .modal-content .modal-body .promo-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

@media(max-width: 480px) {
  .modal .modal-content .modal-body .promo-img {
    flex: 0;
  }

  .bg-image {
    display: none;
  }

}


.modal .cancel {
  color: gray;
  font-size: 14px;
}

.modal .btn-primary {
  padding-top: 10px;
  padding-bottom: 10px;
}

.form-control {
  border: transparent;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  border: none;
}

.form-control:active,
.form-control:focus,
.form-control:hover {
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}

.btn {
  border-radius: 4px;
  border: none;
}

.btn:active,
.btn:focus {
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.custom-select {
  border: none;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}

.custom-select:active,
.custom-select:focus,
.custom-select:hover {
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.custom-note {
  color: #999;
}

.custom-note a {
  color: #555;
  font-weight: 900 !important;
}

#entradaModal,
#saidaModal,
#exampleModal {
  overflow-y: auto;

}

.fechar {
  background-color: #e6e6e8 !important;
  border: none;
}

#NOME,
#EMAIL,
#TELEFONE {
  background-color: #5c5c5c !important;
  border: 1px solid #333 !important;
  color: #fff !important;
}

#NOME:focus {
  color: #fff !important;
}

#EMAIL:focus {
  color: #fff !important;
}

.entry__label,
.entry__error,
.sib-form-block__button,
.myconteudo {
  font-family: "Raleway", Arial, sans-serif !important;
}


/* .modal-header{
  border-radius: 5px !important;
} */

.highlight {
  animation: highlightAnimation 2s linear infinite;
  background-color: #008d85;
  color: white;
  display: inline;
}

@keyframes highlightAnimation {
  0% {
    background-color: transparent;
  }

  50% {
    background-color: #008d85;
  }

  100% {
    background-color: transparent;
  }
}


#entre-contato {
  font-size: 21px;
}

/* .sib-form {
  margin-top: -30px !important;
  background-attachment: fixed;
  font-size: 16px;
  font-family: Roboto, sans-serif;
  padding: 11px 12px 12px !important;
  margin: 0;
} */


.oportunity {
  font-size: 19px !important;
}

.modal-fullscreen .modal-header {
  border-radius: 0;
  background-color: #efefef;
}

/*---------------------------------------
  TIMELINE              
-----------------------------------------*/
.timeline-section {
  background-image: url('../images/site-novo/divisor-resolva.svg');
  /* background-color: #333; */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  /* height: 890px; */
  height: 767px;
  margin-top: -70px;
}

@media(max-width: 480px) {
  .timeline-section {
    background-image: url('../images/site-novo/divisor-resolva.svg');
    /* background-color: #333; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    height: 895px;
    margin-top: -70px;
  }
}

@media(min-width: 1920px) {
  .timeline-section {
    background-image: url('../images/site-novo/divisor-resolva.svg');
    /* background-color: #333; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    height: 1039px !important;
  }
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 10px;
  height: 87%;
  background-color: var(--primary-color);
  position: absolute;
  left: 47px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--secondary-color);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 25px;
  font-size: 20px;
  margin-top: -17px;
}

@media(max-width:768px) {
  .timeline-container .vertical-scrollable-timeline li p {
    font-size: 16px;
  }
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
  box-shadow: 0px 0px 7px 4px #00000038;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--white-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 10px;
  background-color: transparent;
  left: 47px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: var(--primary-color);
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: var(--primary-color);
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  /* background-image: linear-gradient(15deg, #0cb5ad 0%, #05665f 100%); */
  /* background-image: linear-gradient(15deg, #333333 0%, #333333 100%); */
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.title-how {
  color: #fff !important;
  font-weight: 700 !important;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.timeline-title {
  font-weight: 700;
  font-size: 38px;
}

@media(max-width: 768px) {
  .timeline-title {
    font-weight: 700;
    font-size: 19px;
  }
}

/*---------------------------------------
  TOPICS               
-----------------------------------------*/
.topics-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.topics-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 40px;
}

.topics-listing-page .site-header {
  padding-bottom: 65px;
}

/* .custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-topics-listing {
  height: inherit;
}

.custom-block-topics-listing .custom-block-image {
  width: 200px;
} */

.custom-block {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media(min-width: 1500px) {
  .custom-block {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.custom-block-content {
  padding: 20px;
}

.custom-block h5 {
  margin-top: 4%;
  margin-left: 7%;
}

.custom-block p {
  margin-left: 7%;
  padding-right: 2%;
}

.nav-tabs {
  border-bottom: 1px solid #fff0;
  margin-bottom: 40px;
  justify-content: center;
}

@media(max-width: 768px) {
  .nav-tabs {
    border-bottom: 1px solid #fff0;
    margin-bottom: 40px;
    justify-content: normal;
  }
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.mb-img {
  font-weight: 700;

}

@media(min-width: 1920px) {
  .sectionlive {
    background-size: 1930px;
    height: 875px !important;
  }
}

.h2-sgmob {
  text-align: center;
  margin-bottom: 7%;
  font-weight: 700 !important;
  color: #333;
}


.center_head_border h2:after,
.center_head_border:after {
  margin-left: auto !important;
  margin-right: auto !important;
}

.heading_style_1 h2::after {
  width: 110px;
  height: 5px;
  background: #b1afaf;
  content: "";
  display: block;
  margin: 15px 0 30px;
}

.heading_main h2 span {
  color: #1bb49d;
}

.heading_main-agro h2 span {
  color: #19b90b !important;
}

/* .app-features li>img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #333;
} */



.app-features li {
  display: flex;
  align-items: center;
  /* margin-bottom: 25px; */
}

.circle-background {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.circle-background img {
  width: 50%;
  height: 50%;
  object-fit: cover;
}


.app-features h4 {
  text-transform: none;
  font-weight: 700;
  color: #666;
  margin-bottom: 10px;
  font-size: 18px;
  margin-top: 23%;
  margin-left: 10px;
}

.back-padding {
  background-color: #e1edf4;
}

/* #values{
  background-image: url('../images/site-novo/divisor-banner.svg');
} */



.ftco-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block;
}

.ftco-footer-social li a {
  height: 40px;
  width: 40px;
  display: block;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  position: relative;
}

.ftco-footer-social li a span {
  position: absolute;
  font-size: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ftco-footer-social li a:hover {
  color: #fff;
}

.form-control {
  height: 41px;
  background: #fff;
  color: #000;
  font-size: 18px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control:focus,
.form-control:active {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

textarea.form-control {
  height: inherit !important;
}

.ftco-section {
  padding: 12em 0;
}

.ftco-section h2 {
  margin-bottom: 0;
}


footer {
  padding: 7em 0;
}

.footer-10 {
  background: #333;
  padding: 0 0 4em 0;
}

.footer-10 .border-top,
.footer-10 .border-bottom {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-10 .footer-heading {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
}

.footer-10 p {
  color: rgba(255, 255, 255, 0.43);
}

.footer-10 a {
  color: rgba(255, 255, 255, 0.43);
  text-decoration: none;
}

.footer-10 .con.con-1 {
  background: #1e1e1e;
}

.footer-10 .con.con-2 {
  background: #1c1c1c;
}

.footer-10 .con.con-3 {
  background: #252525;
}

.footer-10 .list-unstyled li a {
  color: rgba(255, 255, 255, 0.43);
}

.footer-10 .list-unstyled li a:hover {
  color: #fff;
}

.footer-10 .con-info .icon {
  width: 55px;
  height: 50px;
  background: #008d85;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 10px;
}

.footer-10 .con-info .icon span {
  color: #fff;
  font-size: 24px;
}

.footer-10 .con-info span {
  color: rgba(255, 255, 255, 0.8);
}

.footer-10 .subscribe-form .form-group {
  position: relative;
  margin-bottom: 0;
  border-radius: 0;
}

.footer-10 .subscribe-form .form-group input {
  background: white !important;
  border: none !important;
  outline: none !important;
  color: rgba(0, 0, 0, 0.48) !important;
  font-size: 16px;
  border-radius: 0;
}

.footer-10 .subscribe-form .form-group input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.3) !important;
}

.footer-10 .subscribe-form .form-group input::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.3) !important;
}

.footer-10 .subscribe-form .form-group input:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(0, 0, 0, 0.3) !important;
}

.footer-10 .subscribe-form .form-group input:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.3) !important;
}

.footer-10 .subscribe-form .form-group input:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.footer-10 .subscribe-form .form-group .submit {
  color: #fff !important;
  display: block;
  width: 130px;
  height: 41px;
  font-size: 16px;
  background: #008d85 !important;
  border: none;
  border-radius: 0;
}

.footer-10 .subscribe-form .form-group .submit:hover,
.footer-10 .subscribe-form .form-group .submit:focus {
  text-decoration: none !important;
  outline: none !important;
}

.footer-10 .subscribe-form .subheading {
  display: inline-block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 16px;
}

.footer-10 .ftco-footer-social li a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.p-0 {
  padding: 0 !important;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

.col-lg-4 {
  -webkit-box-flex: 0;
  /* -ms-flex: 0 0 33.33333%; */
  /* flex: 0 0 33.33333%; */
  /* max-width: 33.33333%;  */
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.span-icon {
  margin-top: 6%;
}

@media(max-width: 1400px) {
  .span-icon {
    margin-top: 8%;
  }

}

.loader {
  border: 8px solid #f3f3f3;
  /* Cor da borda do loader */
  border-top: 8px solid #05665f;
  /* Cor da borda do loader que será animada */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  /* Animação de rotação */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media(max-width:480px) {
  .loader {
    border: 8px solid #f3f3f3;
    /* Cor da borda do loader */
    border-top: 8px solid #05665f;
    /* Cor da borda do loader que será animada */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    /* Animação de rotação */
    position: fixed;
    top: 50%;
    left: 43%;
    transform: translate(-50%, -50%);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.h2-gradient {
  text-align: center;
  margin-bottom: 7%;
  font-weight: 700 !important;
  color: #fff;
}

/* Estilos para a mensagem */
#mensagem {
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
}

/* Estilos para a mensagem de sucesso */
.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

/* Estilos para a mensagem de erro */
.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

/* call-to-action section - Home
-------------------------------------------------------------------------*/

.call-to-action-home {
  --color-default: #333;
  --color-background: #000000;
  --color-background-rgb: 0, 0, 0;
  padding: 80px 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.call-to-action-home img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-home:before {
  content: "";
  background: #333;
  /* background-image: url('../images/site-novo/call-to-agro-2.jpg'); */
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action-home .container {
  position: relative;
  z-index: 3;
}

.call-to-action-home h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.call-to-action-home p {
  color: #fff;
}

.call-to-action-home .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

/* call-to-action - Configuração Geral
-------------------------------------------------------------------------*/


.call-to-action h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.call-to-action p {
  color: #fff;
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background-color: #fff;
  color: #333;
}

/* call-to-action section - Agropecuária
--------------------------------------------------------------------------*/

.call-to-action-agro {
  --color-default: #333;
  --color-background: #000000;
  --color-background-rgb: 0, 0, 0;
  padding: 80px 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  background-color: #e8e8e8;
}

.call-to-action-agro img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-agro:before {
  content: "";
  background: linear-gradient(to right, #118607, #11c829);
  position: absolute;
  inset: 0;
  z-index: 2;
  margin-left: 9%;
  margin-right: 9%;
}

.call-to-action-agro .container {
  position: relative;
  z-index: 3;
}

.call-to-action-agro h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.call-to-action-agro p {
  color: #fff;
}

.call-to-action-agro .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action-agro .cta-btn:hover {
  background-color: #fff;
  color: #333;
}

/* call-to-action section - Comércio
--------------------------------------------------------------------------*/
.call-to-action-comercio {
  --color-default: #333;
  --color-background: #000000;
  --color-background-rgb: 0, 0, 0;
  padding: 80px 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  background-color: #e8e8e8;
}

.call-to-action-comercio img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-comercio:before {
  content: "";
  background: linear-gradient(to right, #05665f, #01a79e);
  position: absolute;
  inset: 0;
  z-index: 2;
  margin-left: 9%;
  margin-right: 9%;
}

.call-to-action-comercio .container {
  position: relative;
  z-index: 3;
}

.call-to-action-comercio h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.call-to-action-comercio p {
  color: #fff;
}

.call-to-action-comercio .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action-comercio .cta-btn:hover{
  background-color: #fff;
  color: #333;
}

/* call-to-action section - Loja de Roupas
--------------------------------------------------------------------------*/

.call-to-action-roupas {
  --color-default: #333;
  --color-background: #000000;
  --color-background-rgb: 0, 0, 0;
  padding: 22px 0;
  position: relative;
  clip-path: inset(0);
  min-height: 600px;
}

.call-to-action-roupas img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-roupas:before {
  content: "";
  background-image: url(../images/site-novo/banner1.png);
  position: absolute;
  inset: 0;
  z-index: 2;
  margin-left: 0;
  margin-right: 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.call-to-action-roupas:hover {
  cursor: pointer;
}

.call-to-action-roupas .container {
  position: relative;
  z-index: 3;
}

.call-to-action-roupas h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.call-to-action-roupas p {
  color: #fff;
}

.call-to-action-roupas .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

/* call-to-action section - Restaurante
--------------------------------------------------------------------------*/

.call-to-action-restaurante {
  --color-default: #333;
  --color-background: #000000;
  --color-background-rgb: 0, 0, 0;
  padding: 22px 0;
  position: relative;
  clip-path: inset(0);
  min-height: 600px;
}

.call-to-action-restaurante img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-restaurante:before {
  content: "";
  background-image: url(../images/site-novo/banner-restaurante.webp);
  position: absolute;
  inset: 0;
  z-index: 2;
  margin-left: 0;
  margin-right: 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.call-to-action-restaurante:hover {
  cursor: pointer;
}

.call-to-action-restaurante .container {
  position: relative;
  z-index: 3;
}

.call-to-action-restaurante h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.call-to-action-restaurante p {
  color: #fff;
}

.call-to-action-restaurante .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}


/* call to action - Responsivo */

@media(min-width: 1900px) {
  .call-to-action-agro:before {
    content: "";
    background: linear-gradient(to right, #118607, #11c829);
    position: absolute;
    inset: 0;
    z-index: 2;
    margin-left: 16%;
    margin-right: 16%;
  }

  .call-to-action-comercio:before {
    content: "";
    background: linear-gradient(to right, #05665f, #01a79e);
    position: absolute;
    inset: 0;
    z-index: 2;
    margin-left: 16%;
    margin-right: 16%;
  }

  .call-to-action-restaurante:before {
    content: "";
    background-image: url(../images/site-novo/food-big.webp);
    position: absolute;
    inset: 0;
    z-index: 2;
    margin-left: 0;
    margin-right: 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}

@media(max-width: 700px) {

  .call-to-action-agro:before {
    content: "";
    background: linear-gradient(to right, #118607, #11c829);
    position: absolute;
    inset: 0;
    z-index: 2;
    margin-left: 0%;
    margin-right: 0%;
  }

  .call-to-action-comercio:before {
    content: "";
    background: linear-gradient(to right, #05665f, #01a79e);
    position: absolute;
    inset: 0;
    z-index: 2;
    margin-left: 0%;
    margin-right: 0%;
  }

  .call-to-action-roupas {
    --color-default: #333;
    --color-background: #000000;
    --color-background-rgb: 0, 0, 0;
    padding: 22px 0;
    position: relative;
    clip-path: inset(0);
    min-height: 700px;
  }

  .call-to-action-roupas:before {
    content: "";
    /* background: linear-gradient(to right, #b27423, #f9ad27); */
    background-image: url(../images/site-novo/ldr-mobile.jpg);
    position: absolute;
    inset: 0;
    z-index: 2;
    margin-left: 0;
    margin-right: 0;
    background-repeat: no-repeat;
  }

  .call-to-action-restaurante:before {
    content: "";
    background-image: url(../images/site-novo/bn-rest-mobile.webp);
    position: absolute;
    inset: 0;
    z-index: 2;
    margin-left: 0;
    margin-right: 0;
    background-repeat: no-repeat;
  }

  .call-to-action-restaurante {
    --color-default: #333;
    --color-background: #000000;
    --color-background-rgb: 0, 0, 0;
    padding: 22px 0;
    position: relative;
    clip-path: inset(0);
    min-height: 460px;
  }

}



.segmentos-h2 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  text-align: left;
  margin-top: 7%;
}


/*--------------------------------------------------------------
# agronegocio Section
--------------------------------------------------------------*/
.agronegocio {
  background: url(../images/site-novo/banner-agro-bvx.jpg) bottom center no-repeat;
  background-size: 100%;
  height: 80vh;
}

@media (max-width: 480px) {
  .agronegocio {
    background: url(../images/site-novo/banner-agro-mobile.jpg) top center no-repeat;
    background-size: cover;
    height: 120vh;
    width: 100%;
  }

}


.agronegocio h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.agronegocio p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-bottom: 30px;
}

.agronegocio .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.agronegocio .btn-get-started:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.agronegocio .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  font-weight: 600;
}

.agronegocio .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.agronegocio .btn-watch-video:hover i {
  color: #fff;
}

@media (max-width: 640px) {
  .agronegocio h2 {
    font-size: 36px;
  }

  .agronegocio .btn-get-started,
  .agronegocio .btn-watch-video {
    font-size: 14px;
  }
}

.agronegocio .icon-boxes {
  padding-bottom: 60px;
}

/* @media (min-width: 1200px) {
  .agronegocio .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: #fff;
  }
} */

.agronegocio .icon-box {
  padding: 10px 30px;
  /* Reduzido o padding para tornar os elementos menores */
  position: relative;
  overflow: hidden;
  background: #00bf63;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  width: 100%;
  /* Definindo uma largura menor para os elementos */
  text-align: center;
}

.agronegocio .icon-box h3 {
  font-size: 18px;
  /* Reduzindo o tamanho da fonte do título */
}

.agronegocio .icon-box p {
  font-size: 14px;
  /* Reduzindo o tamanho da fonte do texto */
}

.agronegocio .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.agronegocio .icon-box .title a {
  color: #fff;
  transition: 0.3s;
}

.agronegocio .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
}

.agronegocio .icon-box:hover {
  background: #5FF551;
}

.agronegocio .icon-box:hover .title a,
.agronegocio .icon-box:hover .icon {
  color: #fff;
}

.green-1 {
  background-color: #138808 !important;
}

/* .green-1:hover{
  background-color: #5FF551 !important;
} */

.green-2 {
  background-color: #16A009 !important;
}

/* .green-2:hover{
  background-color: #5FF551 !important;
} */

.green-3 {
  background-color: #19B90B !important;
}

/* .green-3:hover{
  background-color: #5FF551 !important;
} */

.green-4 {
  background-color: #1DD10C !important;
}

/* .green-4:hover{
  background-color: #5FF551 !important;
} */

/*--------------------------------------------------------------
# Function
--------------------------------------------------------------*/
.function {
  background: #e8e8e8;
  padding: 60px 0;
}

.function .member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  /* transition: 0.3s; */
}

.function .member .member-img {
  position: relative;
  overflow: hidden;
}

.function .member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  /* background: url(../images/site-novo/team-shape.svg) no-repeat center bottom; */
  background-size: contain;
  z-index: 1;
}

.function .member .member-info {
  padding: 10px 15px 20px 15px;
}

.function .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #012970;
}

.function .member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #aaaaaa;
}

.function .member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: #5e5e5e;
}


/* 

.function .member .social a {
  transition: color 0.3s;
  color: rgba(1, 41, 112, 0.5);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.function .member .social a:hover {
  color: rgba(1, 41, 112, 0.8);
}

.function .member .social i {
  font-size: 18px;
}


.function .member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.function .member:hover .social {
  right: 8px;
  opacity: 1;
} */


.mysectionlive {
  background-image: url('../images/site-novo/divisor-quebra.svg');
  background-repeat: no-repeat;
  /* height: 738px; */
  background-size: 100%;
  background-position-y: bottom;
}

.mobile-sgmob {
  margin-left: 23%;
}


@media(max-width: 768px) {
  .mobile-sgmob {
    margin-left: 25%;
  }

  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link.active {
    background-color: #fff0;
    border-color: 1px solid #fff0;
  }

  .mysectionlive {
    background-color: #fff !important;
    background-image: none;
  }

  .features-right {
    margin-top: -19px;
  }

  .call-to-action:before {
    content: "";
    /* background: #333; */
    /* background-image: url('../images/site-novo/call-to-agro-mobile.svg'); */
    position: absolute;
    inset: 0;
    z-index: 2;
  }

}

/* Modal Formulário de Entrada */

@media (max-width: 991px) {
  .btn-close-modal {
    display: block;
  }
}

@media (min-width: 1000px) {
  .btn-close-modal {
    display: none;
  }
}

.features .feture-tabs {
  display: flex;
  align-items: center;
}

.fale-rest {
  background-color: #e5300d !important;
  border-radius: 3px;
}


.span-rest {
  color: #fff;
  font-weight: 500 !important;

}

.my-movie {
  height: 100%;
  width: 100%;
}

/******************* Timeline Demo - 10 *****************/
.main-timeline10:after,
.main-timeline10:before {
  content: "";
  display: block;
  width: 100%;
  clear: both
}

.main-timeline10 .timeline {
  padding: 0;
  display: -webkit-inline-box
}

.main-timeline10 .col-md-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 24%
}

.main-timeline10 .timeline-inner {
  text-align: center;
  margin: 20px 20px 35px 35px;
  position: relative
}

.main-timeline10 .timeline-inner:after {
  content: "";
  width: 120%;
  height: 3px;
  background: #555;
  position: absolute;
  bottom: 0;
  left: 10%
}

.main-timeline10 .timeline:last-child .timeline-inner:after {
  width: 0
}

.main-timeline10 .year {
  background: #d57e0a;
  padding: 5px 0;
  border-radius: 30px 0;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  z-index: 1;
  position: relative
}

.main-timeline10 .year:after,
.main-timeline10 .year:before {
  position: absolute;
  top: -19px;
  content: ""
}

.main-timeline10 .year:before {
  right: 0;
  border: 10px solid transparent;
  border-bottom: 10px solid #d57e0a;
  border-right: 10px solid #d57e0a;
}

.main-timeline10 .year:after {
  width: 25px;
  height: 19px;
  border-radius: 0 0 20px;
  background: #fff;
  right: 1px
}

.main-timeline10 .timeline-content {
  padding: 10px 10px 30px;
  border-left: 3px solid #d57e0a;
  position: relative
}

.main-timeline10 .timeline-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  border: 10px solid transparent;
  border-top: 10px solid #d57e0a;
  border-left: 10px solid #d57e0a;
}

.main-timeline10 .timeline-content:after {
  content: "";
  width: 25px;
  height: 19px;
  border-radius: 20px 0 0;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0
}

.main-timeline10 .post {
  font-size: 26px;
  color: #333
}

.main-timeline10 .description {
  font-size: 14px;
  color: #333
}

.main-timeline10 .timeline-icon {
  width: 70px;
  height: 70px;
  line-height: 65px;
  border-radius: 50%;
  border: 5px solid #d57e0a;
  background: #fff;
  font-size: 30px;
  color: #555;
  z-index: 1;
  position: absolute;
  bottom: -35px;
  left: -35px
}

.main-timeline10 .timeline:nth-child(2n) .year {
  background: #f1470c;
}

.main-timeline10 .timeline:nth-child(2n) .year:before {
  border-bottom-color: #f1470c;
  border-right-color: #f1470c;
}

.main-timeline10 .timeline:nth-child(2n) .timeline-content {
  border-left-color: #f1470c;
}

.main-timeline10 .timeline:nth-child(2n) .timeline-content:before {
  border-top-color: #f1470c;
  border-left-color: #f1470c;
}

.main-timeline10 .timeline:nth-child(2n) .timeline-icon {
  border-color: #f1470c;
}

.main-timeline10 .timeline:nth-child(3n) .year {
  background: #e5300d;

}

.main-timeline10 .timeline:nth-child(3n) .year:before {
  border-bottom-color: #e5300d;
  border-right-color: #e5300d;

}

.main-timeline10 .timeline:nth-child(3n) .timeline-content {
  border-left-color: #e5300d;

}

.main-timeline10 .timeline:nth-child(3n) .timeline-content:before {
  border-top-color: #e5300d;
;
  border-left-color: #e5300d;

}

.main-timeline10 .timeline:nth-child(3n) .timeline-icon {
  border-color: #e5300d;

}

.main-timeline10 .timeline:nth-child(4n) .year {
  background: #e50e0e;
}

.main-timeline10 .timeline:nth-child(4n) .year:before {
  border-bottom-color: #e50e0e;
  border-right-color: #e50e0e;
}

.main-timeline10 .timeline:nth-child(4n) .timeline-content {
  border-left-color: #e50e0e;
}

.main-timeline10 .timeline:nth-child(4n) .timeline-content:before {
  border-top-color: #e50e0e;
  border-left-color: #e50e0e;
}

.main-timeline10 .timeline:nth-child(4n) .timeline-icon {
  border-color: #e50e0e;
}

@media only screen and (max-width:990px) {
  .main-timeline10 .timeline-inner:after {
    width: 110%
  }

  .main-timeline10 .timeline:nth-child(2n) .timeline-inner:after {
    width: 0
  }
}

@media only screen and (max-width:767px) {
  .main-timeline10 .timeline {
    margin-bottom: 50px
  }

  .main-timeline10 .timeline-inner:after,
  .main-timeline10 .timeline:nth-child(2n) .timeline-inner:after {
    width: 100%;
    height: 3px;
    left: 0
  }
}

/* Para dispositivos móveis, quando $colValue for 3, oculte as colunas */
@media (max-width: 767px) {
  .main-timeline10 .col-3 {
    display: none;
  }
}

/* Para dispositivos móveis, quando $colValue for 12, mostre as colunas */
@media (max-width: 767px) {
  .main-timeline10 .col-12 {
    display: block;
  }
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  /* border-color: var(--bs-nav-tabs-link-active-border-color); */
  border-color: #05665f;
}