/* ======================== */
/* Estilos Generales para prueba */
/* ======================== */
body {
  background-color: #f0f0f0;
  margin-top: 0px;
}

@font-face {
  font-family: 'Gotham';
  src: url('../img/Gotham-UltraItalic.woff') format('woff'),
       url('../img/Gotham-UltraItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../img/Ubuntu-Bold.woff') format('woff'),
       url('../img/Ubuntu-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* ======================== */
/* Estilo de Contenedor Principal a pegar */
/* ======================== */
.boton-reconoce {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  border-radius: 30px;
  background-image: url('https://www.limagas.com/images/seguridad-fondo-boton-reconocer.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  gap: 10px;
  margin-top: 80px;
  margin-bottom: 80px;
}

/* ======================== */
/* Elemento 1 (Texto y Boton) */
/* ======================== */
.elemento1 {
  width: 40%;
  height: auto;
  padding-left: 80px;
  text-align: left;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.elemento1 p {
  margin: 15px 0 0;
  font-size: 45px;
  line-height: 1;
  color: white;
  font-family: 'Gotham', sans-serif;
}

.boton-conocer {
  display: block;
  margin-top: 15px;
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #8AC300;
  color: white;
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
}

/* ======================== */
/* Elemento 2 (Imagen)     */
/* ======================== */
.elemento2 {
  width: 60%;
  height: auto;
  text-align: center;
}

.elemento2 img {
  max-width: 98%;
  height: auto;
  display: block;
  margin-top: -50px;
  margin-left: auto;
  margin-right: auto;
}

/* ======================== */
/* Media Queries           */
/* ======================== */

@media (max-width: 1200px) {
  .elemento1 p {
    font-size: 36px;
    line-height: 1;
  }

  .elemento1 {
    padding-left: 50px;
  }

  .elemento2 img {
    margin-top: -30px;
  }

  .boton-conocer {
    font-size: 18px;
  }
}

@media (max-width: 1000px) {
  .elemento1 p {
    font-size: 30px;
    line-height: 1;
  }

  .elemento1 {
    padding-left: 50px;
  }

  .elemento2 img {
    margin-top: -20px;
  }

  .boton-conocer {
    font-size: 17px;
  }
}

/* Estilos para tabletas (min-width: 421px) */
@media (max-width: 768px) {
  .boton-reconoce {
    background-image: url('https://www.limagas.com/images/seguridad-fondo-tableta.png');
    flex-direction: column;
    gap: 0;
    border-radius: 30px;
  }

  .elemento1, .elemento2 {
    width: 100%;
    height: auto;
    padding-left: 20px;
    line-height: 1.2;
  }

  .elemento1 {
    justify-content: flex-start;
    padding-top: 20px;
  }

  .elemento1 p {
    font-size: 38px;
    line-height: 1.2;
  }

  .elemento2 img {
    margin-top: 0;
    max-width: 90%;
  }

  .boton-conocer {
    margin-top: 10px;
    font-size: 18px;
  }
}

/* Estilos para moviles (max-width: 420px) */
@media (max-width: 420px) {
  .boton-reconoce {
    background-image: url('https://www.limagas.com/images/seguridad-fondo-mobile.png');
    flex-direction: column;
    gap: 0;
    border-radius: 30px;
  }

  .elemento1, .elemento2 {
    width: 100%;
    height: auto;
    padding-left: 20px;
    line-height: 1.2;
  }

  .elemento1 {
    justify-content: flex-start;
    padding-top: 20px;
  }

  .elemento1 p {
    font-size: 28px;
    line-height: 1.2;
  }

  .elemento2 img {
    margin-top: 0;
    max-width: 90%;
  }

  .boton-conocer {
    margin-top: 10px;
    font-size: 18px;
  }
}