/* Sección destacada */
.about-highlight {
  background: #fff;
  padding: 80px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Texto */
.about-text {
  max-width: 500px;
}

.about-tag {
  color: #ffc107;
  font-weight: bold;
  letter-spacing: 1px;
}

.about-text h2 {
  font-size: 36px;
  color: #222;
  margin: 15px 0;
}

.about-text h2 strong {
  color: #ffc107;
}

.about-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Botón */
.about-btn {
  background: #ffc107;
  color: #222;
  padding: 14px 26px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #222;
  color: #fff;
}

/* Imágenes circulares */
.about-images {
  position: relative;
  width: 420px;
  height: 420px;
}

.circle {
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle.big {
  width: 260px;
  height: 260px;
  top: 0;
  right: 0;
}

.circle.medium {
  width: 200px;
  height: 200px;
  bottom: 0;
  right: 160px;
}

.circle.small {
  width: 140px;
  height: 140px;
  top: 220px;
  right: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    margin-top: 40px;
  }
}

/***/

/* ===============================
   SECCIÓN OSCURA FORZADA
================================ */

/* Removed backslashes and fixed CSS syntax */
.dark-section {
  background: radial-gradient(circle at top, #1c2533, #0e1218) !important;
  padding: 100px 0;
}

/* Contenido */
.dark-section .about-tag {
  color: #ffc107;
  letter-spacing: 1px;
  font-weight: 600;
}

.dark-section h2 {
  color: #ffffff;
}

.dark-section h2 strong {
  color: #ffc107;
}

.dark-section p {
  color: #d0d0d0;
}

/* Botón */
.dark-section .about-btn {
  background-color: #ffc107;
  color: #121212;
}

.dark-section .about-btn:hover {
  background-color: #ffffff;
  color: #121212;
}

/* Imágenes */
.dark-section .circle {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.about-images {
  position: relative;
  width: 480px;
  height: 420px;
  margin-left: auto;
}

/* BASE */
.circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CÍRCULO GRANDE */
.circle-lg {
  width: 280px;
  height: 280px;
  top: 0;
  right: 0;
  z-index: 3;
}

/* CÍRCULO MEDIANO */
.circle-md {
  width: 220px;
  height: 220px;
  bottom: 40px;
  right: 160px;
  z-index: 2;
}

/* CÍRCULO PEQUEÑO */
.circle-sm {
  width: 140px;
  height: 140px;
  bottom: 0;
  right: 40px;
  z-index: 1;
}

/* Responsive */
@media (max-width: 600px) {
  .about-highlight {
    padding: 50px 15px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-images {
    width: 100%;
    height: 300px;
    transform: scale(0.85);
  }

  .circle.big {
    width: 200px;
    height: 200px;
  }

  .circle.medium {
    width: 150px;
    height: 150px;
    right: 120px;
  }

  .circle.small {
    width: 100px;
    height: 100px;
    top: 160px;
  }

  .dark-section {
    padding: 60px 0;
  }

  .circle-lg {
    width: 220px;
    height: 220px;
  }

  .circle-md {
    width: 170px;
    height: 170px;
    right: 130px;
  }

  .circle-sm {
    width: 110px;
    height: 110px;
  }
}
