/*>>>>>> padrões e cabeçalho */
*{
    margin: 0;
    padding: 0;
}
:root {
  --corPadraoAzul: #add8e6;
  --corPadraoAzulClaro: #bbd5dd;
  --corPadraoAzulEscuro: #2b94b8;
  --corPadraoPreto: #000000;
  --corPadraoBranco: #fbfeff;
  --corPadraoCinza: #7b7a7b;
  --fontTitle: #000000;
  --legend: #000000;
}
html {
    height: 100%;
    font-family: "Open+Sans", sans-serif;
}
.background {
  background-image: linear-gradient(to bottom, white, #add8e6);
  background-size: 100%;  
  font-size: 12px;
}
.header{
    width: 100%;  
    height: 70px; 
}


/*>>>>>> conteudo */
#container {
  width: 100%;
  height: 100%;
}
#intro {
  text-align: center;
  line-height: 1.3rem;
  height: max-content;
  padding: 20px;
  clear: both;
  width: 60%;
  margin: 0px auto;
}
h1 {
    text-align: center;
    padding: 20px;
    font-size: 24px;
}


/*>>> depoimentos */
#depo {
  display: flex;
  width: 60%;
  height: max-content;
  margin: 0px auto;
  overflow: hidden;
}
#depo1 {
  display: block;
  float: left;
  width: 45%;
  height: max-content;
  margin: 0px auto;
  -webkit-box-shadow: 0 -1px 8px var(--corPadraoCinza);
}
#depo1 img {
  display: block;
  float: left;
  padding: 5px;
  width: 45%;
  height: 23vh;
}
#depo1 p {
  display: block;
  float: right;
  width: 45%;
  height: max-content;
  padding: 5px;
  line-height: 1.3;
  white-space: normal;
  word-break: break-all;
}
#depo2 {
  display: block;
  float: left;
  width: 45%;
  height: max-content;
  margin: 0px auto;
  -webkit-box-shadow: 0 -1px 8px var(--corPadraoCinza);
}
#depo2 iframe {
  display: block;
  float: left;
  width: 50%;
  height: 23vh;
  padding: 5px;
}
#depo2 p {
  display: block;
  float: right;
  width: 40%;
  height: max-content;
  text-align: start;
  padding: 5px;
  line-height: 1.3;
}


/* >>>> parceiros */
h2 {
  color: var(--corPadraoCinza);
  text-align: center;
  margin: 20px;
  padding: 20px;
}
#parceiros {
  width: 40%;
  height: 20vh;
  display: flex;
  margin: 0px auto;
  padding-bottom: 20px;
  justify-content: space-evenly;
  position: relative;
}
#parc1, #parc2  {
  width: 70%;
  height: 10vh;
}
#parc3 {
  width: 120%;
  height: 10vh;
}


/*>>>>>> responsividade */
@media screen and (max-width: 800px) {
   html {
    height: 100%;
    background-size: 100%; 
  }
  #depo {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    height: max-content;
    margin-top: 10vh;
  }
  #depo1 img,
  #depo1 p,
  #depo2 iframe,
  #depo2 p {
    width: 93%;
    height: max-content;
    text-align: justify;
    margin-top: 10vh;
    padding: 5px;
  }
}
