
body {
    background-color: #f9fafd;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    color: #03133e;
    line-height: 1.6;
    -webkit-font-smoothing:"antialiased";
}

/*===================================================INDEX__HEADER ====================*/
#mi-header{

background-color: #03133e;
padding: 15px 40px;
position: relative;
z-index: 1000;
}

/* CONTENEDOR */

.contenedor{
    
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo img{
    width: 200px;
    height: auto;
}

/* MENÚ PC */

.menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu a{
    color: #f9fafd;
    text-decoration: none;
}

.menu a:hover{
    color: #efb508;
}

.menu a:active{
    color: rgb(16, 109, 191);
}
.hamburguesa {
    display: none;
}
@media (max-width: 768px){

  .hamburguesa{
    display: block;  
    font-size: 28px;
    color: #f8f9fc;
  }
  
  .menu{
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #fbf8f8;
  
      max-height: 0;
      overflow: hidden;
      transition:max-height 0.05s ease;
  }
  
  .menu.activo{
      max-height: 600px;
  }
  
  .menu ul{
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      margin: 0;
  }
  
  .menu a{
      display: block;
      background-color: #03133e;
      color: #fcfafa;
      padding: 12px;
      border-radius: 8px;
      text-align: center;
      margin: 5px 0;
      transition: 0.35;
  }
  
  .menu li{
      width: 80%;
  }
  
  /* HOVER PRO */
  /*.menu a:hover {
      background: #efb508;
      color: #050505;
    }*/
  
    /*CLICK*/
    .menu.activo{
      transform: scale(0.97);
    }
  }

/*===========================================================INDEX__SECCION 1:HERO=======================*/

.hero{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 90%;
  gap: 40px;
  margin: auto;
  padding: 40px 0;
}

.hero-texto h3{
  font-size: 20px;
  margin-bottom: 100px;
  font-size: clamp(15px, 2vw, 20px);
}

.hero-texto h1{
  font-size: 80px;
  line-height: 1.0;
  margin: 0;
  font-size: clamp(42px, 5vw, 80px);
}

.hero-texto p{
  font-size: 20px;
  margin-top: 25px;
  font-size: clamp(13px, 1vw, 20px);
}
.social-box{
  width: 100%;
  display: flex;
  justify-content: center; /* 🔥 centra el botón */
}

.social-box a{
  background: #efb508;
  color: #03133e;
  padding: 7px 25px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 40px;
  text-decoration: none !important;
}
.social-hero {
  display: flex;
  justify-content: center; /* 🔥 centrado horizontal */
  align-items: center;
  gap: 15px; /* 🔥 espacio uniforme entre iconos */
  margin-top: 15px;
}
.social-hero a {
  display: inline-block;
}
.social-hero img {
  width: 20px;
  height: 20px;
}
/* IMAGEN GENERAL */
.hero-imagen img{
  width: 100%;
  height: auto; 
}
.img-pc{
  display: block;
  padding: 10px;
  max-width: 100%;
}
.img-mobile{
  display: none;
}
@media (max-width: 768px) {
  .social-hero {
    margin-top: 10px;
  }
  .social-hero a {
    display: inline-block;
  }
  .social-hero img {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }


   .hero{
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 100px; /* espacio para que entre la onda */
    padding: 0;
    margin: 0%;
    width: 100%;
  }
  .hero-texto h3{
    margin-bottom: 25px;
  }
  .hero-texto p{
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .img-mobile{
    display: block !important;
    width: 100%;
    height: auto;
  }
  .img-pc{
    display: none !important;
  }
}

/*====================================================INDEX__SECCION 2: PROBLEMAS =========================*/
* {
  box-sizing: border-box;
}

.problemas {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #03133e, #0d6efd);
  color: white;
}

/* TÍTULO */
.problemas h2 {
  font-size: clamp(24px, 5vw, 36px);
  margin-bottom: 40px;
}

/* CONTENEDOR */
.problemas-contenedor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* TARJETAS */
.problema {
  width: 100%;
  padding: 20px;
  border-radius: 10px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* oscurece la imagen SIN position */
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;

  color: white;
}

/* TEXTOS */
.problema h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.problema p {
  font-size: 15px;
}

/*=================================INDEX==PROFESIONAL FINISH___SECCION 3====================*/
.seccion3 {
  background: #fefdfd;
  color: #0b1e3c;
  padding: 80px 20px 0px; /* 👈 sin espacio abajo */
  margin: 0;
  text-align: center;

  position: relative;
  overflow: hidden; /* 🔥 CLAVE */
}

.seccion3 .contenido {
  max-width: 900px;
  margin: auto;
  margin-bottom: 23%;
}

.seccion3 h2 {
  font-size: clamp(30px, 5vw, 52px);
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.seccion3 .descripcion {
  font-size: clamp(16px, 2.3vw, 20px);
  line-height: 1.7;
  margin-bottom: 35px;
  color: #1f2f4a; /* azul más suave para lectura */
}

.seccion3 .beneficios p {
  font-size: clamp(15px, 2vw, 18px);
  margin: 8px 0;
  font-weight: 500;
}

.fx-brocha {
  position: absolute;
  bottom: -30px; /* 👈 ajusta hasta que quede perfecta */
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .seccion3 .contenido {
    margin-bottom: 80px; /* 👈 valor fijo, no porcentaje */
  }
  .fx-brocha {
    bottom: -280px; /* 👈 la bajas más en celular */
  }
  /*SECCIÓN 3*/

  /* RESPONSIVE PROBLEMAS*/
  .problemas {
    padding: 40px 15px;
  }

  .problemas-contenedor {
    gap: 15px;
  }

  .problema {
    padding: 15px;
  }
}
/*=================================================INDEX__SECCION 4 - CSS CALCULADORA====================*/
.calculadora-seccion {
  background: #0b1e3c;
  padding: 0px 0px;
  color: white;
  margin-top: 0;
}

.contenedor {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: center;
}

/* COLUMNAS */
.col-izquierda,
.col-derecha {
  flex: 1;
}

/* TEXTO DERECHA */
.col-derecha h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}

.col-derecha p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #dbe3f0;
}

/* CALCULADORA */
.calculadora-seccion {
  background: #03133e;
  padding: 80px 20px;
  color: white;
}

.calc-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: center;
}

.col-izquierda,
.col-derecha {
  flex: 1;
}

/* TEXTO DERECHA */
.col-derecha h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}

.col-derecha p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #dbe3f0;
}

.contacto {
  margin-top: 20px;
  font-size: 18px;
  color: white;
}

/* CALCULADORA */
.calc-box {
  background: white;
  color: #0b1e3c;
  padding: 40px;
  border-radius: 12px;
}

.planes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.planes button {
  flex: 1;
  padding: 12px;
  border: 1px solid #0b1e3c;
  background: white;
  color: #0b1e3c;
  cursor: pointer;
  border-radius: 6px;
}

.planes button:hover {
  background: #0b1e3c;
  color: white;
}

.precio {
  margin: 20px 0;
}

input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.calcular-btn {
  background: #0b1e3c;
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
}

#resultado {
  margin-top: 20px;
  font-size: 26px;
}

.incluye {
  margin-top: 25px;
  font-size: 14px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .calc-wrapper {
    flex-direction: column;
  }

  .planes {
    flex-direction: column;
  }

  .planes button {
    width: 100%;
  }
}
/*====================================================INDEX__SECCION 5: CARRUSEL===========================*/
/* CONTENEDOR GENERAL */
.aristi-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* TRACK (animación) */
.aristi-track {
  display: flex;
  width: max-content;
  animation: aristi-scroll 25s linear infinite;
}

/* SLIDES */
.aristi-slide {
  flex: 0 0 auto;
  width: 300px;
  margin-right: 20px;
}

.aristi-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

/* ANIMACIÓN */
@keyframes aristi-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*========================================INDEX====PARTNERS=====SECCION 6=====================*/

.proceso {
  padding: 80px 20px;
  background: #03133e;
  text-align: center;
}

/* 🔥 TITULO CON IMAGEN */
.titulo-proceso {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 40px;
  color: #f5f7fa;
}

.titulo-proceso img {
  width: 35px;
  height: auto;
  opacity: 0.8;
}

/* GRID */
.pasos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  max-width: 1100px;
  margin: auto;
}

.paso {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}

/* ICONOS */
.paso img {
  width: 80px;
  height: auto;
  margin-bottom: 12px;
  filter: grayscale(100%);
}

/* TITULO PASOS */
.paso h3 {
  margin-bottom: 10px;
  color: #0b1e3c;
  font-size: 17px;
}

/* TEXTO */
.paso p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* 📱 MÓVIL */
@media (max-width: 768px) {

  .titulo-proceso img {
    width: 25px;
  }

  .pasos {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .paso {
    padding: 15px;
    text-align: center;
  }

  .paso img {
    width: 45px;
    height: auto;
    margin: 0 auto 10px auto;
  }

  .paso h3 {
    font-size: 18px;
  }

  .paso p {
    font-size: 14px;
  }
}
/* ===================================================INDEX-SECCION 6=======================*/
.color-partners {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.partners-container {
  max-width: 1100px;
  margin: 0 auto;
}

.color-partners h2 {
  font-size: 42px;
  color: #0a1f44; /* azul oscuro */
  margin-bottom: 50px;
  font-weight: 700;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partners-logos img {
  max-width: 180px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s ease;
}

.partners-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
/*============================================INDEX___SECCION 7---FOOTER ======================*/
.footer-pro {
  background: #03133e;
  color: white;
  padding-top: 50px;
  font-family: Arial, sans-serif;
}

/* CONTENEDOR */
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 60px;
  flex-wrap: wrap;
}

/* COLUMNAS */
.footer-brand,
.footer-links,
.footer-contact {
  flex: 1;
  min-width: 250px;
}

/* ===== LOGO ===== */
.footer-brand img {
  width: 150px;
  margin-bottom: 15px;
}

/* TEXTO */
.footer-brand p {
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ===== TITULOS ===== */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  color: #efb508;
}

/* ===== LINKS ===== */
.footer-links a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #efb508;
}

/* ===== CONTACTO ===== */
.footer-contact p {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ===== REDES ===== */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-social a {
  background: #efb508;
  color: #03133e;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: white;
  color: #03133e;
}

/* ===== BARRA INFERIOR ===== */
.footer-bottom {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .footer-wrap {
    flex-direction: column;
    padding: 0 20px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links a {
    margin-bottom: 10px;
  }
  .footer-contact p {
    color:#ccc;
  }
}
/*========================================SERVICIOS===================================================*/
/*========================================SERVICIOS===================================================*/
/*========================================SERVICIOS===================================================*/
.hero-servicios-pro {
  display: flex;
  width: 100%;
  min-height: 90vh;
}

/* TEXTO */
.hero-servicios-texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;

  position: relative;
  overflow: hidden;
}

/* 🔥 IMAGEN BROCHA */
.bg-brush {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

/* 🔥 CONTROL VISIBILIDAD */
.desktop {
  display: block;
}

.mobile {
  display: none;
}

/* 🔥 TEXTO ENCIMA */
.hero-servicios-texto p,
.hero-servicios-texto h1,
.hero-servicios-texto a {
  position: relative;
  z-index: 2;
}

/* 🔥 BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  color: #060342;
  margin-bottom: 15px;
}

/* 🔥 TITULO */
.hero-servicios-texto h1 {
  font-size: clamp(40px, 5vw, 70px);
  color: #03133e;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* 🔥 DESCRIPCIÓN */
.hero-desc {
  font-size: 18px;
  color: #070232;
  max-width: 500px;
  margin-bottom: 25px;
}

/* 🔥 BOTÓN */
.hero-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #efb508;
  color: #03133e;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #03133e;
  color: #fff;
}

/* IMAGEN DERECHA */
.hero-servicios-img {
  flex: 1;
}

.hero-servicios-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .hero-servicios-pro {
    flex-direction: column;
  }

  .hero-servicios-texto {
    padding: 50px 20px;
    text-align: center;
    align-items: center;
  }

  /* 🔥 CAMBIO IMAGEN */
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  /* 🔥 BROCHA MOBILE */
  .bg-brush {
    width: 140%;
    height: auto;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    opacity: 0.6;
  }

  /* 🔥 CONTENEDOR TEXTO */
  .hero-servicios-texto p,
  .hero-servicios-texto h1 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* 🔥 BREADCRUMB */
  .breadcrumb {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #555;
  }

  /* 🔥 TITULO */
  .hero-servicios-texto h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
  }

  /* 🔥 DESCRIPCIÓN */
  .hero-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
    max-width: 320px;
  }

  /* 🔥 BOTÓN PERFECTO */
  .hero-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-width: 240px;
    padding: 15px 20px;

    font-size: 15px;
    font-weight: 600;

    margin-top: 15px;
  }

  /* IMAGEN DERECHA */
  .hero-servicios-img {
    height: 250px;
  }

}
/* ===========================PAGINA SE SERVICIOS SECCION 3========================================*/
/* ==================================ZIGZAG SECTION================================= */
.zigzag-section {
  padding: 80px 20px;
  background: #f9fafd;
}

.zigzag-title {
  text-align: center;
  font-size: clamp(32px, 5vw, 50px);
  color: #03133e;
  margin-bottom: 60px;
}

/* CONTENEDOR */
.zigzag-item {
  max-width: 1100px;
  margin: 0 auto 60px;

  display: flex;
  align-items: center;
  gap: 50px;
}

/* INVERTIDO */
.zigzag-item.reverse {
  flex-direction: row-reverse;
}

/* TEXTO */
.zigzag-text {
  flex: 1;
}

.zigzag-text h3 {
  font-size: 26px;
  color: #03133e;
  margin-bottom: 15px;
}

.zigzag-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* IMAGEN */
.zigzag-img {
  flex: 1;
}

.zigzag-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .zigzag-item,
  .zigzag-item.reverse {
    flex-direction: column;
  }

  .zigzag-img img {
    height: 250px;
  }

  .zigzag-text {
    text-align: center;
  }
}
/* =======================================PAGINA DE: SKILLS TRAINING ===================================*/
/* =======================================PAGINA DE: SKILLS TRAINING ===================================*/
/* =======================================PAGINA DE: SKILLS TRSINING=================================== */

/*================================================================SKILLS__60 30 10*/
.color-guide {
  padding: 100px 0px;
  text-align: center;

  /* 🔥 fondo oscuro elegante */
  background: linear-gradient(
    135deg,
    #020617 0%,
    #03133e 70%,
    #0d6efd 100%
  );

  color: white;
}

.color-guide-container {
  max-width: 900px;
  margin: auto;
  padding: 0 20px; /* 👈 ESTA ES LA CLAVE */
}

.color-guide-title {
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 20px;
}

.color-guide-description {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #cbd5e1;
}

/* 🎥 VIDEO */
.video-box {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px auto;
  border-radius: 16px;
  overflow: hidden;

  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* relación 16:9 */
.video-box iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* TEXTO FINAL */
.color-guide-steps {
  font-size: 16px;
  color: #e2e8f0;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .video-box iframe {
    height: 220px;
  }
}

/*========================SKILLS__CIRCULO DE COLO*/
.break-section {
  width: 100%;
  padding: 80px 20px;

  /* fondo azul degradado */
  background: linear-gradient(135deg, #0d47a1, #1976d2, #42a5f5);

  display: flex;
  justify-content: center;
  align-items: center;
}

.break-card {
  background: white;
  padding: 40px 50px;
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  width: 100%;

  box-shadow: 0 15px 40px rgba(0,0,0,0.25);

  animation: float 2s ease-in-out infinite;
}

.break-card h2 {
  color: #0d47a1;
  margin-bottom: 15px;
  font-size: 28px;
}

.break-card p {
  color: #333;
  font-size: 17px;
  letter-spacing: 0.5px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* responsive */
@media (max-width: 600px) {
  .break-card {
    padding: 30px;
  }

  .break-card h2 {
    font-size: 22px;
  }

  .break-card p {
    font-size: 15px;
  }
}


/*==================================================SKILLS__TEXTO============SECCION */
.cta-course {
  padding: 120px 0;
  text-align: center;
  background: #ffffff; /* fondo blanco limpio */
}

.cta-course-container {
  max-width: 900px;
  margin: auto;
  padding: 0 clamp(16px, 5vw, 40px);
}

.cta-course-title {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.3;
  margin-bottom: 25px;
  color: #0b1f3a; /* 🔥 azul oscuro elegante */
}

.cta-course-text {
  font-size: 18px;
  color: #334155; /* gris azulado */
  margin-bottom: 40px;
}

/* BOTÓN */
.cta-course-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 8px;

  background: #0d6efd;
  color: white;
  text-decoration: none;
  font-weight: 600;

  transition: all 0.3s ease;
}

.cta-course-btn:hover {
  background: #0b5ed7;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13,110,253,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-course {
    padding: 80px 0;
  }

  .cta-course-text {
    font-size: 16px;
  }
}
/* =======================================PAGINA DE: CONTACT PAGE =================================== */
/* =======================================PAGINA DE: CONTACT PAGE =================================== */
/* =======================================PAGINA DE: CONTACT PAGE =================================== */
/* CONTENEDOR PRINCIPAL */

/*ANTIGUA SECCION HERO DEL FORMULARIO LA DEJO*/
/* CONTENEDOR PRINCIPAL */
.contact-hero-wrap {
  min-height: 100vh; /* ocupa toda la pantalla */
  display: flex;
  align-items: center; /* centra verticalmente */
  justify-content: center; /* centra horizontalmente */
  padding: 40px 20px;
  background: linear-gradient(135deg, #03133e, #0d6efd); /* degradado azul */
  color: white;
}

/* WRAP INTERNO */
.contact-hero-inner {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

/* TEXTO */
.contact-hero-text {
  flex: none; /* evita estiramiento */
  max-width: 500px;
}

.contact-hero-text h1 {
  font-size: clamp(32px, 5vw, 60px);
  margin-bottom: 20px;
}

.contact-hero-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 14px;
}

/* FORMULARIO */
.contact-hero-form {
  flex: none; /* no se estira */
  width: 400px; /* ancho fijo en escritorio */
}

.contact-hero-form form {
  background: transparent; /* transparente para ver degradado */
  padding: 40px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* INPUTS Y TEXTAREA */
.contact-hero-form input,
.contact-hero-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.6);
  font-size: 14px;
  background-color: rgba(255,255,255,0.15);
  color: white;
  resize: vertical;
}

.contact-hero-form input::placeholder,
.contact-hero-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

/* BOTÓN */
.contact-hero-form button {
  width: 100%;
  padding: 14px;
  background: #0b1e3c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-hero-form button:hover {
  background: #efb508;
  color: #0b1e3c;
}

/* RESPONSIVE MÓVIL */
@media (max-width: 768px) {
  .contact-hero-inner {
    flex-direction: column; /* todo apilado */
    text-align: center;
    gap: 30px;
  }

  .contact-hero-form {
    width: 100%; /* ocupa todo el ancho disponible */
    max-width: 400px; /* no se hace enorme en tablets */
  }

  .contact-hero-form input,
  .contact-hero-form textarea,
  .contact-hero-form button {
    width: 100%; /* full width */
  }

  .contact-hero-form form {
    padding: 25px;
  }
}
/* ===== SECCIÓN AREAS (ESTILO CLARO) ===== */
.areas {
  padding: 60px 20px;
  background: #ffffff; /* fondo blanco */
  color: #0f172a; /* azul oscuro */
}

.areas-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

/* TEXTO */
.areas-text {
  flex: 1;
}

.areas-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #0f172a; /* azul oscuro */
}

.areas-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #334155; /* gris azulado elegante */
  margin-bottom: 20px;
}

.areas-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.areas-text li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #0f172a;
}

/* BOTÓN */
.areas-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #0f172a; /* azul oscuro */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.areas-btn:hover {
  background: #1e293b; /* un poco más claro */
  transform: translateY(-2px);
}

/* MAPA */
.areas-map {
  flex: 1;
}

.areas-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .areas-container {
    flex-direction: column;
    text-align: center;
  }
}

/* =============================================================== JOB OPPORTUNITIES SECTION ===== */

.job-section {
  background: #ffffff;
  padding: 80px 20px;
}

.job-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* TITULO */
.job-title {
  font-size: 42px;
  font-weight: 800;
  color: #03133e;
  margin-bottom: 10px;
}

/* LINEA DECORATIVA */
.job-line {
  width: 80px;
  height: 4px;
  background: #efb508;
  margin: 10px auto 25px;
  border-radius: 2px;
}

/* SUBTITULO */
.job-subtitle {
  font-size: 20px;
  color: #333;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

/* TEXTO */
.job-text {
  font-size: 17px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* GRID */
.job-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* TARJETAS AZULES */
.job-box {
  background: #03133e;
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  transition: 0.3s;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.1);
}

.job-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* TITULO TARJETA */
.job-box h3 {
  color: #efb508;
  margin-bottom: 15px;
  font-size: 20px;
}

/* LISTA */
.job-box ul {
  list-style: none;
  padding: 0;
}

.job-box ul li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  color: #e0e0e0;
  font-size: 15px;
}

/* ICONO */
.job-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #efb508;
  font-size: 13px;
}

/* BOTON */
.job-btn {
  display: inline-block;
  margin-top: 50px;
  background: #efb508;
  color: #03133e;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.job-btn:hover {
  background: #03133e;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .job-boxes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .job-boxes {
    grid-template-columns: 1fr;
  }

  .job-title {
    font-size: 28px;
  }

  .job-subtitle {
    font-size: 16px;
  }

  .job-text {
    font-size: 15px;
  }
}
/* ===== SECCIÓN ===== */
.job-process {
  background: #ffffff;
  padding: 90px 20px;
}

.job-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* TITULO */
.process-title {
  font-size: 38px;
  font-weight: 800;
  color: #03133e;
  margin-bottom: 10px;
}

/* SUBTITULO */
.process-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* GRID */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* TARJETAS */
.process-step {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  border: 1px solid #eee;
  transition: 0.3s;
  position: relative;
}

/* NUMERO (ESTILO PRO) */
.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: -15px;
  left: 20px;
  background: #efb508;
  color: #03133e;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 20px;
}

/* HOVER */
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* TITULO STEP */
.process-step h3 {
  color: #03133e;
  margin-bottom: 10px;
  font-size: 18px;
}

/* TEXTO */
.process-step p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* MENSAJE FUERTE */
.process-warning {
  margin-top: 60px;
  font-size: 17px;
  font-weight: 600;
  color: #03133e;
}

/* BOTON */
.process-btn {
  display: inline-block;
  margin-top: 25px;
  background: #efb508;
  color: #03133e;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.process-btn:hover {
  background: #03133e;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-title {
    font-size: 28px;
  }

  .process-subtitle {
    font-size: 16px;
  }
}

/*==================================================TRAINING========================================*/
/* ===== SECCIÓN ===== */
.training-doc {
  padding: 20px;
  background: #f4f7fb;
}

/* CONTENEDOR */
.training-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TEXTO */
.training-container p {
  max-width: 700px;
  margin: 0 auto 20px;
}

/* ===== VISOR PDF ===== */
.pdf-viewer {
  width: 100%;
}

/* PC */
.pdf-viewer iframe {
  width: 100%;
  height: 90vh; /* 🔥 casi toda la pantalla */
  border: none;
}

/* ===== MÓVIL (CLAVE) ===== */
@media (max-width: 768px) {

  html, body {
    height: 100%;
    margin: 0;
  }

  .training-doc {
    padding: 0; /* 🔥 quita espacios */
  }

  .training-container {
    width: 100%;
    padding: 0;
  }

  .training-container h2,
  .training-container p,
  .training-actions {
    padding: 10px;
  }

  /* 🔥 PDF OCUPA TODA LA PANTALLA */
  .pdf-viewer iframe {
    width: 100%;
    height: 100vh; /* 🔥 FULL SCREEN */
  }

}
/*SECCION 2*/

/* ================= QUIZ COMPLETO PRO ================= */
/* ================= QUIZ PRO ================= */
/* ================= QUIZ PRO ================= */

/* ===== CONTENEDOR GENERAL ===== */
.quiz-pro {
  background: #ffffff;
  padding: 40px 20px;
}

.quiz-pro-container {
  max-width: 700px;
  margin: auto;
  background: #0b1e3c;
  color: white;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
}

/* ===== INPUTS ===== */
.quiz-pro-user {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.quiz-pro-user input {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  border: none;
}

/* ===== PREGUNTA ===== */
.quiz-pro-question p {
  margin-bottom: 10px;
  font-weight: bold;
}

/* ===== OPCIONES ===== */
.quiz-pro-question label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;

  background: #122a55;
  padding: 12px;
  margin: 8px 0;
  border-radius: 8px;
  cursor: pointer;
}

/* ===== RADIO (FIX GLOBAL + ESTILO) ===== */
.quiz-pro input[type="radio"] {
  width: auto !important;      /* 🔥 rompe el width:100% global */
  display: inline-block !important;

  margin: 0;
  accent-color: red;
  transform: scale(1.2);
  flex-shrink: 0;
}

/* ===== BOTÓN ===== */
.quiz-pro button {
  width: 100%;
  padding: 14px;
  background: #efb508;
  color: #03133e;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.quiz-pro button:hover {
  background: #ffffff;
}

/* ===== RESULTADO ===== */
#qp_result {
  margin-top: 15px;
  font-weight: bold;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .quiz-pro {
    padding: 30px 15px;
  }

  .quiz-pro-container {
    padding: 20px;
  }

  .quiz-pro-user {
    flex-direction: column;
  }

  .quiz-pro-user input {
    width: 100%;
  }

  .quiz-pro-question label {
    padding: 14px; /* mejor toque táctil */
  }

  /* 🔥 OPCIÓN SELECCIONADA */
.quiz-pro-question input[type="radio"]:checked + * {
  color: #fff;
}

/* 🔥 CAJA ACTIVA */
.quiz-pro-question label:has(input:checked) {
  background: #ef4444; /* rojo */
  border: 1px solid #ff0000;
}

}
