.lideres-claridad {
  min-height: calc(100vh - 80px);
  margin: 0;
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  box-sizing: border-box;
  gap: 1rem;
  position: relative;
  background: #ffffff;
}

.lideres-claridad__container {
  background: #232e3b;
  border-radius: 16px;
  padding: 2rem 4rem;
  max-width: 1200px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  gap: 1rem;
  box-sizing: border-box;
  justify-content: space-evenly;
}

.lideres-claridad__titulo {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-bottom: 0;
}

.lideres-claridad__descripcion {
  color: #e6e6e6;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0;
}

.lideres-claridad__resaltado {
  color: #ffb347;
  font-weight: 600;
}

.lideres-claridad__imagen-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  padding: 0;
}

.lideres-claridad__imagen {
  max-width: 250px;
  width: 100%;
  border-radius: 8px;
}

.lideres-claridad__pregunta {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
}

.lideres-claridad__botones {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.lideres-claridad__boton {
  flex: 1;
  background: #ffb347;
  color: #232e3b;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  width: 100%;
  max-width: 350px;
  padding: 12px 16px;
  gap: 8px;
}

.lideres-claridad__boton:hover {
  background: #ffd580;
}

.par-boton__icono {
  width: 30px;
  height: 30px; }

/* Media Query para pantallas hasta 768px */
@media (max-width: 768px) {
  .lideres-claridad {
    padding: 4rem 1rem;
    gap: 1.5rem;
    justify-content: flex-start; 
  }

  .lideres-claridad__titulo {
    font-size: 32px;
    margin-bottom: -10px;
  }

  .lideres-claridad__descripcion {
    font-size: 18px;
  }

  .lideres-claridad__boton {
    font-size: 18px;
    max-width: 300px;
  }
  .lideres-claridad__botones {
    flex-direction: column;
  }
}

/* Media Query para pantallas hasta 440px */
@media (max-width: 440px) {
  .lideres-claridad__container {
    padding: 1.5rem;
    gap: 1rem;
  }

  .lideres-claridad__titulo {
    font-size: 26px;
    margin-bottom: -10px;
  }

  .lideres-claridad__descripcion {
    font-size: 16px;
  }
    
  .lideres-claridad__boton {
    font-size: 16px;
    max-width: 100%;
    padding: 12px 14px;
  }

  .lideres-claridad__botones {
    flex-direction: column;
  }
}