:host {
  display: block;
  background-color: #f9f9f9; /* fondo claro */
  padding: 2rem 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  color: #00695c; /* verde corporativo */
  font-weight: 700;
}

.section-title p {
  color: #333; /* texto principal */
  font-size: 1.1rem;
}

.rowx {
  margin-bottom: 2rem;
  border-bottom: 1px solid #999; /* división entre filas */
  padding-bottom: 2rem;
  display: flex;
}

.rowx .col-md-6 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #999; /* división vertical */
  padding-right: 1rem;
}

.rowx .col-md-6:last-child {
  border-right: none;
  padding-right: 0;
}

.rowx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid #999; /* borde alrededor de la imagen */
}

.rowx .panel {
  background-color: #f9f9f9;
  border: 1px solid #999;
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rowx .panel h4 {
  color: #00695c;
  margin-bottom: 1rem;
  border-bottom: 1px solid #999;
  padding-bottom: 0.5rem;
}

.rowx .panel ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.rowx .panel ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #333;
  border-bottom: 1px dashed #999;
  padding-bottom: 0.5rem;
}

.rowx .panel ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.rowx .panel ul li i {
  color: #4caf50;
  font-size: 1.2rem;
  line-height: 1;
}

.rowx .panel p {
  margin-top: 1rem;
  color: #ff9800;
  font-style: italic;
  border-top: 1px solid #999;
  padding-top: 0.5rem;
}

/* Responsividad */
@media (max-width: 900px) {
  .rowx {
    flex-direction: column;
  }
  .rowx .col-md-6 {
    margin-bottom: 1rem;
    border-right: none;
    padding-right: 0;
    width: 100%;       /* ✅ fuerza ancho completo */
    max-width: 100%;   /* ✅ asegura que no se limite */
  }
}

ul.list-unstyled {
  margin-top: 1rem;
}

ul.list-unstyled li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 0.5rem;
  color: #006400;
  font-weight: 500;
}

ul.list-unstyled li i {
  color: #006400;
  font-size: 1.2rem;
  line-height: 1;
}

ul.list-unstyled li:last-child {
  margin-bottom: 0;
}
