@font-face {
  font-family: "Goldman";
  src: url(../recursos/fonts/GoldmanSans.ttf);

  font-family: "Goldman-italica";
  src: url(../recursos/fonts/GoldmanSans_italic.ttf);

  font-family: "Poppins";
  src: url(../recursos/fonts/Poppins-Medium.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #e2e2e2;
  font-size: 16px;
  line-height: 2;
  font-family: "Poppins";
}

/*--------------------*/

.encabezado-mayusculas {
  font-size: 2em;
  font-weight: 800;
  color: #111;;
  line-height: 1em;
  text-transform: uppercase;
  font-family: "Poppins";
}

#header {
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  background-image: url("../recursos/images/liquid-cheese.png");
  height: auto;
  padding: 100px 100px;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

h1 {
  color: white;
  text-align: center;
}
a#download {
  display: block;
  text-align: center;
  width: 150px;
  margin: 0px auto;
  padding: 20px;
  color: white;
  text-transform: uppercase;
  font-family: Arial;
  border: 1px solid #fff;
  text-decoration: none;
  border-radius: 10px;
}

/*----------------*/

.icon-us {
  width: 50%;
  height: auto;
  text-decoration: none;
  padding: 35px;
}

.img-1 {
  background: url("../recursos/images/sin-foto.png") no-repeat;
  background-size: cover;
  width: 250px;
  height: 250px;
  background-position: center;
}

div.nosotros div.sep {
}

div.nosotros div.sep p {
  padding-right: 25px;
}

div.nosotros div.sep h2 {
  padding-left: 25px;
}

.Descripciones {
  padding: 25px;
}

img {
  /*solo al agregar width al 100% para hacerlo con resposivo */
  width: 100%;
}
html {
  font-size: 62.5%; /* font-size Tamaño de letra */
}
.separador {
  background-image: url("../recursos/images/paisaje-1.jpg");
  height: 100%;
  margin: 8px;
}
.alineador {
  display: inline-block;
  height: 100%;
  vertical-align: bottom;
  width: 3px;
}
.contenido {
  display: inline-block;
}

.container {
  /*max-width: 1200px; sirve para que la imagen tenga margenes*/

  margin: 0 auto;
  margin-top: 0px; /*margen de la imagen*/
}
.header {
  /*Imagen encabezado*/

  background-position: center;
  background-size: cover;
  height: 30vh; /*height hace que la imagen se muestre al 50%*/
  min-height: 600px;
}

h1 {
  font-size: 40px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 32px;
}
h4 {
  font-size: 28pxs;
}
.section {
  margin-top: 0px;
}

.centrar-texto {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 50px;
}

.icono-nosotros {
  display: flex;
  justify-content: space-between; /*Me acomoda el texto horizontalmente*/
}
.imagen-iconos {
  /*Tamaño de la imagen de los iconos*/
  width: 200px;
}

.iconos {
  /*flex-basic es para dividir y que te separe dependiendo
          de las diviciones que necesitemos entre 100, si tenemos 
          4 cosas es 25, si tenemos 2 es 50*/
  flex-basis: calc(33.3% - 1rem);
  /*Aquí utilizamos text-align center para poner el texto
          en el centro*/
  text-align: center;
}
.encabezado {
  font-weight: 300;
  text-align: center;
  padding: 25px;
}
.mayusculas {
  text-transform: uppercase; /*Letras en mayusculas*/
}

.imagen-nosotros {
  width: 200px;
  margin-top: 200px;
  margin-right: 50px;
}
.nosotros {
  display: flex; /*Para colocar una imagen a un lado*/
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
.sep {
  margin-top: 50px;
  margin-left: 50px;
  margin-right: 5px;
}
.productos {
  margin-top: 50px;
  padding: 50px;
}

/*--------------------WHATSAPP------------------------*/

.floating-wpp {
  position: fixed;
  bottom: 15px;
  left: 15px;
  font-size: 14px;
  transition: bottom 0.2s;
}
.floating-wpp .floating-wpp-button {
  position: relative;
  border-radius: 50%;
  box-shadow: 1px 1px 4px rgba(60, 60, 60, 0.4);
  transition: box-shadow 0.2s;
  cursor: pointer;
  overflow: hidden;
}
.floating-wpp .floating-wpp-button img,
.floating-wpp .floating-wpp-button svg {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 50%;
}
.floating-wpp:hover {
  bottom: 17px;
}
.floating-wpp:hover .floating-wpp-button {
  box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.4);
}
.floating-wpp .floating-wpp-popup {
  border-radius: 6px;
  background-color: #e5ddd5;
  position: absolute;
  overflow: hidden;
  padding: 0;
  box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.25);
  width: 0;
  height: 0;
  bottom: 0;
  opacity: 0;
  transition: bottom 0.1s ease-out, opacity 0.2s ease-out;
  transform-origin: bottom;
}
.floating-wpp .floating-wpp-popup.active {
  padding: 0 12px 12px;
  width: 260px;
  height: auto;
  bottom: 82px;
  opacity: 1;
}
.floating-wpp .floating-wpp-popup .floating-wpp-message {
  background-color: #fff;
  padding: 8px;
  border-radius: 0 5px 5px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.floating-wpp .floating-wpp-popup.active .floating-wpp-message {
  opacity: 1;
  transition-delay: 0.2s;
}
.floating-wpp .floating-wpp-popup .floating-wpp-head {
  text-align: right;
  color: #fff;
  margin: 0 -15px 10px;
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.floating-wpp .floating-wpp-input-message {
  background-color: #fff;
  margin: 10px -15px -15px;
  padding: 0 15px;
  display: flex;
  align-items: center;
}
.floating-wpp .floating-wpp-input-message textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: none;
  padding: 8px;
  margin: 10px 0;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  font-size: inherit;
  resize: none;
}
.floating-wpp .floating-wpp-btn-send {
  margin-left: 12px;
  font-size: 0;
  cursor: pointer;
}


/*---------------TEXTOS------------------*/

.text p{

  text-align: justify;

}

.text
{
  text-align: justify;
}
 
.text h2
{
  text-align: justify;
  font-size: 4em;
  font-weight: 800;
  color: #111;;
  line-height: 1em;
  text-transform: uppercase;
}
.text h3
{
  text-align: justify;
  font-size: 3em;
  font-weight: 700;
  color:#111;
  line-height: 1em;
  text-transform: uppercase;
}
.text p
{
  text-align: justify;
  font-size: 1em;
  color: #111;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}
.text a
{
  display: inline-block;
  font-size: 1em;
  background: #111;;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}
.text a:hover
{
  letter-spacing: 6px;
}