@font-face {
  font-family: 'Playfair_Display';
  src: url('../../fuentes/Playfair_Display/static/PlayfairDisplay-Regular.ttf');
}

@font-face {
  font-family: 'Montserrat';
  src: url('../../fuentes/Montserrat/static/Montserrat-Light.ttf');
}
/* ==== SECCIÓN COMBINADA GENERAL ==== */
.combinada-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
}

/* ==== CONTENEDOR FLEX PADRE ==== */
.flex-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

/* ==== IMAGEN CENTRAL ==== */
.imagen-central {
  flex: 1;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagen-central img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

/* ==== FRASE Y SUBTEXTOS ==== */
/* .mentoria-container h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.9rem;
} */

.frase {
  font-family: 'Montserrat';
  color: #fefdfb;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.mentoria-subtext {
  font-family: 'Montserrat';
  /* color: #ccc; */
  margin: 1.5rem 0;
  font-size: 1rem;
  text-align: center;
}

/* ==== RECUADRO DESTACADO ==== */
.destacado-box {
  background: rgba(138, 3, 3, 0.15);
  border: 1px solid #b91c3c;
  color: #fefdfb;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  margin: 1rem 0;
  font-size: 1.25rem;
  box-shadow: 0 0 12px rgba(185,28,60,0.3);
}

/* ==== BOTONES ==== */
.mentoria-container button,
#volver-btn,
.newsletter-container button {
  background: #8A0303;
  color: #fefdfb;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1.05rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mentoria-container button:hover,
#volver-btn:hover,
.newsletter-container button:hover {
  background: #C1121F;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(185,28,60,0.3);
}

/* Botón volver pegado al widget */
.volver-wrapper {
  text-align: center;
  margin-bottom: 10px;
}

/* ==== RESPONSIVE GENERAL ==== */
@media (max-width: 900px) {
  .flex-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .imagen-central img {
    border-radius: 0;
    width: 100%;
  }
}