/* ===== TÍTULO PRINCIPAL ===== */
.section-title {
  text-align: center;
  color: #003366;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #005f82;
  margin: 10px auto 0;
  border-radius: 2px;
}
/* ===== SECCIÓN "LA COMPAÑÍA" ===== */
.section-company {
  background-color: #f4f7f9;
  padding: 60px 20px;
  color: #003366;
}

.section-company .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.section-company .text-content {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.7;
}

.section-company .image-content {
  flex: 1;
  text-align: center;
}

.section-company .image-content img {
  max-width: 100%;
  max-height: 400px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== SECCIÓN "MENSAJE DEL DIRECTOR" ===== */
.section-director {
  background-color: #ffffff;
  padding: 60px 20px;
  color: #003366;
}

.section-director .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-director .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-director .director-details {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.section-director .reason-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-director .reason-list li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 25px;
  line-height: 1.6;
}

.section-director .reason-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #003366;
  font-weight: bold;
}

.section-director .plan-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-director .director-signature {
  text-align: right;
  margin-top: 30px;
}

.section-director .director-signature p {
  margin: 0;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .section-company .content-wrapper {
    flex-direction: column;
  }
  .section-company .text-content {
    text-align: center;
  }
  .section-company .image-content img {
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  .section-director .director-details {
    flex-direction: column;
  }
  .section-director .director-signature {
    text-align: center;
    margin-top: 20px;
  }
}