
/*CONTACTO*/
.contacto {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background-color: var(--red);
  }
  
  .contactoGoogle {
    width: 98%;
    min-height: 400px;
  }
  
  .contactoDatos {
    background-color: var(--white);
    width: 98%;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 1px 1px 5px var(--grey);
    margin-right: 2rem;
    padding-top: 2rem;
  }
  
  .contactoDatos h3 {
    text-align: center;
  }
  
  .contactoDatos ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 5rem;
  }
  
  .contactoDatos li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .contactoDatos img {
    width: 6rem;
    height: 6rem;
  }
  
  .datos {
    display: none;
  }
  
  .mensaje {
    display: none;
  }
  
  .frecuentes {
    width: 90%;
    padding: 2rem;
    margin: 4rem 0;
  }
  
  .qa {
    margin-bottom: 2rem;
  }
  
  .qa :first-child {
    margin-top: 3rem;
  }
  
  .ask {
    width: fit-content;
    max-width: 90%;
    background-color: var(--Dgrey);
    padding: 0.5rem 2rem 0.5rem 1rem;
    border-radius: 10px 10px 0 10px;
    box-shadow: 1px 1px 2px var(--Lgrey);
  }
  
  .answer {
    width: fit-content;
    max-width: 90%;
    background-color: var(--Lgrey);
    padding: 0.5rem 2rem 0.5rem 2rem;
    margin-left: 5rem;
    border-radius: 0 10px 10px 3rem;
    box-shadow: 1px 1px 2px var(--Lgrey);
  }
  
  /*CONTACTO*/
  
  