* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
    scroll-behavior: smooth;
    transition: background-color 0.5s;
}

.light-mode {
    --background-color: #ffffff;
    --text-color: #000000;
    --header-background-color: #f1f1f1;
    --button-background-color: #333;
    --button-text-color: #fff;
  }
  
  /* Estilos globais para o modo escuro */
  .dark-mode {
    --background-color: #121212;
    --text-color: #e0e0e0;
    --header-background-color: #1f1f1f;
    --button-background-color: #e0e0e0;
    --button-text-color: #333;
  }
.footer{
    background: linear-gradient(135deg, #36c7ae, #7fbe8d);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px; /* Altura do rodapé */
    width: 100%;
    margin: 0px;
}
.nav-bar {
    display: flex;
    min-width: 1280px;
    margin: 0 auto;
    padding: .5% 1%;
    gap: 20px;
    justify-content: center;
}

html, body {
    height: 100%;
    /* overflow-y: hidden; */
    background-color: var(--background-color);
}

header {
    padding: 0px 0;
    background: linear-gradient(90deg, #36c7ae, #7fbe8d);
    display: flex;
}

.logo {
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 5px;
    cursor: pointer;
    text-decoration: none;
}

.logo-icon {
    width: 60px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.pages {
    color: #c2e0c8;
    text-decoration: none;
    font-weight: 600;
    z-index: 1;
    /* background: #36c7ae; */
    padding: 10px 20px 10px 20px;
    border-radius: 15px;
    transition: .3s ease-in-out;
    font-size: 15px;
}

.selected {
    color: #ffffff;
}

.pages:hover {
    color: #ffffff;
    background: #ffffff38;
    animation: pulse 2s infinite;
}

.verificado {
    width: 225px;
}

.section {
    display: flex;
    flex-direction: column;
    margin: 90px;
    align-items: center;
    text-align: center;
}

.fade {
    background: url(fundo3.png);
    background-size: 100%;
    width: 100%;
    height: 75%;
    background-position: bottom;
    position: absolute;
    opacity: .6;
}

.titulo {
    color: #36c7ae;
    font-size: 46px;
    font-weight: 700;
}

.titulo br {
    left: 255px;
    position: absolute;
}

.texto {
    font-size: 32px;
    font-weight: 400;
    color: #bbbbbb;
}

@-webkit-keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgb(255 255 255 / 40%);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(255 , 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(255 255 255 / 0%);
    }
  }
  @keyframes pulse {
    0% {
      -moz-box-shadow: 0 0 0 0 rgb(255 255 255 / 40%);
      box-shadow: 0 0 0 0 rgb(255 255 255 / 40%);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
        box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
  }

  main {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
}

main.main-page#blur2.active {
    filter: blur(10px);
}

.header#blur.active {
    filter: blur(10px);
}



main.about-us-page#blur-about-us2.active {
    filter: blur(10px);
}

.header#blur-about-us.active {
    filter: blur(10px);
}


.buttons {
    display: flex;
    gap: 75px;
    margin: 30px;
}

.button {
    width: 350px;
    height: 400px;
    background: linear-gradient(135deg, #36c7ae, #7fbe8d);
    cursor: pointer;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
}

.theme-toggle-btn {
    width: 350px;
    height: 400px;
    background: linear-gradient(135deg, #36c7ae, #7fbe8d);
    cursor: pointer;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
}
.login {
    background: white;
    color: #add5b5;
    text-decoration: none;
    font-weight: 600;
    z-index: 1;
    padding: 10px 20px 10px 20px;
    border-radius: 15px;
    transition: .3s ease-in-out;
    font-size: 20px;
}

.login:hover {
    color: #96ff96;
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.brand-name {
    font-size: 14px;
}

.login-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 1;
}

.login-page {
    display: none;
    position: fixed;
    width: 80%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.login-form {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-input {
    width: 25%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #00000061;
    box-sizing: border-box;
    border-radius: 5px;
    outline: none;
}

.login-button {
    width: 25%;
    padding: 15px;
    border: none;
    background: linear-gradient(135deg, #36c7ae, #7fbe8d);
    color: #ffffff;
    cursor: pointer;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
}

#toggle-nav-bar {
    display: none;
}

.register-link {
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
    color: #0000008c;
}

.register-page {
    display: none;
    position: fixed;
    width: 80%;
    height: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.register-form {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;}

.register-input {
    width: 25%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #00000061;
    box-sizing: border-box;
    border-radius: 5px;
    outline: none;
}

.register-button {
    width: 25%;
    padding: 15px;
    border: none;
    background: linear-gradient(135deg, #36c7ae, #7fbe8d);
    color: #ffffff;
    cursor: pointer;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
}

.login-form h2 {
    margin-bottom: 50px;
    font-size: 50px;
    background: -webkit-linear-gradient(315deg, #36c7ae, #7fbe8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.register-link a {
    font-weight: 700;
    color: #36c7ae;
    cursor: pointer;
}

.register-form h2 {
    margin-bottom: 50px;
    font-size: 50px;
    background: -webkit-linear-gradient(315deg, #36c7ae, #7fbe8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
    color: #0000008c;
}

.login-link a {
    font-weight: 700;
    color: #36c7ae;
    cursor: pointer;
}

.button-img img {
    width: 85%;
    height: 75%;
    position: absolute;
    right: 0;
    border-radius: 5px;
}

.button-text {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-top: 10%;
    text-align: center;
    transition: .3s;
    width: 350px;
    height: 400px;
}

.button-img {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 350px;
    height: 400px;
    position: absolute;
    text-align: right;
    transition: .3s;
}


.copyright-text {
    font-size: 18px;
    font-weight: 500;
    color: white;
}

.close-btn {
    width: 35px;
    height: 35px;
    background: url(close-icon.png);
    background-size: 100%;
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;
    cursor: pointer;
}

.close-btn:hover {
    background: url(close-icon-hover.gif);
    background-size: 100%;
}

.button:hover .button-text {
    margin-top: 50%;
    z-index: 3;
    transform: scale(1.3);
}

.button:hover .button-img {
    filter: blur(10px);
    background-color: #00000080
}

.bar {
    background: linear-gradient(315deg, #36c7ae, #7fbe8d);
    width: 15px;
    border-radius: 10px;
}

.informations-title {
    font-size: 38px;
    font-weight: 700;
    color: #000000;
}

.informations-description {
    font-size: 18px;
    font-weight: 500;
    color: #00000080;
}

.informations {
    display: flex;
    flex-direction: row;
    margin: 20px 60px 20px 60px;
    text-align: left;
    gap: 15px;
}

.copyright-text br {
    display: none;
}


.map-section {
    display: none;
    flex-direction: column;
    height: 600px;
    width: 84.5%;
    gap: 20px;
    transition: all .4s;
    margin-bottom: 100px;
}

.map-text {
    color: #00000080;
    font-weight: 500;
    font-size: 20px;
}

.map-filter {
    background: -webkit-linear-gradient(315deg, #36c7ae, #7fbe8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 33px;
}

.map {
    height: 100%;
    width: 100%;
    border-radius: 5px;
}

.nav-page {
    display: none;
}

.location-page {
    display: none;
    position: fixed;
    width: fit-content;
    height: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.location-form h2 {
    font-size: 20px;
    background: -webkit-linear-gradient(315deg, #36c7ae, #7fbe8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-text-box {
    width: 300px;
    padding: 10px;
    border: 1px solid #00000061;
    box-sizing: border-box;
    border-radius: 5px;
    outline: none;
    font-size: 18px;
}

.location-button .tooltip {
  visibility: hidden;
  background-color: #00000080;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  width: 120px;
  top: 125%;
  left: 50%;
  margin-left: -60px;
}

.location-button .tooltip::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #00000080 transparent;
}

.location-button:hover .tooltip {
  visibility: visible;
}

.location-button {
    width: 45px;
    padding: 10px;
    border: none;
    background: linear-gradient(135deg, #36c7ae, #7fbe8d);
    color: #ffffff;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    position: relative;
    display: inline-block;
}

.location-button svg {
    width: 14px;
    height: 14px;
    transform: scale(1.5);
}

.location-input {
    display: flex;
    gap: 5px;
    align-items: center;
}

.cep-link {
    text-align: center;
    font-weight: 500;
    color: #0000008c;
    cursor: pointer;
}

.location-search-button {
    width: 100%;
    padding: 15px;
    border: none;
    background: linear-gradient(135deg, #36c7ae, #7fbe8d);
    color: #ffffff;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
}

.map-space {
    display: none;
}

.button-space {
    display: none;
    height: 40px;
}

#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

#popup-overlay2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

#popup-overlay3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

#popup-overlay4 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

#popup-overlay5 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.login-register-page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-register-logo {
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 5px;
    cursor: pointer;
    margin-top: 50px;
    text-decoration: none;
}

.login-register-text {
    margin: 50px;
    font-size: 50px;
    background: -webkit-linear-gradient(315deg, #36c7ae, #7fbe8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-register-area form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-register-input {
    width: 450px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #00000061;
    background: transparent;
    box-sizing: border-box;
    border-radius: 5px;
    outline: none;
}

.login-register-button {
    width: 450px;
    padding: 15px;
    border: none;
    background: linear-gradient(135deg, #36c7ae, #7fbe8d);
    color: #ffffff;
    cursor: pointer;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
}

.login-register-button-google {
    width: 450px;
    padding: 15px;
    border: none;
    background: linear-gradient(135deg, #36c7ae, #7fbe8d);
    color: #ffffff;
    cursor: pointer;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration:none; 
    text-align: center;
}

.login-register-redirect {
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
    color: #0000008c;
    background: transparent;
    border: none;
    cursor: pointer;
}

.login-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-name {
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    z-index: 1;
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
    transition: .3s ease-in-out;
    font-size: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.user-name2 {
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    z-index: 1;
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
    transition: .3s ease-in-out;
    font-size: 20px;
    display: block;
}

.user-icon {
    width: 60px;
    height: 60px;
    background: url(../assets/user.png);
    background-size: 100%;
    display: flex;
    margin-right: 15px;
}

#NomeDeUsuario {
    margin: 10px;
    max-width: 425px;
}


  
  .slider_container {
    position: relative;
    max-width: 1442px;
    min-height: 570px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
  }
  .slider {
    position: relative;
    width: 400%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    animation: 30s cubic-bezier(1, 0.95, 0.565, 1) sliding infinite;
  }
  .slide {
    position: relative;
    min-width: 100%;
    height: 98%;
  }
  .slide img {
    width: 100%;
    height: auto;
  }
  .slide .caption {
    position: absolute;
    left: 0;
    bottom: 5%;
    font-size: 5rem;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
    background: rgba(0, 0, 0, 0.348);
    backdrop-filter: blur(10px);
    padding: 1rem 5rem;
    border-radius: 0 2rem 2rem 0;
  }
  @keyframes sliding {
    0% {
      transform: translateX(0%);
    }
    20% {
      transform: translateX(0%);
    }
    25% {
      transform: translateX(-100%);
    }
    45% {
      transform: translateX(-100%);
    }
    50% {
      transform: translateX(-200%);
    }
    70% {
      transform: translateX(-200%);
    }
    75% {
      transform: translateX(-300%);
    }
    95% {
      transform: translateX(-300%);
    }
    100% {
      transform: translateX(-400%);
    }
  }
/*========
BODY TEXT
========*/

/*HEADING*/
.custom-text--heading {
    color: #36c7ae;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 18px;
}

/*BODY TEXT*/
.custom-text--copy {
    color: #bbbbbb;
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 30px;
}

/*LINK OR BUTTON*/
.custom-text--button {
    background: #252528;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    width: fit-content;
    cursor: pointer;
    text-decoration: none;
    text-transform: UPPERCASE;
}

/*HOVER AND KEYBOARD FOCUS EFFECT*/
.custom-text--button:hover, .custom-text--button:active, .custom-text--button:focus {
    background: #32343a;
    outline: 2px solid #425ccd;
}

/*====
MEDIA 
=====*/

/*PICTURE OR IMAGE*/
.custom-media--image {
    width: 100%;
    box-sizing: border-box;
    border-radius: 17px;
}


/*==============================================
GENERAL LAYOUT

To make changes from this point on, 
we recommend having a basic understanding of CSS
===============================================*/

.custom-cont{
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 40px;
}

.custom-container {
    margin: auto;
    max-width: 1442px;
    text-align: center;
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.custom-text {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.custom-media {
  display: flex;
  justify-content: center;
}






.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }

  .rectangle {
    background-color: #36c7ae;
    border-radius: 10px;
    padding: 46px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1440px;
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
}

h1 {
    font-size: 43px;
    margin-bottom: 10px;
    color: white;
}

h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #e2e2e2;
    font-weight: 600;
}

button {
    padding: 10px 20px;
    font-size: 22px;
    color: #36c7ae;
    background-color: #ffffff;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 800;
}

button:hover {
    color: #ffffff;
    background: #ffffff38;
    animation: pulse 2s infinite;
}
@media screen and (max-width: 600px) {
    header {
        padding: 20px 0;
        background: linear-gradient(135deg, #36c7ae, #7fbe8d);
        display: flex;
        position: fixed;
        z-index: 3;
    }
    .rectangle{
        max-width: 400px;
    }
    .logo {
        z-index: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        padding: 5px;
        cursor: pointer;
    }

    .logo-icon {
        width: 50px;
    }

    .logo-text {
        font-size: 20px;
        font-weight: 600;
        color: white;
    }

    .brand-name {
        font-size: 12px;
    }

    .nav-bar {
        display: flex;
        min-width: 1280px;
        margin: 0 auto;
        padding: 0 1%;
        gap: 20px;
        justify-content: space-between;
        align-items: center;
    }

    .menu {
        display: none;
    }

    .buttons {
        flex-direction: column;
    }

    .login-menu {
        display: none;
    }

    #toggle-nav-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 7px;
        border: 0;
        background: transparent;
        height: 29px;
        position: fixed;
        right: 5%;
    }
    
    #toggle-nav-bar span {
        width: 50px;
        height: 5px;
        border-radius: 10px;
        background: #ffffff;
        transition: all .4s;
    }
    
    #toggle-nav-bar.active span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    #toggle-nav-bar.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    #toggle-nav-bar.active span:nth-child(3) {
        transform: rotate(45deg) translate(-9px, -8px);
    }
    


    .copyright-text br {
        display: block;
    }

    .copyright-text {
        font-size: 14px;
        font-weight: 500;
        color: white;
    }

    .section {
        display: flex;
        flex-direction: column;
        margin: 125px 20px 20px 20px;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .titulo {
        background: -webkit-linear-gradient(315deg, #36c7ae, #7fbe8d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 37px;
        font-weight: 700;
    }

    .texto {
        font-size: 18px;
        font-weight: 500;
        color: #00000080;
    }

    .nav-page {
        background: linear-gradient(135deg, #36c7ae, #7fbe8d);
        display: flex;
        position: absolute;
        top: 0;
        width: 100%;
        height: 0%;
        transition: all .4s;
        z-index: -1;
    }

    .open {
        display: flex;
        z-index: 1;
    }


    .nav-page .menu {
        display: flex;
        position: absolute;
        top: 15%;
        flex-direction: column;
    }

    .nav-page .login-menu {
        display: flex;
        position: absolute;
        bottom: 10%;
    }

    .nav-page .login-menu .login {
        padding: 10px 140px 10px 140px;
    }

    .menu-hide {
        display: none;
    }

    .bar {
        width: 60px;
    }

    .location-page {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .location-form {
        align-items: center;
        margin-top: 80px;
    }

    .location-form h2 {
        position: absolute;
        left: 0;
        top: 0;
        margin: 20px;
    }

    .location-search-button {
        width: 90%;
        position: absolute;
        bottom: 30px;
    }

    .map-space {
        display: block;
        height: 100px;
    }

    .map {
        height: 150%;
    }

    .map-section {
        width: 82%;
    }

    .button-space {
        display: block;
    }

    .login-register-input {
        width: 350px;
    }
    
    .login-register-button {
        width: 350px;
    }

    .login-link {
        margin-top: 0;
        position: absolute;
        bottom: 5%;
    }

    .register-link {
        margin-top: 0;
        position: absolute;
        bottom: 5%;
    }

    .user-icon {
        margin-bottom: 15px;
    }

    .user-name {
        flex-direction: column;
    }
}




/*HEADING*/
.custom-text--heading-copy {
    color: #36c7ae;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 18px;
}

/*BODY TEXT*/
.custom-text--copy {
    color: #bbbbbb;
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 30px;
}

/*LINK OR BUTTON*/
.custom-text--button-copy {
    background: #252528;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    width: fit-content;
    cursor: pointer;
    text-decoration: none;
    text-transform: UPPERCASE;
}

/*HOVER AND KEYBOARD FOCUS EFFECT*/
.custom-text--button-copy:hover, .custom-text--button-copy:active, .custom-text--button-copy:focus {
    background: #32343a;
    outline: 2px solid #425ccd;
}

/*====
MEDIA 
=====*/

/*PICTURE OR IMAGE*/
.custom-media--image-copy {
    width: 100%;
    box-sizing: border-box;
    border-radius: 17px;
}


/*==============================================
GENERAL LAYOUT

To make changes from this point on, 
we recommend having a basic understanding of CSS
===============================================*/

.custom-cont-copy{
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 40px;
}

.custom-container-copy {
    margin: auto;
    max-width: 1442px;
    text-align: center;
}

.custom-content-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.custom-text-copy {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.custom-media-copy {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 950px) {
 .custom-content-copy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 0px;
    margin: 20px;
 }
  .custom-text-copy {
    padding: 60px;
    margin: auto;
    width: 90%;
    text-align: center;
    grid-row: 2;
  }
  .slider_container-copy{
    min-height: 235px;
  }
  .custom-text--heading-copy {
    text-align: center;
  }
  .custom-text--button-copy {
    display: flex;
    margin: auto;
  }
}

@media screen and (max-width: 568px) {
  .custom-text-copy {
    padding: 60px 20px;
}
  .custom-text--heading-copy {
    font-size: 25px;
  }
  .custom-text--copy-copy,
  .custom-text--button-copy {
    font-size: 16px;
  }
}

.container {
    width: 90%;
    max-width: 1430px;
    text-align: center;
    margin: 20px auto;
}

.container h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #36c7ae;
}

.container h7 {
    font-size: 2.5em;
    font-weight: 800;
    color: #36c7ae;
    margin-bottom: 44px;
}

.categories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.category {
    text-align: center;
    width: 30%;
    margin-bottom: 30px;
    /* margin: 0 5px 20px 15px; */
}

.category img {
    width: 40%;
    height: auto;
    border-radius: 8px;
}

.category h3 {
    margin-top: 10px;
    font-size: 1.5em;
    color: #36c7ae;
}

.category p {
    margin-top: 5px;
    color: #bbbbbb;
    font-weight: 500;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .category {
        width: 100%;
    }
}
button i {
    margin-right: 8px; /* Espaço entre o ícone e o texto */
}
@media only screen and (max-width: 950px) {
    .custom-content {
       display: grid;
       grid-template-columns: 1fr;
       gap: 0px;
       padding: 0px;
       margin: 20px;
    }
     .custom-text {
       padding: 60px;
       margin: auto;
       width: 90%;
       text-align: center;
       grid-row: 2;
     }
     .slider_container{
       min-height: 235px;
     }
     .custom-text--heading {
       text-align: center;
     }
     .custom-text--button {
       display: flex;
       margin: auto;
     }
   }
   
   @media screen and (max-width: 568px) {
     .custom-text {
       padding: 60px 20px;
   }
     .custom-text--heading {
       font-size: 25px;
     }
     .custom-text--copy,
     .custom-text--button {
       font-size: 16px;
     }
   }

   
   .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 20px;
    gap: 20px;
}

.left, .right {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.left {
    /* border-right: 2px solid #ddd; */
}

iframe {
    width: 100%;
    height: 315px;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
}


.right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ingredients {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ingredient {
    background-color: #ffffff;
    border: 1px solid #36c7ae;
    padding: 10px;
    border-radius: 14px;
    text-align: center;
    flex: 1 1 150px; /* Cada item terá ao menos 150px de largura, mas se adaptará conforme necessário */
    max-width: 200px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

}


.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-button {
    padding: 10px 20px;
    font-size: 16px;
    color: #36c7ae;
    background-color: #ffffff;
    border: 2px solid #36c7ae;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.filter-button.active {
    background-color: #36c7ae;
    color: #ffffff;
}

.filter-button:hover {
    background-color: #36c7ae;
    color: #ffffff;
}