:root {
  --font-base: 1rem;
  --font-family: "Inter", sans-serif;
  --color-primary: #375061;
  --color-text: #383838;
  --color-secondary: #F2921D;
  --color-whatsapp-bottom: #1FCA41;
  --color-whatsapp-top: #43EC62;
  --color-bg-product: #476579;
  --border-product: 0.5px solid #fff;
  --color-text-footer: rgba(255, 255, 255, 0.4);
}

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

body {
  font-family: var(--font-family);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
}

hr {
  width: 8%;
  opacity: 100;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

#menu-icon {
  background-color: var(--color-secondary);
}

#close-icon {
  background-color: var(--color-secondary);
}

.side-menu {
  color: var(--color-text);
}

.side-menu a {
  text-decoration: none;
}

.top-bar {
  width: 100vw;
  background-color: var(--color-primary);
  color: white;
  padding: 0 1.875rem;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
}

.footer {
  background-color: var(--color-primary);
  color: var(--color-text-footer);
}

.logo-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0.7rem;
}

.logo-center img {
  height: 100%;
  width: auto;
}

.top-bar-container {
  width: 100%;
  height: 100%;
}

.side-menu a.active-link {
  font-weight: bold;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.625rem 1.875rem;
  gap: 0.625rem;
}

.footer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-text p {
  margin: 0;
  text-align: center;
}

@media (max-width: 576px) {

  #menu-icon {
    padding: 0.313rem;
    width: 1.8rem;
    border-radius: 0.188rem;
  }

  #close-icon {
    padding: 0.313rem;
    width: 1.8rem;
    border-radius: 0.188rem;
  }

  #sideMenu {
    padding: 1.25rem 1.875rem;
  }

  #sideMenu a {
    text-decoration: none;
    padding: 0;
  }

  .logo-center {
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    position: absolute;
  }

  .side-menu {
    position: fixed;
    top: 0;
    left: -50vw;
    width: 50vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    transition: left 0.5s ease-in-out;
    z-index: 1000;
    gap: 0.938rem;
    background-color: #fff;
  }

  .side-menu a {
    padding: 1rem;
  }

  .side-menu.active {
    left: 0;
  }

  .top-bar {
    height: 3.75rem;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 999;
  }

  .overlay.active {
    display: block;
  }

  .popup-content h2 {
    margin: 0;
  }

  .popup-content form {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 10px;
    gap: 10px;
  }

  .field-input {
    padding: 5px;
  }

  .popup-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
  }

  .container-menu {
    display: flex;
    flex-direction: column;
  }

  .container-menu a {
    color: black;
  }

}

@media (min-width: 992px) {

  .side-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }

  .side-menu a {
    color: white;
  }

  .container-menu {
    display: flex;
    width: max-content;
    gap: 1rem;
  }

  .side-menu a.active-link {
    color: var(--color-secondary);
  }

  #close-icon {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .top-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    min-height: 50px;
    padding: 0 3rem;
    align-items: center;
  }

}

@media(min-width: 768px) {
}