/* Variáveis */

:root {
 --cor-base:#002b7e;
 --cor-clara:#a2e7ff;
 --cor-escura:#020e3e;
 --cor-bg:#fff;
}

/* Reset */

* {
 margin:0; padding:0; border:0; outline:0;
 box-sizing:border-box;
}

/* Base */ 

html {
 position:relative;
 min-height:100%;
}

body {
 margin:0;
 height:100%;
 min-width:300px;
 overflow-y:scroll;
 overflow-x:hidden;
 background-color:var(--cor-bg);
 background-image:url(/imagens/layout/bgmain.webp);
 background-position:center top;
 background-attachment:fixed;
 color:rgba(0,0,0,0.9);
 font-family:Arial,Helvetica;
 font-size:1em;
 font-weight:400;
}

.zen {
 font-family:"Zen Dots",Arial,Helvetica;
 font-size:1em;
 font-weight:400;
}

.bree {
 font-family:"Bree Serif",Arial,Helvetica;
 font-size:1em;
 font-weight:400;
}

/* jQuery UI */

.ui-widget {
 font-style:inherit !important;
 font-family:Tahoma,Arial,Helvetica !important;
 font-size:100% !important;
}

.ui-dialog-titlebar-close {
 visibility:hidden;
}

.ui-tooltip-content {
 font-size:0.8em;
 line-height:initial;
}

.ui-accordion-header {
 outline:none !important;
}

.ui-datepicker {
 font-size:0.95em !important;
}

.ui-datepicker-calendar td,.ui-datepicker-calendar th {
 min-width:unset !important;
 margin:unset !important;
}

.ui-progressbar-value {
 height:2em !important;
}

.ui-widget-shadow {
 -webkit-box-shadow:2px 2px 5px var(--cor-base) !important;
 box-shadow: 2px 2px 5px var(--cor-base) !important;
}

.ui-autocomplete {
 max-height:200px;
 overflow-y:auto;
 overflow-x:hidden;
}

#dialog {
 display:none;
}

.dialog-fixed {
 position:fixed !important; 
}

/* Tags */

a {
 text-decoration:none;
 color:rgba(0,0,0,0.9);
 outline:none;
 overflow-wrap:anywhere;
}

a:hover {
 text-decoration:none;
 color:var(--cor-base);
}

a.azul {
 text-decoration:none;
 color:var(--cor-base);
 outline:none;
 overflow-wrap:anywhere;
}

a.azul:hover {
 text-decoration:none;
 color:#000;
}

a.branco {
 text-decoration:none;
 color:#fff;
 outline:none;
 overflow-wrap:anywhere;
}

a.branco:hover {
 text-decoration:none;
 color:var(--cor-clara);
}

input[type=text],input[type=password],input[type=file],select,textarea {
 width:100%;
 max-width:800px;
 font-family:Arial,Helvetica;
 border:1px solid var(--cor-base);
 background-color:#fff;
 border-radius:4px;
 color:#000;
 margin-bottom:15px;
 padding:8px;
 outline:none;
 resize:none;
}

input[type=text]:focus,input[type=password]:focus,select:focus,textarea:focus {
 background-color:#eee;
}

input[type=file] {
 width:100%;
 max-width:350px;
}

input[type=checkbox] {
 margin:10px 4px 13px 17px;
 vertical-align:middle;
}

input[type=checkbox]:nth-child(1) {
 margin-left:0;
}

::placeholder {
 color:var(--cor-escura);
 opacity:0.4;
 font-size:0.9em;
}

button,input[type=button],input[type=submit] {
 background-color:var(--cor-base);
 border:1px solid var(--cor-base);
 border-radius:5px;
 padding:6px;
 color:#fff;
 outline:none;
 cursor:pointer;
}

button:hover,input[type=button]:hover,input[type=submit]:hover {
 background-color:var(--cor-escura);
 border:1px solid var(--cor-escura);
}

hr {
 border:0;
 width:100%;
 height:1px;
 background-color:var(--cor-base);
}

li {
 margin-left:1em;
}

blockquote {
 border-left:solid 3px var(--cor-base);
 padding-left:1em;
 font-style:italic;
}

break {
 flex-basis:100%;
 width:0; height:0; 
 overflow:hidden;
}

main {
 margin:0;
 padding:0;
}

/* Específicos */

.nosel {
 user-select:none;
 -moz-user-select:none;
 -ms-user-select:none;
 -webkit-user-select:none;
 -webkit-touch-callout:none;
 -webkit-tap-highlight-color:transparent;
}

.yessel {
 user-select:text !important;
 -moz-user-select:text !important;
 -ms-user-select:text !important;
 -webkit-user-select:text !important;
}

.noresp {
 display:initial;
}

.yesresp {
 display:none;
}

.flex {
 display:flex;
 flex-wrap:wrap;
 justify-content:center;
}

.loading {
 display:none;
 z-index:99;
}

.load1 {
 position:absolute;
 top:0; left:0;
 z-index:99;
 width:100%;
 height:100%;
 background-color:#fff;
 opacity:0.2;
}

.load2 {
 width:48px;
 height:48px;
 position:fixed;
 top:49%;
 left:49%;
 transform:translate(-50%,-50%);
 animation:rotation 1.7s infinite linear;
}

#lightbox {
 display:none;
 width:100vw;
 height:100vh;
 top:0; left:0;
 position:fixed;
 backdrop-filter:grayscale(1) brightness(0.8);
 z-index:99;
}

#lightbox-content {
 display:none;
 position:absolute;
 width:100%; max-height:100%;
 top:50%; left:50%;
 transform:translate(-50%,-50%);
 background:#fff;
 width:100%; max-height:100%;
 border:solid 5px var(--cor-base);
 border-radius:10px;
 padding:1em;
 overflow:auto;
 margin:0 auto;
}

#lightbox-close {
 position:absolute;
 top:0; right:0;
 margin:8px 4px;
 z-index:99;
}

#lightbox-close span {
 background-color:#fff;
 border:solid 8px #fff;
 padding:8px;
 border-radius:16px;
 cursor:pointer;
 box-shadow:0 0 5px;
}

#lightbox-close span:hover {
 border:solid 8px var(--cor-base);
}

@keyframes rotation {
 from { transform:rotate(0deg); }
 to { transform:rotate(359deg); }
}

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

 .noresp {
  display:none;
 }

 .yesresp {
  display:initial;
 }

 tr { 
  display:flex; 
  justify-content:center;
  flex-direction:row;
  flex-wrap:wrap;
 }

 td,th {
  flex:1;
  min-width:200px;
  margin:1em;
 }

}

@media screen and (max-width:300px) {
 body {
  font-size:0.9em;
 }
}

@media screen and (max-width:200px) {
 body { display:table-column;background:url(/imagens/layout/logotipo.png) center center / contain no-repeat fixed padding-box content-box var(--cor-bg); }
}

/* Projeto */

.topo1 {
 width:100%;
 background-color:#fff;
 box-shadow:0 3px 4px rgba(0,0,0,0.2);
 padding:20px 10px 50px;
}

.topo2 {
 width:100%;
 max-width:1300px;
 margin:0 auto;
}

.topo_icone {
 flex:1;
 max-width:40px;
 padding-top:30px;
}

.topo_endereco {
 flex:1;
 text-align:left;
 padding-left:10px;
 padding-top:30px;
 color:var(--cor-base);
 font-size:0.95em;
}

.topo_tel {
 flex:1;
 text-align:right;
 padding-right:10px;
 padding-top:28px;
 color:var(--cor-base);
 font-size:1em;
}

.topo_botao {
 display:inline-block;
 width:100%;
 max-width:180px;
 background-color:var(--cor-clara);
 border-radius:5px;
 margin-top:6px;
 padding:4px 5px 7px;
 text-align:center;
 font-size:0.85em;
 color:rgba(0,0,0,0.5);
 transition:0.3s;
}

.topo_botao:hover {
 background-color:var(--cor-base);
 color:#fff;
}

.topo_logo {
 flex:1;
 max-width:280px;
}

.logo {
 width:100%;
 max-width:280px;
}

.menu {
 width:95%;
 max-width:1160px;
 margin:-30px auto 0;
 padding:16px 5px;
 background-color:var(--cor-base);
 border-radius:5px;
 box-shadow:0 4px 3px rgba(0,0,0,0.3);
 text-align:center;
}

.menuitem {
 display:inline-block;
 margin:0 40px;
 font-size:1.05em;
 color:#fff;
}

#menu_hamb_ico {
 display:none;
 position:fixed;
 top:25px;
 right:15px;
 width:30px;
 height:30px;
 border:0;
 cursor:pointer;
 z-index:2;
}

#menu_resp {
 display:none;
 position:fixed;
 top:80px;
 left:0;
 width:100%;
 text-align:center;
 background-color:var(--cor-base);
 box-shadow:0 4px 4px rgba(0,0,0,0.3);
 padding:15px 20px 10px;
 z-index:2;
}

.menuitem_resp {
 display:inline-block;
 width:100%;
 padding:10px 0;
 color:#fff;
 cursor:pointer;
}

.menuitem_resp:hover {
 color:#fff;
}

#topo_navbar {
 position:fixed;
 display:block;
 width:100%;
 top:-60px;
 background-color:var(--cor-base);
 text-align:center;
 padding:15px 10px;
 transition:top 0.9s;
 z-index:99;
}

.rodape1 {
 width:100%;
 padding:0 30px;
}

.rodape2 {
 width;100%;
 background-color:var(--cor-base);
 border-radius:10px;
 padding:25px;
 color:#fff;
}

.rod_logo {
 display:inline-block;
 padding-right:30px;
 border-right:2px solid var(--cor-clara);
}

.rod_quadrinho {
 display:inline-block;
 width:15px;
 height:15px;
 vertical-align:top;
 margin-left:35px;
 margin-top:20px;
 background-color:var(--cor-clara);
}

.rod_endereco, .rod_telefones, .rod_redes {
 display:inline-block;
 vertical-align:top;
 text-align:left;
 padding:15px 25px 0 5px;
 font-size:0.95em;
}

.rod_redesbola {
 display:inline-block;
 width:31px;
 height:31px;
 background-color:#fff;
 border-radius:16px;
 text-align:center;
 margin-top:5px;
 padding-top:7px;
 transition:0.3s;
}

.rodico {
 width:15px;
}

.rod_redesbola:hover {
 border-radius:3px;
}

.floatwhats {
 position:fixed;
 bottom:5px;
 right:10px;
 z-index:9;
 cursor:pointer;
}

.floatwhats_img {
 width:60px;
 border:0;
 transition:0.3s;
}

.floatwhats_img:hover {
 width:80px;
}

.inweb {
 width:100%;
 padding:10px;
 text-align:center;
 font-size:0.8em;
 font-weight:bold;
}

/*** HOME ***/

.home_slider {
 width:100%;
 max-width:1220px;
 margin:50px auto 0;
 background-color:#fff;
 box-shadow:0 0 8px rgba(0,0,0,0.3);
 padding:10px;
}

.slick {
 width:100%;
 max-width:1200px;
 margin:0 auto;
 padding:0;
}

.slickseta {
 position:absolute;
 top:46%;
 z-index:1;
 cursor:pointer;
}

.slickimg {
 width:40px;
 border:0;
 margin:0 5px;
 filter:opacity(0.8);
 transition:0.3s;
}

.slickimg:hover {
 margin:0;
 filter:none;
}

.home_intro {
 width:100%;
 max-width:1220px;
 margin:0 auto 70px;
}

.home_introbox {
 flex:1;
 width:100%;
 min-width:735px;
 border-left:3px solid var(--cor-base);
 padding:50px 10px 15px 30px;
 font-size:1.05em;
 line-height:1.6em;
}

.home_introtit {
 font-size:1.7em;
 color:var(--cor-base);
}

.home_introbot {
 display:inline-block;
 width:100%;
 max-width:230px;
 background-color:var(--cor-base);
 border-radius:5px;
 text-align:center;
 padding:6px;
 font-size:0.85em;
 color:#fff;
 transition:0.3s;
}

.home_introbot:hover {
 background-color:var(--cor-escura);
 color:var(--cor-clara);
}

.home_prod {
 width:100%;
 background-color:#fff;
 box-shadow:0 0 10px rgba(0,0,0,0.2); 
 padding:50px 10px;
}

.home_prodbox {
 flex:1;
 width:100%;
 max-width:350px;
 margin:20px 40px 40px;
 color:rgba(0,0,0,0.8);
 line-height:1.4em;
 position:relative;
}

.home_prodtit {
 width:90%;
 max-width:270px;
 margin:-25px auto;
 background-color:var(--cor-clara);
 border:2px solid #fff;
 padding:6px;
 text-align:center;
 position:absolute;
 left:50%;
 transform:translateX(-50%);
 color:var(--cor-base);
 font-size:1.2em;
}

.home_prodbot {
 display:inline-block;
 width:95%;
 max-width:1200px;
 margin:20px 0;
 background-color:var(--cor-base);
 border-radius:5px;
 padding:10px;
 text-align:center;
 color:#fff;
 transition:0.3s;
}

.home_prodbot:hover { 
 background-color:var(--cor-escura);
 color:var(--cor-clara);
}

.home_pq {
 width:100%;
 max-width:1260px;
 margin:0 auto 80px;
}

.home_pqimg {
 flex:2;
 text-align:center;
 padding:25px 10px;
}

.home_pqtxt {
 flex:3;
 border-left:3px solid var(--cor-base);
 padding:70px 20px 10px 30px;
 font-size:1.05em;
 line-height:1.4em;
}

/*** INTERNAS ***/

.centro {
 width:100%;
 max-width:1260px;
 margin:0 auto;
 padding:50px 15px;
 font-size:1.05em;
 line-height:1.5em;
}

.titulo {
 width:100%;
 border-bottom:2px solid var(--cor-base);
 padding:5px;
 margin-bottom:10px;
}

h1 {
 color:var(--cor-base);
 font-weight:400;
 font-size:1.8em;
}

.empresa01 {
 flex:1;
 padding:20px;
 line-height:1.4em;
}

.empresa02 {
 flex:1;
 padding:20px 10px;
}

.empresa03 {
 border:1px solid var(--cor-base);
 border-radius:5px;
 padding:10px;
 margin-bottom:15px;
 line-height:1.3em;
}

.empresa04 {
 width:100%;
 background-color:#fff;
 box-shadow:0 0 10px rgba(0,0,0,0.2);
 padding:50px 20px;
 margin-top:-10px;
}

.empresa05 {
 flex:1;
 text-align:center;
}

.empresa06 {
 flex:1;
 padding:100px 30px 0;
 font-size:1.05em;
}

.depo {
 width:100%;
 max-width:1260px;
 margin:0 auto;
 padding:50px 15px;
 text-align:center;
}

.depobox {
 flex:1;
 max-width:460px;
 text-align:left;
 padding:10px 30px 30px;
}

.prodtopo {
 display:inline-block;
 width:100%;
 max-width:1200px;
 height:210px;
 background-image:url(/produtos/imagens/garrafas.webp);
 background-position:center;
 margin-top:10px;
}

.prodfaixa {
 width:100%;
 background-color:#fff;
 box-shadow:0 0 10px rgba(0,0,0,0.2);
 padding:50px 20px;
 margin-bottom:40px;
}

.prodbox {
 flex:1;
 max-width:400px;
 min-width:390px;
 margin:20px 10px;
 padding:15px 15px 20px;
 border:1px solid var(--cor-base);
 border-radius:15px;
}

.prodimg {
 width:100%;
 max-width:360px;
 border-radius:10px;
 margin:10px 0;
}

.criacaobox {
 flex:1;
 background-color:#fff;
 border-radius:10px;
 box-shadow:0 0 6px rgba(0,0,0,0.3);
 padding:20px 15px;
 margin:10px;
 text-align:center;
 font-size:0.95em;
 line-height:1.4em;
}

.criacaoico {
 width:60px;
}

.criacaotit {
 display:inline-block;
 width:100%;
 max-width:150px;
 background-color:var(--cor-clara);
 color:var(--cor-base);
 padding:4px;
 margin:10px 0;
}

.criacaosabia {
 width:100%;
 max-width:1200px;
 background-color:var(--cor-clara);
 border-radius:10px;
 margin:40px auto;
 padding:20px;
 line-height:1.2em;
}

.criacaobot {
 display:inline-block;
 width:100%;
 max-width:250px;
 margin:20px 0;
 background-color:var(--cor-base);
 border-radius:5px;
 padding:6px;
 text-align:center;
 color:#fff;
 transition:0.3s;
}

.criacaobot:hover { 
 background-color:var(--cor-escura);
 color:var(--cor-clara);
}

.ctt01, .ctt02 {
 flex:1;
 padding:10px 25px;
}

/***********/

@media screen and (max-width:1500px) {
 .empresa06 {
  padding:0 30px;
 }
}

@media screen and (max-width:1000px) {
 .topo1 {
  padding:10px 15px 30px;
 }
 .topo_icone {
  display:none;
 }
 .topo_endereco {
  padding-left:0;
  padding-top:20px;
  font-size:0.9em;
 }
 .topo_tel {
  padding-right:0;
  padding-top:18px;
 }
 .topo_logo {
  max-width:210px;
 }
 .logo {
  max-width:210px;
 }
 .menu {
  margin:-25px auto 0;
  padding:12px 5px;
 }
 .rodape1 {
  padding:0 20px;
  text-align:center;
 }
 .rod_logo {
  width:100%;
  text-align:center;
  padding:0 0 15px;
  border-right:0;
 }
 .rod_quadrinho {
  margin-left:0;
 }
 .rod_endereco, .rod_telefones, .rod_redes {
  padding:15px 25px 0 5px;
  font-size:0.9em;
 }
 .home_prod {
  padding:20px 10px;
 }
 .home_prodbox {
  margin:20px 15px;
 }
 .home_prodtit {
  width:80%;
  font-size:1.1em;
 }
 .home_pq {
  margin:0 auto 50px;
 }
 .home_pqimg {
  padding:15px 10px 0 0;
 }
 .home_pqtxt {
  padding:40px 20px 10px 30px;
 }
 .centro {
  padding:35px 15px;
 }
 .titulo {
  margin-bottom:0;
 }
 h1 {
  font-size:1.6em;
 }
 .empresa04 {
  padding:30px 20px;
  margin-top:-20px;
 }
 .empresa05 {
  flex:none;
  display:inline-block;
  width:100%;
 }
 .empresa06 {
  flex:none;
  display:inline-block;
  width:100%;
  max-width:800px;
  padding:20px 5px 0;
  font-size:1em;
 }
 .ctt01, .ctt02 {
  padding:10px 15px;
 }
}

@media screen and (max-width:800px) {
 .topo_endereco {
  display:none;
 }
 .menu {
  padding:10px 5px;
 }
 .menuitem {
  margin:0 20px;
  font-size:0.95em;
 }
 .home_slider {
  margin:30px auto 0;
 }
 .home_intro {
  margin:0 auto;
 }
 .home_introbox {
  flex:none;
  display:inline-block;
  min-width:auto;
  border-left:0;
  padding:40px 25px;
 }
 .home_prodbox {
  flex:none;
  max-width:300px;
 }
 .home_pqtxt {
  padding:40px 20px 10px 20px;
  font-size:1em;
 } 
 .criacaobox {
  flex:none;
  width:100%;
  max-width:600px;
  margin:10px 0;
 }
 .criacaosabia {
  font-size:0.9em;
 }
 .ctt {
  flex-direction:column-reverse;
 }
 .ctt01, .ctt02 {
  flex:none;
  display:inline-block;
  width:100%;
  max-width:600px;
  margin:0 auto;
  padding:0 5px 30px;
 }
}

@media screen and (max-width:650px) {
 .topo1 {
  padding:8px 8px 4px;
  position:fixed;
  top:0;
  left:0;
  z-index:2;
 }
 .topo_tel, .menu, #topo_navbar {
  display:none;
 }
 .topo_logo {
  flex:none;
  display:inline-block;
  width:100%;
  max-width:none;
 }
 .logo {
  max-width:120px;
 }
 #menu_hamb_ico {
  display:inline-block;
 }
 .rodape1 {
  padding:0 15px;
  text-align:left;
 }
 .rodape2 {
  padding:15px 15px 0;
 }
 .rod_quadrinho {
  width:12px;
  height:12px;
  margin-top:5px;
 }
 .rod_endereco, .rod_telefones, .rod_redes {
  width:95%;
  padding:0 0 15px 5px;
 }
 .floatwhats {
  bottom:0;
  right:10px;
 }
 .floatwhats_img {
  width:50px;
 }
 .floatwhats_img:hover {
  width:50px;
 }
 .inweb {
  text-align:left;
  padding-left:20px;
  font-size:0.75em;
 }
 .home_slider {
  margin:110px auto 0;
  padding:7px;  
 }
 .slickimg {
  width:30px;
  margin:0;
 }
 .home_introbox {
  padding:30px 25px 40px;
  font-size:1em;
  line-height:1.5em;
 }
 .home_introbot {
  max-width:200px;
 }
 .home_prodbox {
  margin:20px 10px;
  font-size:0.95em;
 }
 .home_prodbot {
  max-width:380px;
 }
 .home_pq {
  margin:0 auto 50px;
 }
 .home_pqimg {
  flex:none;
  display:inline-block;
  width:100%;
  max-width:300px;
  padding:15px 10px;
 }
 .home_pqtxt {
  flex:none;
  display:inline-block;
  width:100%;
  border-left:0;
  padding:20px 20px 10px;
  line-height:1.6em;
 }
 .centro {
  padding:105px 15px 40px;
  font-size:0.95em;
  line-height:1.4em;
 }
 .titulo {
  text-align:center;
 }
 h1 {
  font-size:1.5em;
 }
 .empresa01 {
  flex:none;
  display:inline-block;
  width:100%;
  padding:5px;
  line-height:1.4em;
 }
 .empresa02 {
  flex:none;
  display:inline-block;
  width:100%;
  padding:5px;
 }
 .depo {
  padding:40px 15px;
 }
 .depobox {
  padding:10px 15px;
 }
 .prodtopo {
  height:150px;
  background-size:cover;
 }
 .prodfaixa {
  padding:30px 30px 10px;
  margin-bottom:20px;
 }
 .prodbox {
  flex:none;
  display:inline-block;
  width:100%;
  max-width:500px;
  min-width:auto;
  margin:0 0 30px;
  padding:10px 15px 20px;
 }
 .criacaoico {
  width:45px;
 }
 .criacaosabia {
  margin:20px auto;
  padding:20px 15px;
 }
}

@media screen and (max-width:500px) {
 .depobox {
  flex:none;
  display:inline-block;
  width:100%;
  padding:0 5px 25px;
 }
}

@media screen and (max-width:380px) {
 .rod_quadrinho {
  display:none;
 }
 .home_prod {
  padding:20px;
 }
}