/* ======================== */
/* 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 solicitud de mariana */
.energy-cuida{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;

  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0;
}
.energy-cuida div{
  background: #8AC300;
  border-radius: 1.5rem;
  text-align: center;
  padding-bottom: 1rem;

  position: relative;
}
.energy-cuida div img{
  border-radius: 1.5rem;
  display: block;
  margin-bottom: 1rem;
  width: 100%;
}
.energy-cuida p{
  color: #f0f0f0;
  font-size: 17px;
  font-weight: bold;
}
.energy-tit{
  color: #0056A2;
  font-weight: bold;
  font-size: 21px;
  padding-top: 3rem;
  text-align: center;
}
.energy-logo{
  margin: 0 auto;
  text-align: center;
  width: 280px;
}
.sombra_cui{
  display: none!important;
  position: absolute!important;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.6)!important;
  color: #f0f0f0;
  padding: 6rem 2rem;
  height: 100%;
}
.energy-cuida div:hover .sombra_cui{
  display: block!important;
}
/* estilos para solicitud de mariana */

/* 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;
  }
  .energy-cuida{
    grid-template-columns: 100%;
  }

  .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;
  }
}