:root {
  /* Variables para facilitar cambios futuros */
  --borde-hero: 20px;
  --borde-tarjeta: 12px;
}

/* =========================================
   HERO & SLIDER
   ========================================= */

.hero-single,
.hero-slider-container {
  width: 100%;
  height: calc(100vh - 4rem);
  border-radius: var(--borde-hero);
  overflow: hidden;
}

.hero-slider-container {
  position: relative;
  max-width: min(1800px, 95vw);
  margin: 1rem auto 2rem;
  padding: 0 1rem;
  box-sizing: border-box;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--borde-hero);
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: var(--borde-hero);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 32, 32, 0.4);
  z-index: 2;
  border-radius: var(--borde-hero);
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  border-radius: var(--borde-hero);
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
  padding: 0;
}

.slide-text-container {
  color: var(--color-white);
  margin-left: 160px;
  max-width: 1000px;
  width: 100%;
  text-align: left;
  margin-top: 30vh;
}

.slide-subtitle {
  display: block;
  font-family: var(--font-primary);
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--color-white);
  animation-delay: 0.2s;
}

.slide-title {
  font-family: var(--font-primary);
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  text-align: left;
  animation-delay: 0.4s;
}

/* Menú activo */
.enlaces-menu li:first-child .enlace-menu {
  position: relative;
}

.active-panaderia::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 60px;
  height: 3px;
  border-radius: 1.5px;
  background-color: var(--color-main);
}

/* =========================================
   INTRODUCCIÓN
   ========================================= */

.intro-section {
  position: relative;
  width: 100%;
  margin: 20dvh auto 0;
  overflow: hidden;
}

.intro-container {
  position: relative;
  padding-bottom: 50px;
}

.intro-text {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 300;
  color: var(--color-black);
  max-width: 1500px;
  margin: 0 0 10px 12dvw;
  position: relative;
  display: inline-block;
}

.intro-text strong {
  font-weight: 700;
}

.intro-line {
  position: absolute;
  height: 3px;
  background-color: var(--color-main);
  margin-top: 17px;
  width: calc(62% - 2rem);
  margin-left: auto;
  right: 0;
}

/* =========================================
   ESTILOS COMPARTIDOS (Aprender, Formación, Plan)
   ========================================= */

/* Etiquetas (Tags) */
.aprender-tag,
.formacion-tag,
.formacion-plan-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-main);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Títulos de sección */
.aprender-title,
.formacion-title,
.formacion-plan-title {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 2rem;
}

/* Textos generales */
.aprender-text {
  margin-bottom: 2.5rem
}

.aprender-text p,
.formacion-list li,
.formacion-plan-list li {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: var(--color-black);
}

/* Listas con bullets personalizados */
.formacion-list ul,
.formacion-plan-list ul,
.aprender-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.formacion-list li,
.formacion-plan-list li,
.aprender-text li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 15px;
}

.formacion-list li::before,
.formacion-plan-list li::before,
.aprender-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background-image: url("https://campus.fundacionjuan23.org/wp-content/uploads/media/bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Botón principal unificado */
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--color-main);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 20px rgba(240, 125, 32, 0.3);
  background-image: linear-gradient(45deg, var(--color-main), #f59643);
}

.btn-primary:hover:before {
  width: 100%;
}

.btn-primary:active {
  transform: translateY(-2px) scale(1.01);
}

/* Contenedores de sección */
.aprender-section,
.formacion-section,
.formacion-plan-section {
  position: relative;
  width: 100%;
  padding-top: 8rem;
  margin-top: 2rem;
}

.formacion-plan-section {
  padding-bottom: 8rem;
  margin-top: 0;
}

.formacion-section {
  padding-bottom: 0;
  margin-top: 0;
}

.aprender-container,
.formacion-container,
.formacion-plan-container {
  position: relative;
  max-width: min(1800px, 95vw);
  margin: 0 auto;
  padding: 0 11rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: space-between;
}

.aprender-content,
.formacion-content,
.formacion-plan-content {
  flex: 1;
  max-width: 40%;
}

.aprender-image-container,
.formacion-image-container,
.formacion-plan-image-container {
  flex: 1;
  position: relative;
  max-width: 50%;
  display: flex;
}

.aprender-image-container {
  justify-content: center;
}

.formacion-image-container {
  justify-content: flex-start;
}

.formacion-plan-image-container {
  justify-content: flex-end;
}

/* Imágenes de contenido (Contenedores) */
.aprender-image-content,
.formacion-image-content,
.formacion-plan-image-content {
  position: relative;
  width: 630px;
  height: 802px;
  background-color: #f5f5f5;
  border-radius: var(--borde-tarjeta);
  overflow: hidden;
  background-repeat: no-repeat;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

/* Imágenes de fondo específicas */
.aprender-image-content {
  background-image: url("https://campus-juanxxiii-dev.uve-group.com/wp-content/uploads/media/img-gastronomia-1v2-j23.png");
  background-position: -9px 5px;
  background-size: 640px;
}

.formacion-image-content {
  background-image: url("https://campus-juanxxiii-dev.uve-group.com/wp-content/uploads/media/img-gastronomia-2-j23.png");
  background-position: -1px 0px;
  background-size: 633px;
}

.formacion-plan-image-content {
  background-image: url("https://campus-juanxxiii-dev.uve-group.com/wp-content/uploads/media/img-gastronomia-3-j23.png");
  background-position: 86px 40px;
  background-size: 548px;
}

/* Manchas de color (blobs) */
.formacion-color-blob,
.formacion-plan-color-blob {
  position: absolute;
  width: 360px;
  height: 360px;
  top: 61%;
  transform: translateY(-50%);
  background-color: var(--color-main);
  z-index: 2;
}

.formacion-color-blob {
  right: 93px;
  border-radius: 300px 0 0 300px;
}

.formacion-plan-color-blob {
  right: 0;
  border-radius: 300px 0 0 300px;
}

/* Textos sobre imágenes */
.aprender-image-text,
.formacion-image-text,
.formacion-plan-image-text {
  position: absolute;
  z-index: 3;
}

.aprender-image-text {
  top: 4rem;
  left: 11rem;
  z-index: 2;
}

.formacion-image-text,
.formacion-plan-image-text {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 50px 2rem 2rem;
}

.aprender-image-title,
.formacion-image-title,
.formacion-plan-image-title {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 0.5rem;
  text-align: center;
}

.aprender-image-title {
  font-size: 60px;
  line-height: 57px;
}

.formacion-image-title,
.formacion-plan-image-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
}

.aprender-image-subtitle,
.formacion-image-subtitle,
.formacion-plan-image-subtitle {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
}

.aprender-image-subtitle {
  margin-top: 34px;
  font-size: 32px;
}

.formacion-image-subtitle,
.formacion-plan-image-subtitle {
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-black);
}

/* Utilitarios específicos */
.aprender-text p.big-p {
  max-width: 434px !important;
  font-size: 24px !important;
  line-height: 28px !important;
}

.aprender-text p {
  max-width: 421px;
  margin-bottom: 1.5rem;
}

.aprender-text p:last-child {
  margin-bottom: 0;
}

.aprender-text strong {
  font-weight: 700;
}

/* =========================================
   PROFESIONALES
   ========================================= */

.profesionales-section {
  position: relative;
  width: 100%;
  overflow: visible;
}

.profesionales-container {
  position: relative;
  max-width: min(1800px, 95vw);
  margin: 0 auto;
  padding-left: 11rem;
  display: flex;
  align-items: center;
}

.profesionales-line {
  position: relative;
  height: 4px;
  background-color: var(--color-main);
  margin-right: 2rem;
}

.profesionales-line:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100vw;
  background-color: var(--color-main);
  right: 100%;
  top: 0;
}

.profesionales-text {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 300;
  color: var(--color-black);
  max-width: 800px;
  margin-left: -34px;
}

.profesionales-text strong {
  font-weight: 600;
}

/* =========================================
   EMPLEABILIDAD
   ========================================= */

.empleabilidad-section {
  position: relative;
  width: 100%;
  margin: 8rem 0;
}

.empleabilidad-container {
  position: relative;
  width: 75.7%;
  max-width: min(1800px, 95vw);
  margin: 0 auto;
  height: 700px;
  background-image: url("https://campus-juanxxiii-dev.uve-group.com/wp-content/uploads/media/empleabilidad-gastronomia_32.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--borde-tarjeta);
  overflow: hidden;
}

.empleabilidad-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.empleabilidad-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 483px;
  height: 145px;
  background-color: #f07d20d1;
  border-radius: 90px 0 0 90px;
  padding: 0 10px;
  margin-bottom: 100px;
}

.empleabilidad-text {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
}

/* =========================================
   FRANJA NARANJA (Orange Banner)
   ========================================= */

.orange-banner-container {
  position: absolute;
  width: 100%;
  bottom: 16vh;
  left: 0;
  z-index: 10;
}

.orange-banner {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-main);
  color: var(--color-white);
  height: 50px;
  padding: 0 30px 0 160px;
  border-radius: 0 25px 25px 0;
  width: auto;
  max-width: 758px;
  animation-delay: 0.6s;
}

.orange-banner span {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
  white-space: nowrap;
  z-index: 1;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================= */

/* --- 1550px --- */
@media screen and (max-width: 1550px) {
  .orange-banner-container {
    bottom: 9vh;
  }

  .aprender-section {
    margin-top: 0;
  }
}

/* --- 1419px --- */
@media (max-width: 1419px) {
  .aprender-image-text {
    left: 8rem;
  }
}

/* --- 1300px --- */
@media screen and (max-width: 1300px) {
  .aprender-image-content {
    background-position: 0px 34px;
    background-size: 552px;
  }

  .intro-text {
    margin-left: 10dvw;
  }

  .intro-line {
    width: calc(58% - 2rem);
  }

  .aprender-container,
  .formacion-container,
  .formacion-plan-container {
    padding: 0 6rem;
  }

  .formacion-image-content {
    background-position: -22px 0px;
    background-size: 537px;
  }

  .formacion-plan-image-content {
    background-position: -67px -84px;
    background-size: 604px;
  }

  .empleabilidad-container {
    height: 530px;
  }
}

/* --- 1200px --- */
@media (max-width: 1200px) {
  .slide-text-container {
    margin-left: 80px;
    max-width: 800px;
  }

  .slide-subtitle {
    font-size: 32px;
  }

  .slide-title {
    font-size: 70px;
  }

  .intro-text {
    font-size: 42px;
    max-width: 650px;
  }

  .aprender-container,
  .formacion-container,
  .formacion-plan-container {
    gap: 3rem;
    padding: 0 8rem;
  }

  .aprender-content,
  .aprender-image-container,
  .formacion-content,
  .formacion-image-container,
  .formacion-plan-content,
  .formacion-plan-image-container {
    max-width: 45%;
  }

  .aprender-title {
    font-size: 36px;
  }

  .aprender-image-content {
    height: 480px;
    background-position: -47px -1px;
    background-size: 495px;
  }

  .aprender-image-text {
    top: 2rem;
    left: 2rem;
  }

  .aprender-image-title {
    font-size: 50px;
    line-height: 50px;
  }

  .aprender-image-subtitle {
    margin-top: 20px;
    font-size: 32px;
  }

  .formacion-image-content,
  .formacion-plan-image-content {
    width: 580px;
    height: 700px;
  }

  .formacion-image-content {
    background-position: -9px 191px;
    background-size: 362px;
  }

  .formacion-plan-image-content {
    background-position: -5px 177px;
    background-size: 404px;
  }

  .formacion-color-blob,
  .formacion-plan-color-blob {
    width: 300px;
    height: 300px;
  }

  .profesionales-container {
    padding: 0 8rem;
  }

  .profesionales-text {
    font-size: 42px;
    max-width: 720px;
  }

  .empleabilidad-content {
    padding: 0;
  }

  .empleabilidad-box {
    width: 350px;
    height: 180px;
  }

  .empleabilidad-text {
    font-size: 26px;
  }

  .empleabilidad-container {
    height: 430px;
  }

  .partners-container {
    padding: 0 5rem;
  }

  .orange-banner {
    height: 65px;
    padding-left: 80px;
    max-width: 591px;
  }

  .orange-banner span {
    font-size: 20px;
    white-space: normal;
    line-height: 1.3;
    padding: 5px 0;
    display: block;
  }
}

/* --- 992px --- */
@media (max-width: 992px) {
  .slide-text-container {
    margin-left: 60px;
    max-width: 800px;
    margin-top: 25vh;
  }

  .slide-subtitle {
    font-size: 28px;
  }

  .slide-image {
    object-position: 65% center;
  }

  .hero-single {
    height: 70vh;
  }

  .intro-section {
    padding: 4rem 1rem;
  }

  .intro-text {
    font-size: 36px;
    max-width: 550px;
  }

  /* Layout columna */
  .aprender-container,
  .formacion-container,
  .formacion-plan-container {
    flex-direction: column;
    gap: 4rem;
    padding: 0 4rem;
  }

  .aprender-content,
  .aprender-image-container,
  .formacion-content,
  .formacion-image-container,
  .formacion-plan-content,
  .formacion-plan-image-container {
    max-width: 100%;
  }

  /* CORRECCIÓN: width 100% para que no desaparezca la imagen */
  .aprender-image-container,
  .formacion-image-container,
  .formacion-plan-image-container {
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
  }

  .aprender-image-content {
    width: 100%;
    height: 450px;
    max-width: 700px;
    margin: 0 auto;
    background-position: 134px -207px;
    background-size: 640px;
  }

  .aprender-image-text {
    left: 1rem;
  }

  .aprender-image-subtitle {
    margin-top: 0;
    text-shadow: 1px 1px 2px #717171
  }

  .formacion-color-blob {
    width: 250px;
    height: 100%;
    right: calc(50% - 320px);
    top: 0;
    transform: none;
  }

  .formacion-image-content {
    width: 500px;
    height: 600px;
    margin: 0 auto;
  }

  .formacion-plan-color-blob {
    width: 250px;
    height: 100%;
    left: calc(50% - 320px);
    top: 0;
    transform: none;
  }

  .formacion-plan-image-content {
    width: 500px;
    height: 600px;
    margin: 0 auto;
    background-position: 99px 177px;
  }

  .profesionales-container {
    padding: 0 4rem;
  }

  .profesionales-text {
    font-size: 38px;
    max-width: 650px;
  }

  .empleabilidad-container {
    height: 450px;
  }

  .empleabilidad-content {
    padding: 0 4rem;
  }

  .empleabilidad-box {
    width: 300px;
    height: 100px;
  }

  .orange-banner-container {
    bottom: 24%;
  }

  .orange-banner {
    height: 65px;
    padding-left: 40px;
    padding-right: 25px;
    border-radius: 0 20px 20px 0;
  }
}

/* --- 913px y 900px --- */
@media (max-width: 913px) {
  .orange-banner-container {
    bottom: 21%;
  }
}

@media screen and (max-width: 900px) {
  .orange-banner-container {
    bottom: 6vh;
  }

  .intro-section {
    padding: 0;
    margin-top: 0;
  }

  .intro-text {
    margin-left: 7dvw;
    max-width: 770px;
  }

  .intro-line {
    margin-top: 0;
  }

  .aprender-section {
    margin-top: 0;
  }

  .big-p,
  .aprender-text p {
    max-width: 1034px !important;
  }

  .aprender-container,
  .formacion-container,
  .formacion-plan-container {
    padding: 0 2rem;
  }

  .aprender-image-text {
    top: 1rem;
  }

  .aprender-image-subtitle,
  .formacion-image-subtitle {
    display: none;
  }

  .aprender-image-title {
    font-size: 60px;
    line-height: 47px;
    text-align: center;
  }

  .aprender-image-content {
    background-position: -3px -38px;
    background-size: 523px;
    max-width: 500px;
  }

  .profesionales-text {
    margin-left: 0;
  }

  .contact-container {
    padding: 0 2rem;
  }
}

/* --- 768px --- */
@media (max-width: 768px) {
  .hero-single,
  .hero-slider-container {
    height: calc(100vh - 2rem);
  }

  .hero-single {
    height: 60vh;
  }

  .slide-text-container {
    margin-left: 0;
    padding: 0 20px;
    text-align: center;
    margin-top: 20vh;
    max-width: 100%;
  }

  .slide-content {
    justify-content: center;
  }

  .slide-subtitle {
    font-size: 24px;
  }

  .slide-image {
    object-position: 70% center;
  }

  .intro-section {
    padding: 3rem 1rem;
  }

  .intro-container {
    padding: 0 1.5rem;
  }

  .intro-text {
    font-size: 32px;
    max-width: 100%;
    margin-left: 4dvw;
  }

  .intro-line {
    display: none;
  }

  .aprender-section {
    padding: 4rem 0;
  }

  .aprender-container,
  .formacion-container,
  .formacion-plan-container {
    gap: 2.5rem;
    padding: 0 2rem;
  }

  .aprender-content,
  .formacion-content,
  .formacion-plan-content {
    max-width: 100%;
    padding: 0 1rem;
    order: 2;
  }

  .aprender-image-container,
  .formacion-image-container,
  .formacion-plan-image-container {
    max-width: 100%;
    width: 100%;
    order: 1;
    margin-bottom: 1rem;
  }

  .aprender-image-content {
    background-position: 221px -16px;
    background-size: 381px;
  }

  .aprender-title {
    font-size: 32px;
  }

  .aprender-text p {
    font-size: 16px;
    line-height: 22px;
  }

  .aprender-image-content,
  .formacion-image-content,
  .formacion-plan-image-content {
    height: 400px;
    max-width: 90%;
    margin: 0 auto;
  }

  .aprender-image-title {
    font-size: 46px;
  }

  .formacion-color-blob {
    right: calc(50% - 250px);
  }

  .formacion-image-content {
    width: 450px;
    height: 550px;
  }

  .formacion-image-text {
    top: 2rem;
    left: 2rem;
  }

  .formacion-plan-color-blob {
    left: calc(50% - 250px);
  }

  .formacion-plan-image-content {
    width: 450px;
    height: 550px;
  }

  .formacion-plan-image-text {
    top: 2rem;
    left: 2rem;
  }

  .formacion-plan-image-title {
    font-size: 48px;
  }

  .formacion-plan-image-subtitle {
    font-size: 24px;
  }

  .formacion-list li,
  .formacion-plan-list li {
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .btn-primary {
    font-size: 16px;
    padding: 12px 24px;
  }

  .profesionales-section {
    padding: 5rem 0;
  }

  .profesionales-container {
    padding: 0 2rem;
  }

  .profesionales-line {
    width: 80px;
    margin-right: 1.5rem;
  }

  .profesionales-text {
    font-size: 32px;
    max-width: 100%;
  }

  .empleabilidad-container {
    height: 400px;
  }

  .empleabilidad-content {
    padding: 0 2rem;
  }

  .empleabilidad-box {
    width: 250px;
    height: 100px;
    padding-right: 30px;
  }

  .empleabilidad-text {
    font-size: 28px;
  }

  .orange-banner-container {
    bottom: 10vh;
  }

  .orange-banner {
    height: 70px;
    padding-left: 20px;
    max-width: 550px;
  }

  .orange-banner span {
    white-space: normal;
    line-height: 1.2;
  }
}

/* --- 576px y 560px --- */
@media (max-width: 576px) {
  .hero-single {
    height: 80vh;
  }

  .hero-slider-container {
    height: calc(100vh - 2rem);
    margin-top: 0.5rem;
  }

  .slide-text-container {
    margin-left: 20px !important;
    margin-right: 20px;
    max-width: calc(100% - 40px);
    margin-top: 15vh;
  }

  .slide-subtitle {
    font-size: 22px;
  }

  .slide-title {
    font-size: 55px;
    margin-bottom: 1rem;
  }

  .slide-image {
    object-position: 80% center;
  }

  .intro-section {
    padding: 2.5rem 0.75rem;
    margin-top: 0;
  }

  .intro-container {
    padding: 0 0.75rem;
  }

  .intro-text {
    font-size: 32px;
    margin-left: 1rem;
    max-width: calc(100% - 2rem);
  }

  .intro-line {
    width: 50%;
  }

  .aprender-section {
    padding: 3rem 0;
  }

  .aprender-container,
  .formacion-container,
  .formacion-plan-container {
    padding: 0 1.5rem;
  }

  .aprender-tag,
  .formacion-tag,
  .formacion-plan-tag {
    font-size: 14px;
  }

  .aprender-title,
  .formacion-title,
  .formacion-plan-title {
    font-size: 28px;
  }

  .big-p {
    font-size: 20px !important;
    line-height: 26px !important;
  }

  .aprender-image-content,
  .formacion-image-content,
  .formacion-plan-image-content {
    height: 350px;
    width: 100%;
  }

  .aprender-image-text {
    top: 2rem;
    left: 2rem;
  }

  .aprender-image-title {
    font-size: 35px;
    line-height: 38px;
  }

  .aprender-image-subtitle {
    font-size: 22px;
    margin-top: 21px;
    margin-left: 30px;
  }

  .aprender-image-content {
    background-position: -2px -343px;
    background-size: 511px;
  }

  a.btn-primary {
    word-wrap: break-word !important;
    font-size: 13px !important;
    padding: 10px 20px;
  }

  .formacion-section {
    padding-top: 3rem;
  }

  .formacion-color-blob {
    width: 150px;
    right: calc(50% - 200px);
  }

  .formacion-image-content {
    width: 350px;
    height: 450px;
    background-size: 353px;
    background-position: -43px -59px;
  }

  .formacion-image-text {
    top: -1.5rem;
    left: -0.5rem;
    text-align: left;
  }

  .formacion-image-title {
    font-size: 34px;
    text-align: left;
  }

  .formacion-plan-section {
    padding: 4rem 0;
  }

  .formacion-plan-color-blob {
    width: 150px;
    left: calc(50% - 200px);
  }

  .formacion-plan-image-content {
    width: 350px;
    height: 450px;
    background-position: 5px 0px;
  }

  .formacion-plan-image-text {
    top: -0.5rem;
    left: -1.5rem;
  }

  .formacion-plan-image-title {
    font-size: 38px;
  }

  .formacion-plan-image-subtitle {
    font-size: 20px;
  }

  .formacion-list li,
  .formacion-plan-list li {
    font-size: 15px;
    padding-left: 28px;
  }

  .formacion-list li::before,
  .formacion-plan-list li::before {
    width: 16px;
    height: 16px;
    top: 4px;
  }

  .profesionales-section {
    padding: 4rem 0 2rem;
  }

  .profesionales-container {
    padding: 0 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .profesionales-line {
    width: 60px;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }

  .profesionales-text {
    font-size: 28px;
    margin-left: 0;
  }

  .empleabilidad-section {
    margin: 0;
  }

  .empleabilidad-container {
    height: 350px;
    border-radius: 8px;
    width: 89.7%;
  }

  .empleabilidad-content {
    padding: 0;
  }

  .empleabilidad-box {
    width: 220px;
    height: 120px;
    padding-right: 20px;
  }

  .empleabilidad-text {
    font-size: 24px;
  }

  .orange-banner-container {
    bottom: 25%;
  }

  .orange-banner {
    height: 75px;
    padding: 10px 15px;
    border-radius: 0 18px 18px 0;
    max-width: 480px;
  }

  .orange-banner span {
    font-size: 18px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 560px) {
  .orange-banner-container {
    bottom: 15%;
  }

  .orange-banner {
    max-width: 263px;
  }

  .slide-title {
    font-size: 44px;
    margin-bottom: 1rem;
  }

  .slide-text-container {
    margin-left: 1rem !important;
    bottom: 25vh !important;
  }

  .intro-text {
    margin-left: 0;
  }

  .aprender-container,
  .formacion-container,
  .formacion-plan-container {
    padding: 0 1rem;
  }

  .formacion-image-content {
    background-position: -2px -72px;
    background-size: 355px;
  }
}

@media (max-width: 544px) {
  .orange-banner-container {
    bottom: 29%;
  }

  .orange-banner {
    max-width: 393px;
  }
}

@media (max-width: 452px) {
  .orange-banner-container {
    bottom: 26%;
  }

  .orange-banner {
    max-width: 263px;
  }

  .slide-title {
    font-size: 44px;
  }
}

/* --- 375px --- */
@media (max-width: 375px) {
  .slide-title {
    font-size: 32px;
  }

  .slide-subtitle {
    font-size: 18px;
  }

  .slide-image {
    object-position: 85% center;
  }

  .intro-text {
    font-size: 22px;
  }

  .aprender-image-content {
    height: 490px;
    background-position: -9px 20px;
    background-size: 300px;
  }

  .aprender-image-text {
    top: 1rem;
    left: 3rem;
  }

  .aprender-image-content,
  .formacion-image-content,
  .formacion-plan-image-content {
    height: 300px;
  }

  .formacion-plan-image-content {
    background-position: -31px -27px;
    background-size: 338px;
  }

  .orange-banner {
    height: 80px;
    max-width: 250px;
  }

  .orange-banner span {
    font-size: 12px;
  }
}

/* --- Media Queries por ALTURA --- */
@media screen and (max-height: 650px) {
  .orange-banner-container {
    bottom: 7vh;
  }
}

@media screen and (max-height: 580px) {
  .orange-banner-container {
    bottom: 5vh;
  }
}

@media screen and (max-height: 550px) {
  .hero-slider-container {
    height: 100vh;
  }

  .hero-single {
    height: calc(100vh - 1rem);
  }

  .orange-banner-container {
    bottom: 4vh;
  }
}

@media screen and (max-height: 490px) {
  .orange-banner-container {
    bottom: 6vh;
  }
}

@media screen and (max-height: 430px) {
  .orange-banner-container {
    display: none;
  }

  .hero-slider-container,
  .hero-single {
    height: 700px !important;
  }
}