.que-es-aegis {
  width: 100%;
  min-height: calc(100vh);
  margin: 0;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 0.5rem;
  background-color: #acbfe5;
  position: relative;
}

.que-es-aegis h2 {
  text-align: center;
  font-size: 48px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0;
  color: #1c1261;
  line-height: 1.2;
  max-width: 900px;
}

.que-es-aegis__contenido {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  flex: 1;
  margin-top: 0px;
  font-family: 'Montserrat', sans-serif;
}

.que-es-aegis__texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #333333;
  max-width: 600px;
}

.que-es-aegis__texto p {
  margin: 0;
  line-height: 1.6;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

.que-es-aegis__enfasis {
  font-weight: 600;
  text-align: center;
  font-size: 28px;
  color: #333333;
  line-height: 1.4;
  width: 100%;
  max-width: 1400px;
  font-family: 'Montserrat', sans-serif;
}

.btn-actuamos {
  display: inline-block;
  align-self: center;
  padding: 1rem 2rem;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #FF9933;
  color: #000000;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
}

.btn-actuamos:hover {
  background-color: #E6892E;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 153, 51, 0.4);
}

.que-es-aegis__imagen {
  flex: 0 0 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.que-es-aegis__imagen img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  background-color: #D4EDDA;
  padding: 1rem;
}

/* Media Query para pantallas hasta 768px */
@media (max-width: 768px) {
  .que-es-aegis {
    padding: 4rem 2rem;
    gap: 2rem;
  }

  .que-es-aegis h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #1c1261;
    line-height: 1.2;
    max-width: 90%;
  }

  .que-es-aegis__texto {
    align-items: center;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 18px;
    color: #333333;
    max-width: 600px;
  }

  .que-es-aegis__contenido {
    flex-direction: column;
    gap: 1.5rem;
  }

  .que-es-aegis__imagen {
    display: none;
  }
  .que-es-aegis__enfasis {
      margin-top: 0;
      font-size: 18px;
  }

  .btn-actuamos {
    width: 100%;
    max-width: 350px;
    padding: 12px 18px;
    font-size: 18px;
  }
}

/* Media Query para pantallas hasta 440px*/
@media (max-width: 440px) {
  .que-es-aegis {
      gap: 1.5rem;
  }
  
  .que-es-aegis__contenido {
    gap: 1rem;
  }

  .que-es-aegis__texto p {
    font-size: 1rem;
  }

  .que-es-aegis__texto ul {
    font-size: 1.1rem;
  }

  .que-es-aegis__enfasis {
    font-size: 22px;
  }

  .btn-actuamos {
    width: 100%;
    max-width: 280px;
    padding: 10px 14px;
    font-size: 16px;
  }
}