@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box
}
.contenedor {
  display: flex;
  flex-direction: row;
  width: 85%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: var(--blanco);
}
.principal {
  background-color: var(--blanco);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 0; /* <-- THIS LINE IS ADDED */
}
.derecha {
  width: 220px;
  padding: 20px 5px 5px 5px;
  background-color: transparent;
  margin-left: 0px;
  /* We use flex-shrink: 0 to prevent the aside from shrinking */
  flex-shrink: 0;
}
.derecha-contenido {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  align-items: center;
  background-color: transparent;
}
.derecha-add-1 {
  margin: 0px 0px 10px 0px;
  background-color: aqua;
}
.derecha-add-1 img {
  display: block;
}
.derecha-add-2 {
  margin: 10px 0px;
}
.derecha-add-2 img {
  display: block;
}
.contenido {
  background-color: var(--blanco);
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
article {
  padding: 0px 0px 30px 0px;
}
.titulo {
  background-color: var(--blanco);
  width: 100%;
  padding: 10px 20px 10px 15px;
  box-sizing: border-box;
}
.titulo h1 {
  font-size: 2rem;
  line-height: 2.2rem;
  color: var(--texto-black);
  font-weight: bolder;
}
.resumen {
  color: var(--texto-black);
  width: 100%;
  padding: 0px 15px 10px 15px;
}
.resumen h2 {
  font-size: 1.1rem;
  line-height: 1.3rem;
  font-style: italic;
}
.foto_servicio {
  background-color: var(--blanco);
  width: 100%;
  height: auto;
  text-align: center;
}
.foto_servicio picture {
  display: block;
  align-self: center;
  width: 100%;
  height: auto;
}
.foto_servicio img {
  display: block;
  align-self: center;
  width: 100%;
  height: auto;
}
.epigrafe {
  background-color: var(--naranja-secundario);
  width: 100%;
  padding: 5px 10px 5px 0px;
  box-sizing: border-box;
}
.epigrafe p {
  font-size: 0.9rem;
  line-height: 0.9rem;
  text-align: right;
}
.texto-article {
  background-color: var(--blanco);
  width: 100%;
  padding: 20px 10px 3px 20px;
  box-sizing: border-box;
}
.texto-article h3 {
  font-size: 1.2rem;
  padding: 5px 0px 0px 0px;
  font-weight: bold;
  font-style: italic;
}
.texto-article p {
  font-size: 0.9rem;
  padding: 5px 10px 5px 10px;
}
.texto-article p > strong {
  font-weight: bold;
}
.nota-al-pie {
  text-align: right;
  font-size: .8rem;
  color: var(--texto-gray);
}
.publicite {
  background-color: yellow;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.contenido-abajo {
  width: 85%;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  border: 3px solid var(--naranja-principal);
  background-color: var(--blanco);
  text-align: center;
  font-size: 0.6rem;
  line-height: 0.6rem;
  font-weight: bold;
}
.under-1 {
  width: 100%;
  padding: 10px;
  border-bottom: 3px solid var(--naranja-principal);
  background-color: var(--blanco);
  box-sizing: border-box;
}
.under-2 {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
.pub-sup {
  width: 100%;
  background-color: chocolate;
  border: 5px solid green;
  padding: 20px;
}
.pub-aside {
  background-color: cyan;
  margin: 0px 0px;
}
.publicidades-big {
  background-color: red;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
  margin: 10px 0px;
  padding: 5px;
}
.publicidad-big-izquierda {
  background-color: yellow;
  margin: 4px;
  width: 350px;
  align-self: center;
  box-sizing: border-box;
}
.publicidad-big-derecha {
  background-color: limegreen;
  margin: 4px;
  width: 350px;
  align-self: center;
  box-sizing: border-box;
}
.publicidad-in-article-ad {
  background-color: aqua;
  border: 1px solid red;
  width: 100%;
  align-self: center;
  box-sizing: border-box;
}
.buscador-big {
  width: 100%;
  padding: 5px;
  background-color: aliceblue;
  border: 5px solid blue;
  border-radius: 3px;
}
/* Mobile Styles */
@media (max-width: 768px) {
  .contenedor {
    width: 98%;
    flex-direction: column;
  }
  .principal {
    order: 1;
  }
  .derecha {
    width: auto;
    margin-top: 5px;
    margin-left: 0px;
    padding: 0px 20px 0px 20px;
    background-color: var(--blanco);
    /* We use flex-shrink: 0 to prevent .pubthe aside from shrinking */
    flex-shrink: 0;
    order: 2;
  }
  .publicidades-big {
    padding: 0px;
    background-color: cadetblue;
    margin: 10px 0px;
  }
  .publicidad-big-izquierda, .publicidad-big-derecha {
    padding: 20px;
    min-width: auto;
    width: 100%;
  }
  .contenido-abajo {
    width: 97%;
    margin-top: 0px;
  }
  .contenido {
    background-color: var(--blanco);
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
  }
  .titulo {
    padding: 5px 5px 10px 15px;
  }
  .titulo h1 {
    font-size: 2rem;
    line-height: 2.2rem;
    color: var(--texto-black);
    font-weight: bolder;
  }
  .resumen {
    color: var(--texto-black);
    width: 100%;
    padding: 0px 15px 10px 15px;
  }
  .resumen h2 {
    font-size: 1.1rem;
    line-height: 1.3rem;
    font-style: italic;
  }
  .foto_servicio {
    background-color: var(--blanco);
    width: 100%;
    height: auto;
    text-align: center;
  }
  .foto_servicio picture {
    display: block;
    align-self: center;
    width: 100%;
    height: auto;
  }
  .foto_servicio img {
    display: block;
    align-self: center;
    width: 100%;
    height: auto;
  }
  .epigrafe {
    background-color: var(--naranja-secundario);
    width: 100%;
    padding: 5px 10px 5px 0px;
    box-sizing: border-box;
  }
  .epigrafe p {
    font-size: 0.9rem;
    line-height: 0.9rem;
    text-align: right;
  }
  .texto-article {
    background-color: var(--blanco);
    width: 100%;
    padding: 10px 10px 10px 10px;
    box-sizing: border-box;
  }
  .texto-article h3 {
    font-size: 1.3rem;
    padding: 5px 0px 0px 0px;
    margin-top: 10px;
    font-weight: bold;
    font-style: italic;
  }
  .texto-article p {
    font-size: 1.1rem;
    padding: 8px 0px 8px 0px;
  }
  .texto-article p > strong {
    font-weight: bold;
  }
}