.wrapper {
  padding-top: 70px;
}

h3 {
  color: var(--secundario);
  margin: 0;
}

p {
  margin: .2rem;
}

/* CONTENEDOR1 *********************************************************************************** */
.contenedor1 {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 80% 20%;
  grid-template-areas:
    'caja01-a caja01-b'
    'caja01-a caja01-c';
  height: 40vh;
}

.caja01-a {
  grid-area: caja01-a;
  background-color: var(--secundario);
  min-height: 106px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.blanco {
  color: white;
  padding-right: 50px;
  /* text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  padding-right: 50px;
  padding-bottom: 50px; */
}

.caja01-b {
  grid-area: caja01-b;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
  min-height: 115px;
}

.caja01-c {
  grid-area: caja01-c;
  background-color: var(--primario);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}

.letreros {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}

.correo {
  font-size: smaller;
}

/* Contenedor 2 ***************************************************************************************** */
.contenedor2 {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-areas:
    'caja02-a caja02-b';
  padding: 30px 0;
}

.caja02-a {
  grid-area: caja02-a;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-right: 30px;
}

.caja02-b {
  grid-area: caja02-b;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

input {
  width: 50%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid var(--primario);
  border-radius: 4px;
  box-sizing: border-box;
}

.message {
  width: 50%;
  height: 20vh;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid var(--primario);
  border-radius: 4px;
  box-sizing: border-box;
  font-family: sans-serif;
}

.button {
  width: 150px;
  height: 2rem;
  background: linear-gradient(to right, var(--secundario), var(--primario));
  border-radius: 100px;
  color: white;
  border: white;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* Media Queries ************************************************************* */
@media only screen and (max-height: 700px ) {
  .contenedor1{
    height: 400px;
  }
}
@media only screen and (max-width: 992px) {
  .wrapper {
    padding-top: 25px;
  }

  .contenedor1 {
    grid-template-areas:
      'caja01-a'
      'caja01-b'
      'caja01-c';
    grid-template-columns: 100%;
    grid-template-rows: 40% 40% 20%;
  }

  .caja01-a { 
    justify-content: center;
    
  }

  .blanco {
    justify-content: center;
    padding-right: 0px;
  }

  .caja01-c {
    text-align: center;
  }

 
  .contenedor2 {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas:
      'caja02-a'
      'caja02-b'
  }

  .caja02-a {
    align-items: center;
  }

  .caja02-b {
    text-align: center;
  }

  .button{
    margin: auto;
  }
}

@media only screen and (max-width: 525px) {
  .contenedor1 {
    grid-template-columns: 100%;
    grid-template-rows: 30% 50% 20%;
    /* height: 60vh; */
    height: 400px;
  }

  .caja01-b {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px
  }

  .letreros {
    padding: 0;
  }
}
