@font-face { font-family: Satisfy-Regular; src: url('../fonts/Satisfy-Regular.ttf'); }

@font-face { font-family: Barlow-Regular; src: url('../fonts/Barlow-Regular.ttf'); }
@font-face { font-family: Barlow-Bold; src: url('../fonts/Barlow-Bold.ttf'); }


/* ----------------------------- Vars */
:root {
  --tam-container:1100px;
  --font1:Satisfy-Regular;
  --font2:Barlow-Regular;
  --font2-bold:Barlow-Bold;
  --cor-verde: #00b47d;
  --cor-verde-cana: #b5f569;
  --cor-amarelo: #f3ff46;
  --cor-azul-piscina: #6ef8ff;
}

/* ------------------------------- KEYFRAMES*/
@keyframes ani_topo {
  0%   {  background-size: 200% 100% }
  100% {  background-size: 110% 100% }
}

@keyframes ani_cellcity {
  0%   {  opacity: 0; margin-top: -80px }
  100% {  opacity: 1; margin-top: 0px }
}

/* ------------------------------- ATTR*/
.left{
  float: left;
}

.right{
  float: right;
}

.wp33{
  float: left;
  width: 33.3333%
}

.wp50{
  width: 50%;
  float: left;
}

.over{
  overflow: hidden;
}

.aleft{
  text-align: left
}

.aright{
  text-align: right
}


/* ------------------------------- ELEMENTS*/

h1{
  font-family: var(--font1);
  font-size: 50px;
}

h1 span{
  font-family: var(--font2);
  display: block;
  font-size: 20px;
}

h2{
  color: var(--cor-verde);
  font-size: 35px;
}

h3 span{
  display: block;
  font-size: 13px;
}


img{
  max-width: 100%;
}

.bt{
  border: 1px solid;
  padding: 10px 20px;
  min-width: 80px;
  display: inline-block;
  border-radius: 50px;
  text-align: center;
  font-family: var(--font2);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  transition: all 0.3s;
}

.bt.cana{
  border:0;
  color: #000;
  background-color: var(--cor-verde-cana);
}

.bt.piscina{
  border:0;
  color: #000;
  background-color: var(--cor-azul-piscina);
}

.bt.amarelo{
  border:0;
  color: #000;
  background-color: var(--cor-amarelo);
}

.bt:hover{
  color: #FFF;
  background: var(--cor-verde);
}

.card{
  overflow: hidden;
  border-radius: 20px;
  margin: 15px;
  box-shadow: 0px 0px 20px #999;
  background: #FFF;
}

.card .img{
  height: 150px;
  overflow: hidden;
  width: 100%;
  position:relative;
}

.card .img img{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.card .title{
  text-align: center;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
  color: #102e30
}

.card .text{
  padding: 0px 20px;
  color: #586d6f
}

.card .footer{
  text-align: center;
  padding: 25px
}

.card:hover{
 transform: translateY(-4px);
 box-shadow: 0px 10px 10px #AAA !important;;
 transition: all 0.3s;
}

.card.mini{
  border-radius: 5px;
  box-shadow: 0px 0px 10px #999;
  position: relative;
  font-size: 13px;
}

.card.mini .img{
  height: 100px;
  width: 100px;
  float: left;
  background: #000;
  margin-right:10px;
}

.card.mini .img img{
  height: 100%;
  width: auto;
  max-width: inherit;
}

.card.mini .title{
  text-align: left;
  padding: 10px;
  padding-bottom: 5px;
  font-size: 16px;
  font-style: inherit;
}

.card.mini .subtitle{
  text-align: left;
  padding: 0px;
  font-style: inherit;
  opacity: 0.7;
}

.card.mini .footer{
  text-align: left;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 100px;
}

.card.mini .horario{
  font-size: 12px;
}

.card.mini .horario span{
  font-weight: bold;
  margin-right: 10px;
}

ul.lista{
  padding: 0;
}

ul.lista li{
  list-style: none;
  padding: 10px;
  color: var(--cor-verde);
  overflow:hidden;
}
ul.lista li:nth-child(odd){
  background: var(--cor-verde);
  color: #EEE;
}

ul.lista li a{
  text-decoration:none
}

/* ------------------------------- STRUCT*/
body{
  margin: 0;
  font-family: var(--font2);
  background: #f5f5fc;
}

a{
  /*text-decoration: none;*/
  color: inherit;
}

a img:hover{
  opacity: 0.9;
}

.bgheader{
  background-image: url(../imgs/hero-background.jpg),linear-gradient(to bottom, #2ca351 0%, #f5f5fc 100%);
  height: 55px;
}

header, .index header.min{
  position: fixed;
  width: 100%;
  /*! overflow: hidden; */
  top: 0;
  left: 0;
  transition: all 1s;
  z-index: 999;
  
  background: #FFF;
  box-shadow: 0px 0px 30px #666;
}

.shm{
  display: none;
}

header nav, .index header.min nav{
  padding: 17px 0px;
  transition: all 1s;
  padding-left: 20px;
}

header nav a, .index header.min nav a{
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin: 0px 15px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font2);  
}

header nav a:hover, .index header.min nav a:hover{
  border-bottom: 0px solid;
  color: inherit;
}

header nav a:last-child, .index header.min nav a:last-child{
  margin: 0;
}

.dropdown:after{
 content: ''; 
 display: inline-block;
 margin-left: 10px;
 margin-bottom: 2px;
 border-left: 5px solid transparent;
 border-right: 5px solid transparent;
 border-top: 5px solid #000;
}

.index .dropdown:after{
 border-top: 5px solid #FFF;
}

header.min .dropdown:after{
 border-top: 5px solid #000;
}

header .submenu{
 position: absolute;
 overflow:hidden;
 background: #FFF;
 box-shadow:0px 10px 10px #CCC;
 padding: 0px 10px;
 max-height: 0px;
 transition:all 0.3s;
 display:inline-block;
 left: 0;
 top: 20px;
}

header .item{
  position: relative;
}

header .item:hover .submenu{
 max-height: 300px;
 padding: 10px 10px;
}

header .submenu a{
 display: block;
 padding: 5px 10px;
 min-width: auto;
 margin: 0;
 font-weight: normal;
 color: #000;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}

header .submenu a:hover{
 border: 0;
 color: var(--cor-verde);
}

header .container{
  max-width: 1300px;
}

header .logo span{
  background-repeat: no-repeat;
  background-position: center;
}

header .logo span:hover{
  filter: brightness(1.5)
}

header .au span, .index header.min .au span{
  vertical-align:middle;
  transition: all 1s;
  background-size: auto 100%;
  display: inline-block;
  
  height: 27px;
  margin-bottom: 8px;
  background-image: url(../imgs/logo-agricultura-short.png);
  margin: 15px 0px;
  width: 151px;
}

header .pmf-white span, .index header.min .pmf-white span{
  vertical-align:middle;
  margin-right: 20px;
  transition: all 1s;
  background-size: auto 100%;
  display: inline-block;
  height: 40px;
  background-image: url(../imgs/Logo_PMF_Hor_Col_Preto.svg);
  width:132px;
  margin-left: 15px;
}

.index header{
  background: transparent;
  box-shadow: none;
}

.index header nav{
  padding-top: 40px
}

.index header nav a{
  color: #FFF;
}

.index header.max nav .submenu{
 background: rgba(255,255,255,0.7)
}

.index header nav .submenu a{
 color: #000;
}

.index header nav .submenu a:hover{
 color: var(--cor-verde);
}

.index header .au span{
  height: 100px;
  margin:8px 0px;
  background-image: url(../imgs/logo.png);
  width: 110px;
}

.index header .pmf-white span{
  height: 90px;
  background-image: url(../imgs/Logo_PMF_Ver_Col_Branco.svg);
  width: 115px;
}





footer{
  padding-top: 50px;
  clear: both;
  font-size: 13px;
}

footer img{
  max-height: 150px
}

footer .copy{
  clear: both;
  background: #001819;
  color: #FFF;
  padding: 20px;
  margin-top: 40px;
  clear: both
}

footer .menu a{
  text-decoration:none;
  display: block;
  padding: 5px 0px;
  color: #001819;
}

footer .menu a:hover{
  color: var(--cor-verde);
}

footer .nasredes{
  padding-top: 30px;
}

footer .nasredes img{
  height: 30px;
  margin-right: 15px
}

footer .title{
  text-transform: uppercase;
  font-weight: bold;
  color: #001819;
  padding: 15px 0px
}

footer .aright img{
  margin-left:40px
}


.container{
  max-width: var(--tam-container);
  text-align: left;
}

/* ------------------------------- PAGE*/

.page{
  padding-top:0px;
}


/* ------------------------------- PAGE 404*/

.pg404{
 padding: 150px;
 background: #FFF;
}


/* ------------------------------- PAGE HOME*/

.index .topo {
  background-position: center center;
  background-size: 110% 100%;
  background-image: url(../imgs/hero-background.png),linear-gradient(to bottom, #2ca351 0%, #f5f5fc 100%);
  padding-top:300px;
  margin-top: -215px;
  overflow: hidden;

  transition: all 1s;
  animation-name: ani_topo;
  animation-duration: 1s;
}

.index .topo h1{
  color: #FFF;
}

.index .topo h1 span{
  margin-left:55px;
  margin-top:-20px;
  color: var(--cor-amarelo);
  font-weight:normal;
}

.index .topo .txt{
  color: #FFF;
  max-width: 400px;
  margin-bottom: 30px;
}

.index .cellcity img{
  animation-name: ani_cellcity;
  animation-duration: 2s;
  transition: all 0.5s;
}

.index .cellcity img:hover{
  transform: translateY(-10px);
}

.index .bts .bt{
  margin-right: 20px;
  background: #FFF;
  color: var(--cor-verde);
}

.index .bts .bt:hover{
  margin-right: 20px;
  background: var(--cor-verde);
  color: #FFF;
}

.index .projetos .bt{
  border: none;  
}

.index .projetos .bt:hover{
  color: #FFF;
  background: var(--cor-verde);
}

.index .projetos .container{
  overflow: hidden;
  text-align: center;
  margin-top: 70px;
}

.index .projetos .text{
  max-width: 80%;
  display: inline-block;
  font-weight:bold;
}

.index .projetos .card .text{
 min-height: 320px;
 max-width: 100%;
}

.index .projetos .wp33:nth-child(3n+1) .bt{
 background-color:var(--cor-verde-cana);
}

.index .projetos .wp33:nth-child(3n+2) .bt{
 background-color:var(--cor-amarelo);
}

.index .projetos .wp33:nth-child(3n+3) .bt{
 background-color:var(--cor-azul-piscina);
}

.index h2{
  text-align: center;
}

.index .cards{
  padding: 30px 0px;
}

.index .noticias{
  margin-top: 70px
}

.index .noticias .lk1{
  color: var(--cor-verde);
  font-weight: bold;
  font-size: 14px;
}

.index .noticias .header{
  margin: 15px
}

.index .noticias .header .right{
  padding-top: 28px;
  text-align: right;
}

.index .noticia{
  margin: 15px;
  overflow: hidden;
}

.index .noticia a{
  text-decoration:none
}

.index .noticia .img{
  overflow: hidden;
  border-radius: 12px;
}

.index .noticia .img img{
  width: 100%;
}

.index .noticia .date{
  padding: 8px 0px;
  font-size: 14px;
  color: #999;
}

.index .noticia .txt{
  font-size: 15.5px;
}

.index .central-de-cadastros{
  padding: 160px 0px;
  background: url(../imgs/wave_1.png) no-repeat top left,url(../imgs/wave_2.png) no-repeat bottom right,linear-gradient(to right, #b5f569 0%, #ffe74d 50%);
  clear: both;
}

.index .central-de-cadastros .title{
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

.index .central-de-cadastros .txt{
  text-align: center;
  font-size: 13px;
  padding: 30px;
}

.index .central-de-cadastros .bts{
  text-align: center;
}

.index .central-de-cadastros .bts .bt{
  margin: 0px 40px;
  min-width: 120px;
  background: #022828;
  border: 0;
  color: #6ef8ff;
}

.index .central-de-cadastros .bts .bt:last-child{
  color: #ffb84f
}

.index .central-de-cadastros .bts .bt:hover{
  background: #FFF;
}

.index .sobre h2{
  text-align: left;
  margin: 0;
  font-size: 50px;
  font-family: var(--font2-bold)
}

.index .sobre h3{
  font-size: 20px
}

.index .sobre .txt{
  color: #666;
  max-width: 450px
}

.index .sobre img{
  transition: all 1s;
}

.index .sobre img:hover{
  transform: translateY(-10px);
}



/* ------------------------------- PAGE FEIRAS*/

.mapa{
 height: 400px;
 overflow: hidden;
}

.mapa .sombra{
  box-shadow: 0px 0px 30px #000;
  height:30px;
  transform:translate(0px);
}


.feiras-do-dia{
 overflow: hidden;
}

.feiras-do-dia .card .aberto{
 color: var(--cor-verde);
}

.feiras-do-dia .card .fechado{
 color: #F00;
}


.mosaico{
 position: relative;
 height: 350px;
 overflow: hidden;
}

.mosaico .u{
 width: 25%;
 position: absolute;
 height: 50%;
 overflow: hidden;
 border: 1px solid #FFF;
 box-sizing: border-box
}

.mosaico img{
 width: 100%;
 transition: all 0.3s;
}


.mosaico .u .footer{
 position: absolute;
 z-index: 9;
 color: #FFF;
 bottom: 0px;
 left: 0px;
 background: linear-gradient(to top, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0));
 width: 100%;
 padding: 20px;
 padding-top: 10px;
 transition: all 0.3s;
}

.mosaico .u i{
 width: 40px;
 height: 5px;
 background: #FFF;
 display: inline-block;
 border-radius: 10px;
}

.mosaico .u .title{
 display: block;
}

.mosaico .u:nth-child(1){ left: 0%; top: 0%; }
.mosaico .u:nth-child(2){ left: 25%; top: 0%; height: 60%; }
.mosaico .u:nth-child(3){ left: 50%; top: 0%; }
.mosaico .u:nth-child(4){ left: 75%; top: 0%; height: 100%; }
.mosaico .u:nth-child(4) img{ height: 100%; width: auto; max-width: inherit; }

.mosaico .u:nth-child(5){ left: 0%; top: 50% }
.mosaico .u:nth-child(6){ left: 25%; top: 60%; height: 40%; }
.mosaico .u:nth-child(7){ left: 50%; top: 50% }

.mosaico .u:nth-child(1) i{ background-color:#ff4d9e }
.mosaico .u:nth-child(2) i{ background-color:#2eff82 }
.mosaico .u:nth-child(3) i{ background-color:#ffd243 }
.mosaico .u:nth-child(4) i{ background-color:#ff831d }
.mosaico .u:nth-child(5) i{ background-color:#929dff }
.mosaico .u:nth-child(6) i{ background-color:#2cffe0 }
.mosaico .u:nth-child(7) i{ background-color:#ff2c2c }


.mosaico .u:hover .footer{
 padding-bottom: 25px;
 padding-top: 20px;
}

.mosaico .u:hover img{
 filter: brightness(1.1);
}


.tipos-de-feira{
 margin-bottom: 40px;
}



/* ------------------------------- MODO NOTURNO*/

.nightmode.index header .au span{
  filter: invert(1);
}


.fleft{
  float: left;
}

.fright{
  float: right;
}

.produtos ul{
  margin: 0;
  padding: 0;
}

.produtos li{
  display: block;
  list-style: none;
  border-bottom:1px solid #bfbfbf;
  padding: 5px;
  overflow: hidden
}

.produtos li:hover{
  background: rgba(0,0,0,0.03);
  cursor: pointer;
}

.produtos .produto{
  font-weight: 500;
  font-size: 17px;
  color: #001819;
}

.produtos .produtor{
  font-weight: 400;
  font-size: 14px;
  color: #424c4c;
}

.produtos .nome{
  background: url(../imgs/farmer.svg) no-repeat;
  padding-left: 18px;
  padding-right: 10px;
}

.produtos .tel{
  background: url(../imgs/phone.svg) no-repeat;
  padding-left: 22px;
  padding-right: 10px;
}


.produtos .icon{
  background: no-repeat;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-top: 9px;
  margin-left: 10px;
  font-size: 12px;
  overflow: hidden;
  text-align: center;
  border-radius:5px;
  padding-left:35px
}
.icon:hover{opacity: 0.7}
.icon.facebook{ background-image: url(../imgs/facebook.svg); }
.icon.instagram{ background-image: url(../imgs/instagram.svg); }
.icon.email{ background-image: url(../imgs/email.svg); }
.icon.localizacao{ background-image: url(../imgs/adress.svg); }
.icon.entrega{ background-image: url(../imgs/bike1.svg); }

.modal .fright
,.modal .fleft{
  float: none;
  clear: both;
}

.modal .fright{
  padding: 10px 0px;
}

.modal .icon{
  width: auto;
  font-size:13px;
  vertical-align: middle;
  display: block;
  text-align: left;
  padding-top: 3px;
  margin: 10px 0px 0px 0px
}

.count-resultados{
  font-weight: 600;
  font-size: 17px;
  color: #001819;
  text-align: center;
  padding: 20px;
}

.barsearch{
  display: flex;
  max-width: 550px;
  margin: 0px 10px;
}

.barsearch input{
  width: 100%;
  padding:14px 16px;
  border:1px solid #bfbfbf;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.barsearch button{
  width: 180px;
  padding:10px 16px;
  border:1px solid #bfbfbf;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  background: #99FF6B;
  font-size:14px;
  font-weight: bold
}

.barsearch button:hover{
  background: #66EE6B;
  cursor:pointer;
}

.paginacao{
  text-align: center;
}

.paginacao a{
  display: inline-block;
  background: #001819;
  margin: 2px;
  min-width: 30px;
  text-align: center;
  color: #FFF;
  padding-bottom: 3px;
  text-decoration: none;
}

.paginacao a:hover
,.paginacao a.active{
  opacity: 0.5;
}
