.identidad-nueva {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: #00A5BD;
  gap: 40px;
  flex-wrap: wrap;
}

.identidad-nueva-texto {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  color: white;
}

.identidad-nueva-texto h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.identidad-nueva-texto p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 700;
}

.identidad-nueva-imagen {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.identidad-nueva-imagen img {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}

.identidad-lista {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #111;
  line-height: 1.6;
}

.identidad-lista ol {
  padding-left: 20px;
  margin-bottom: 30px;
}

.identidad-lista li {
  margin-bottom: 20px;
}

.identidad-lista strong {
  font-weight: 700;
}

.identidad-lista .nota {
  margin: -10px 0 30px 20px;
  font-size: 16px;
}

.img-match-height {
  height: 100%;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .identidad-lista {
    font-size: 16px;
    padding: 40px 15px;
  }

  .identidad-lista .nota {
    font-size: 14px;
    margin-left: 10px;
  }
}

.etapa-servicio {
  background-color: #00A5BD;
  padding: 60px 20px;
  text-align: center;
  color: #000;
  font-family: 'Roboto', sans-serif;
}

.etapa-contenido {
  max-width: 1100px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.etapa-cuadro,
.etapa-imagen {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.etapa-cuadro {
  background-color: #f7f7f7;
  padding: 30px;
  text-align: left;
}

.etapa-cuadro h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.etapa-cuadro p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.etapa-imagen {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: stretch;
}

.etapa-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.etapa-boton-principal {
  margin-bottom: 30px;
}

.btn-servicio {
  display: inline-block;
  background-color: #E6368B;
  color: white;
  font-weight: bold;
  font-size: 20px;
  padding: 20px 40px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-servicio:hover {
  background-color: #4DD0E1;
  color: #000;
}

.etapa-texto-final {
  font-size: 18px;
  font-weight: bold;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.etapa-botones-secundarios {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.etapa-botones-secundarios a {
  background-color: #E6368B;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 15px 0;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1 1 200px; /* asegura que ocupen mismo ancho mínimo pero puedan crecer */
  max-width: 250px; /* tope para que no se estiren de más en pantallas grandes */
}

.etapa-botones-secundarios a:hover {
  background-color: #4DD0E1;
  color: #000;
}

@media (max-width: 768px) {
  .etapa-contenido {
    flex-direction: column;
  }

  .etapa-cuadro,
  .etapa-imagen {
    width: 100%;
  }
}

