.section-contato
{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 6rem 2rem;
  width: 95vw;
}

.como-chegar-contato {
  width: 100%;
  margin: 2rem 0 0;
  /* border: solid purple; */
}

.localizacao {
  background-color: var(--color-09);
  color: #fff;
  min-height: 20vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}

.titulo-endereco {
  font-size: 3.5rem;
  letter-spacing: 5px;
}

.body-endereco {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}

.como-chegar-contato iframe {
  max-width: 100%;
  width: 100%;
  height: 100%;
  min-height: 25rem;
}


.asides-contato {
  display: flex;
  width: 80%;
  padding: 4rem 0;
  justify-content: center;
    /* background: var(--color-03); */
}

.body-endereco-contato {
  flex: 0 1 calc(100% / 2);
  display: flex;
  justify-content: center;
  padding: 0 0 10rem;
  /* flex-direction: column; */
  /* align-items: center; */
}

.div-content-contato {
  width: max-content;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  font-size: 1.6rem;
}

.body-frm-contato {
  flex: 0 1 calc(100% / 2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.body-frm-contato div:not(.mensagem-contato)
{
  flex: 0 1 calc(98% / 2);
}

.enviar-contato
{
  padding: 2rem 0;
}

.btn-padrao-enviar-contato
{
  padding: 1rem 4rem;
  font-size: 2rem;
}

.info-whatsapp, .info-telefone, .funcionamento
{
  padding: 1rem;
}

input[type="text"], textarea {
  padding: 12px 20px;
  margin: 4px 0;
  display: inline-block;
  border: 1px solid #000;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 2rem;
  outline: none;
  width: 100%;
}

.contato-titulo-conteudo
{
  padding: 1rem;
  font-size: 2rem;
  text-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  color: var(--color-05);
}

/**
* Teclado
*/

.ul-teclado
{
  position: relative;
  display: flex;
  transform-style: preserve-3d;
  transform: rotate(0deg) skew(25deg);
  width: 70vw;
  justify-content: space-evenly;
}

.ul-teclado li
{
  position: relative;
  list-style: none;
  min-width: 60px;
  min-height: 60px;
  width: 8vw;
  height: 8vw;
  margin: 0 10px;
}

.ul-teclado li::before
{
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #2a2a2a;
  transform-origin: top;
  transform: skewX(-41deg);
}

.ul-teclado li::after
{
  content: '';
  position: absolute;
  top: 0;
  left: -9px;
  width: 9px;
  height: 100%;
  background: #2a2a2a;
  transform-origin: right;
  transform: skewY(-49deg);
}

.ul-teclado li span
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: #333;
  color: rgba(255, 255, 255, 0.2);
  font-size: 4vw !important;
}

.ul-teclado li:nth-child(1) span
{
  color: var(--color-facebook) ;
}

.ul-teclado li:nth-child(2) span
{
  color: var(--color-twitter) ;
}

.ul-teclado li:nth-child(3) span
{
  color: var(--color-whatsapp) ;
}

.ul-teclado li:nth-child(4) span
{
  color: var(--color-linkedin) ;
}

.ul-teclado li:nth-child(5) span
{
  color: var(--color-instagram) ;
}

.ul-teclado li:hover span
{
  z-index: 1000;
  transition: 0.2s;
  color: #fff;
  box-shadow: -1px 1px 1px rgba(0,0,0,0.05);
}

.ul-teclado li:hover span:nth-child(5)
{
  transform: translate(40px, -40px);
  opacity: 1;
}

.ul-teclado li:hover span:nth-child(4)
{
  transform: translate(30px, -30px);
  opacity: 0.8;
}

.ul-teclado li:hover span:nth-child(3)
{
  transform: translate(20px, -20px);
  opacity: 0.6;
}

.ul-teclado li:hover span:nth-child(2)
{
  transform: translate(10px, -10px);
  opacity: 0.4;
}

.ul-teclado li:hover span:nth-child(1)
{
  transform: translate(0px, 0px);
  opacity: 0.2;
}

.ul-teclado li:nth-child(1):hover span
{
  background: #3b5999;
}

.ul-teclado li:nth-child(2):hover span
{
  background: #55acee;
}

.ul-teclado li:nth-child(3):hover span
{
  background: #25D366;
}
.ul-teclado li:nth-child(4):hover span
{
  background: #0077B5;
}


.ul-teclado li:nth-child(5):hover span
{
  background: #e4405f;
}
