@font-face {
  font-family: Regular;
  src: url(/assets/fonts/corbel.ttf);
  font-display: swap;
}

:root {
    --verde-purigilo: #55b800;
    --cinza-claro: #e0e0e0;
    --cinza-escuro: #444;
    --preto: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Regular;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

div.mobile-menu{
  position: fixed; 
  top: 0rem; 
  left: 0rem;
  height: auto;
  width: 100%; 
  z-index: 1000;
}

div.linha-copy{
    display: flex;
    align-items: center;
    flex-direction: row;
    text-align: center; 
    justify-content: center;
}
.footer-link {
    color: #55b800;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    text-decoration: underline;
    color: #1f5c36;
}

.container {
  max-width: 65.625rem;
  width: 90%;
  margin: auto;
}

.navbar {
  width: 100%;
  box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
}

.navbar .menu-items {
  display: flex;
}

.navbar .nav-container li {
  list-style: none;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #0e2431;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
}

.navbar .nav-container a:hover{
  font-weight: bolder;
}

.nav-container {
  display: block;
  position: relative;
  height: 3.75rem;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 2rem;
  width: 2rem;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 1.625rem;
  width: 2rem;
  position: absolute;
  top: 1.063rem;
  left: 1.25rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 0.25rem;
  width: 100%;
  border-radius: 0.625rem;
  background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
  padding-top: 0.625rem;
  box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
  background-color: white;
  height: 100vh;
  width: 100%;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: -2.5rem;
  padding-left: 3.125rem;
  transition: transform 0.5s ease-in-out;
  text-align: center;
}

.navbar .menu-items img{
  width: 6.25rem;
  align-self: center;
  justify-self: center;
  height: 6.25rem;
  margin-bottom: 1.25rem;
}

.navbar .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.logo {
  position: absolute;
  top: 0.313rem;
  right: 0.938rem;
  font-size: 1.2rem;
  color: #0e2431;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked ~ .logo{
  display: none;
}

nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  background: #ffffff;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

nav div.navbar{
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 80px;
  background: #ffffff;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

nav div.wrapper {
  position: relative;
  max-width: 100%;
  padding: 0rem 0%;
  height: 7.5rem;
  line-height: 4.375rem;
  padding: 0rem 3.125rem 0rem 3.125rem;
  margin: auto;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 6.25rem;
  justify-content: space-between ;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6.25rem;
  justify-content: center;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: var(--verde-purigilo);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0.563rem 0.938rem;
  border-radius: 0.313rem;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: #3a3b3c3b;
}

.nav-links .mobile-item {
  display: none;
}

.nav-links .drop-menu {
  position: absolute;
  background: #ffffff;
  width: 15.625rem;
  line-height: 2.813rem;
  top: 5.313rem;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 4.375rem;
  opacity: 1;
  visibility: visible;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0rem 0rem 0rem 0.938rem;
  font-weight: 400;
  border-radius: 0rem;
}

.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0rem 1.875rem;
  top: 5.313rem;
  opacity: 0;
  visibility: hidden;
}

.mega-box .content {
  background: var(--preto);
  padding: 1.563rem 1.25rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 2.813rem;
}

.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content .row header {
  color: #f2f2f2;
  font-size: 1.25rem;
  font-weight: 500;
}

.content .row .mega-links {
  margin-left: -2.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
  padding: 0rem 1.25rem;
}

.row .mega-links li a {
  padding: 0rem 1.25rem;
  color: #d9d9d9;
  font-size: 1.125rem;
  display: block;
}

.row .mega-links li a:hover {
  color: #f2f2f2;
}

.wrapper .btn {
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 1.875rem;
  top: 0.625rem;
}

nav input {
  display: none;
}

section.section-mapa{
  padding: 0rem;
  position: relative;
  z-index: 1;
}

section.nossas-lojas{
  position: relative;
  z-index: 2;
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 2.5rem; 
  padding: 2.5rem 0rem; 
  background: #f8f8f8;
  margin-top: -5rem;
  border-radius: 3.125rem;
}

.desktop-menu {
  display: none;
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  z-index: 1000;
}

a.link-maps{
  text-decoration: none;
  outline: none;
}

.rodape {
  position: relative; 
  z-index: 2;
  padding: 2% 5%;
  display: flex;
  background-color: white;
  color: black;
  align-items: center;
  justify-content: space-between;
}

footer.rodape img.img-rodape{
  position: absolute;
  z-index: 1; 
  bottom: 0rem; 
  right: -7.5rem;  
  height: 18.75rem; 
  object-fit: cover;
}

.div-rodape {
  width: 12.5rem;
  position: relative; 
  z-index: 2;
}

@media (max-width: 900px) {
  .apresentacao-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
  .apresentacao-galeria, .apresentacao-detalhes {
    min-width: 0;
  }
}

.mobile-menu {
  display: block;
}

@media (min-width: 900px) {
  .desktop-menu {
    display: block;
  }
  .mobile-menu {
    display: none;
  }
}

.menu-spacer {
  height: 5rem;
}

@media (min-width: 900px) {
  .menu-spacer {
    height: 8.125rem;
  }
}

#map {
  width: 100%;
  height: 50vh;
  z-index: 1;
  position: relative;
}

.cadastre-pdv-chamada {
  flex: 1 1 320px;
  max-width: 25rem;
  padding: 2rem 1.5rem;
  margin: 0rem 0rem 1.5rem 0rem;
  text-align: center;
  max-height: 12.5rem;
}

.cadastre-pdv-chamada h2 {
  color:var(--verde-purigilo);
  font-size: 1.875rem;  
  margin-bottom: 1rem;  
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: none;
} 

.cadastre-pdv-chamada h1 {
  color:var(--verde-purigilo);
  font-size: 2.188rem;
  margin-bottom: 1rem;
}

.cadastre-pdv-chamada p {
  color: var(--preto);
  margin-bottom: 1.25rem;
  font-size: 1.563rem;
}

.vertical-divider {
  width: 0.125rem;
  background: #e0e0e0;
  margin: 0rem 1.5rem;
  min-height: 21.25rem;
  align-self: stretch;
}

@media (max-width: 768px) {
  .cadastre-pdv-chamada{
    margin-bottom: 15.625rem;
  }
  .vertical-divider {
    display: none !important;
  }
}

.cadastre-pdv-form {
  flex: 1 1 320px;
  max-width: 26.25rem;
  padding: 2rem 1.5rem;
}

#form-cadastro-revendedor {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#form-cadastro-revendedor h4 {
  color: var(--verde-purigilo);
  margin-bottom: 0.5rem;
  font-size: 1.875rem;
}

.form-row {
  display: flex;
  gap: 0.75rem;
}

#form-cadastro-revendedor label {
  flex: 1;
}

#form-cadastro-revendedor input,
#form-cadastro-revendedor select,
#form-cadastro-revendedor textarea {
  width: 100%;
  padding: 0.625rem;
  border-radius: 0.375rem;
  border: 1px solid #ccc;
  margin-top: 0.25rem;
}

#form-cadastro-revendedor button {
  background: var(--verde-purigilo);
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
}

#cadastro-sucesso {
  font-size: 1.875rem;
  display: none;
  color: var(--verde-purigilo);
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 320px) and (min-width: 100px) {
  section.nossas-lojas{
    height: 250vh;
  }
}