.intro-content{
    position: relative;
    /* top: -6rem; */
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--gap);
    min-height: 100vh;

}
.banner-agregando {
    width: 100%;
    height: 58vh;
    border-radius: 25px;
    margin-bottom: 1vh;
}
a.button-agregando {
    font-weight: 700;
    font-size: larger;
    color: #ffffff;
    border-radius: 15px;
    padding: 8px;
    background-color: black;
}
a.button-agregando:hover {
    background-color: #245f18;
    color: #000000;
}
.text-index {
    font-size: 3rem;
    padding-top: 5vh;
}
.text-h2 {
    font-size: 2rem;
}
.text-h2-sobre {
    font-size: 1.4rem;
}
.funcionamentos {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.text-funcionamento {
    max-width: 1200px;
    padding-bottom: 8vh;
}
.text-funcionamento > h2 {
    text-align: center;
}

.intro-text-content, .intro-img {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
}
.intro-text-content > h1 {
    font-weight: 200;
    font-style: italic;
    font-size: 3rem;
}
.whatsapp-btn > a {
    padding: 7px;
    height: 7vh;
    display: flex;
}
.whatsapp-btn > a:hover {
    box-shadow: none;
}
.whatsapp-btn {
    cursor: pointer;
    width: 30vh;
    border: solid 1px black;
    background-color: rgb(10, 160, 165);
    display: flex;
    justify-content:center ;
}

.intro-img img{
    max-width: 100%;
    height: auto;
}
.top3-content {
    max-width: 64rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    min-height: 100vh;
    justify-content: center;
    text-align: center;
}

.grid-one-content {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    min-height: 100vh;
}
.grid-main-heading {
    margin-bottom: 7rem;
}
.grid-description {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.grid {
    display: flex;
    justify-content: space-between;
    gap: var(--gap);
    counter-reset: grid-counter;
}

.grid h3 {
    font-size: 2rem;
    position: relative;
    padding-left: 5rem;
    padding-bottom: 2rem;
}

.grid h3::before {
    counter-increment: grid-counter;
    content: counter(grid-counter);
    position: absolute;
    font-size: 6rem;
    font-style: italic;
    top: -4rem;
    left: -2rem;
    transform: rotate(5deg);
}
.gallery-img {
    width: 100%;
    max-width: 36rem;
    max-height: 36rem;
    overflow: hidden;
}
.gallery-img > img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.gallery-img img {
    transition: all 300ms ease-in-out;
}
.gallery-img img:hover {
    transform: translate(-3%, 3%) scale(1.2) rotate(5deg);
}
.btn-preco {
    padding: 10px;
    background-color: #0047e0;
    color: #ffff;
    border: solid 1px black;
}
.btn-preco:hover {
    background-color: #ffff;
    color: black;
}
.grid-text-img > a:hover{
    box-shadow: none;
} 
.grid-text-img > h1 {
    font-size: 1.8rem;
}

/* Contato */

.contact-form {
    padding-bottom: 10vh;
    display: flex;
    width: 100%;
    justify-content: center;
}
.description-contato {
    width: 80%;
}
.form-grid legend {
    color: var(--black-color);
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}
.contact-form .form-grid {
    display: flex;
    background: #6a6d6c56;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 1rem;
    max-width: 80%;
}

.full-width {
    width: 100%;
}

textarea#messsage {
    color: #7f8584;
    height: 20vh;
    display: flex;
}

.form-group {
    color: var(--black-color);
    display: flex;
    flex-direction: column;
    flex: 1 1 320px;
}

.form-group label {

    display: block;
    margin-bottom: 1rem;
}

#message {
    color: #7f8584;
}

.form-group input,
.form-group textarea {
    border: none;
    padding: 1.5rem 2rem;
    width: 100%;
    font-size: 1.8rem;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0px 0px 5px 5px #c48e2bde;
}
 /* Estilo personalizado para o balão de alerta */
 .custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000000a8;
    color: #ffffff;
    padding: 15px;
    border: 1px solid #868383;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(15, 85, 30, 0.89);
    max-width: 300px;
    z-index: 9999;
}
.grid-button {
    display: flex;
    align-items: flex-end;
}
.form-group button {
    border: 0.5rem solid #131212;
    background: none;
    color: #000000;
    padding: 1.5rem 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.form-group button:hover {
    background: #245f18;
    color: #ffffff;
    border: 0.5rem solid #705a5a63;
    transition: all 450ms ease-in;
}

.form-group::placeholder {
    color: #eee;
}

.back-to-top{
    color: #000000;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    align-items: center;
    transform: rotate(-90deg);
}

.heart {
    color: crimson;
}
.close-menu {
    display: none;
}


/* localização  */


.grid-loc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    /* Centraliza verticalmente */
}
.text-loc {
    justify-content: center;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    height: 120vh;
    display: flex;
    align-items: center;
}
.text-loc > h2 {
    font-size: 1.6rem;
}
#container-imagem {
    width: 100%;
    max-width: 600px;
    /* Define uma largura máxima opcional */
    margin: 0 auto;
    /* Centraliza horizontalmente */
    display: flex;
    justify-content: center;
    /* Centraliza horizontalmente */
    align-items: center;
    /* Centraliza verticalmente */
    overflow: hidden;
    /* Esconde o conteúdo que estiver além da largura do contêiner */
}

#imagem-localizacao {
    width: 100%;
    height: auto;
    /* Mantém a proporção da imagem */
    cursor: grab;
}

#zoom-out,
#zoom-in {
    font-size: 20px;
    margin-right: 10px;
}
.red-circle {
    width: 30px; /* Tamanho da bolinha */
    height: 30px; /* Tamanho da bolinha */
    background-color: red; /* Cor vermelha */
    border-radius: 50%; /* Transforma em uma bolinha redonda */
}
.yellow-circle {
    width: 30px; /* Tamanho da bolinha */
    height: 30px; /* Tamanho da bolinha */
    background-color: yellow; /* Cor vermelha */
    border-radius: 50%; /* Transforma em uma bolinha redonda */
}

@media (max-width: 800px) {
    .main-content {
        padding: 2rem var(--gap);
    }
    .intro-content, .grid{
        display: flex;
        flex-direction: column;
    }
    h2 {
        font-size: 2.5rem;
    }
    .gallery-img {
        width: 100%;
        max-width: 100%;
        max-height: 100%;
    }
    .text-index {
        padding: 0;
    }
    .trabalhe {
        padding-bottom: 5vh;
    }
    .gallery-img img{
        width: 100%;
    }
    .grid-one-content {
        align-items: center;
    }
    /* banner agregando */
    .banner-agregando {
        height: auto;
    }
    /* Contato */
    .contact-form {
        display: flex;
        justify-content: center;
    }
    .enviar {
        text-align: center;
    }
    .grid {
        width: 80%;
    }
    .grid-description {
        padding-top: 0;
    }
    .grid-button{
        width: 100%;
    }
    .whatsapp-btn {
        width: 22vh;
    }
    /* Localização */

    .grid-loc {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .button-zoom {
        display: none;
    }
    .text-loc {
        height: 70vh;
        margin-bottom: 6vh;
        align-items: center;
        text-align: center;
    }

    #container-imagem {
        max-width: 100%;
        height: auto;
        overflow: hidden;
    }

    #imagem-localizacao {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 320px) {
    .close-menu-label::after {
        right: 0;
        padding: 0;
    }
    .back-to-top{
        width: 3rem;
        height: 3rem;
        right: 0;
    }
}