.map{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: max-content 50px;
}

.map iframe{
    width: 100%;
    height: 100%;
}

.text-map{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.texto-localizacao{
    font-size: 1.2rem;
    color: #C9952B;
    font-family: 'CamptonBold';
}


.texto-endereco{
    font-size: 2rem;
    text-align: center;

  
}


/* TESTE */

.conteudo {
    position: fixed;
    top: 60%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .media-icons {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    /* padding: 6px; */
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .fechar-btn.open ~ .media-icons {
    transform: translateX(0);
  }
  .media-icons a {
    text-decoration: none;
    position: relative;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin: 6px;
  }
  .media-icons a i {
    color: #fff;
  }
  .media-icons a .tooltip {
    position: absolute;
    left: 55px;
    font-size: 14px;
    font-weight: 400;
    pointer-events: none;
    background-color: #fff;
    /* padding: 4px 8px; */
    border-radius: 4px;
    transform: translateY(-25px);
    opacity: 0;
    transition: all 0.2s linear;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  }
  .media-icons a:hover .tooltip {
    opacity: 1;
    transform: translateY(0);
  }
  .media-icons a .tooltip::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    top: 50%;
    left: -5px;
    transform: translateY(-50%) rotate(45deg);
    background-color: #fff;
  }
  .fechar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
    background-color: #8e36ff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transform: rotate(45deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .fechar-btn.open {
    transform: rotate(90deg);
    background-color: #de0611;
  }
  





@media only screen and (max-width: 813px) {
    .texto-endereco{
        font-size: 1.2rem;
        font-family: var(--light);
        background-color: var(--cor-amarelo);
        color: white;
        text-align: center;

    }
    
}
