
body {
    background-color: #f9fafd;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    color: #03133e;
    line-height: 1.6;
    -webkit-font-smoothing:"antialiased";
}

/* HEADER */
#mi-header{

background-color: #03133e;
padding: 15px 40px;
position: relative;
}

/* 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;
}

.hero-imagen {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
}
/*==================CONTENIDO PRINCIPAL=======================*/

/* HERO GENERAL */
/* HERO GENERAL */
.hero{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 90%;
  gap: 40px;
  margin: auto;
  padding: 40px 0;
}
.hero-texto {
  flex: 1;
}

.hero-imagen {
  flex: 1.5; /* 🔥 más grande que el texto */
}


.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;
  }
}
/*-------------------------------------texto enganche uno ------------*/
.bloque-historia {
  width: 100%;
  display: flex;
  justify-content: center;

  /* 🔥 tus colores */
  background: linear-gradient(135deg, #03133e, #0d6efd);

  padding: 80px 20px;
  margin-top: -40px;
  box-sizing: border-box;
}

.card-historia {
  max-width: 900px;
  width: 100%;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 18px;

  /* sombra elegante */
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);

  text-align: center;
}

/* TÍTULO */
.titulo-historia {
  font-size: 42px;
  color: #0b1f3a;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

/* SUBTÍTULO */
.subtitulo-historia {
  font-size: 19px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* línea elegante */
.linea {
  width: 70px;
  height: 4px;
  background: #0d6efd;
  margin: 0 auto;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .card-historia {
    padding: 30px 20px;
  }

  .titulo-historia {
    font-size: 28px;
  }

  .subtitulo-historia {
    font-size: 17px;
  }
}
/*===================================LO QUE HACE LA GENTE MAL =========================*/
.bloque-errores {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: #ffffff;
}

.contenido-errores {
  max-width: 900px;
  width: 100%;
}

/* TÍTULO */
.titulo-errores {
  font-size: 30px;
  color: #0b1f3a;
  margin-bottom: 30px;
  text-align: center;
}

/* ITEM */
.item-error {
  display: flex;
  align-items: flex-start;
  gap: 15px;

  border: 2px dashed #0d6efd;
  border-radius: 12px;

  padding: 18px 20px;
  margin-bottom: 15px;

  background: #f8fbff;
}

/* CHECK */
.check {
  font-size: 20px;
  color: #0d6efd;
  font-weight: bold;
  margin-top: 2px;
}

/* TEXTO */
.texto-error {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}
/*=======================SECCIÓN 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;
}

/*================SECCION 3====================*/
.seccion3 {
  background: #fefdfd;
  color: #0b1e3c;
  padding: 60px 20px;
  text-align: center;
}

/* CONTENIDO */
.seccion3 .contenido {
  max-width: 900px;
  margin: auto;
}

/* IMAGEN */
.fx-brocha {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 30px;
  display: block;
}

/* TITULO */
.seccion3 h2 {
  font-size: clamp(30px, 5vw, 52px);
  margin-bottom: 25px;
  font-weight: 700;
}

/* 🔥 TEXTO RESALTADO (2 palabras) */
.resaltado {
  color: #2563eb;
  animation: brillo 2s infinite alternate;
}

@keyframes brillo {
  from { opacity: 1; }
  to { opacity: 0.6; }
}

/* DESCRIPCION */
.descripcion {
  font-size: clamp(16px, 2.3vw, 20px);
  margin-bottom: 30px;
}

/* 🔥 TICKER */
.beneficios {
  overflow: hidden;
  width: 100%;
}

.ticker {
  width: 100%;
  overflow: hidden;
}

.track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.track span {
  font-size: 16px;
  white-space: nowrap;
}

/* ANIMACIÓN */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .seccion3 h2 {
    font-size: 28px;
  }

  .fx-brocha {
    max-width: 80%;
  }

  .track span {
    font-size: 14px;
  }
}
/*=====================SECCION NUEVA DEL TUTORIA ABP ==========================*/
.seccion-solucion {
  background: #ffffff;
  padding: 80px 20px;
}

.solucion-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* COLUMNAS */
.solucion-img {
  flex: 1;
  text-align: center;
}

.solucion-img img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.solucion-texto {
  flex: 1;
}

/* TÍTULO */
.solucion-texto h2 {
  font-size: 38px;
  color: #03133e;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* TEXTO DESTACADO */
.solucion-texto .destacado {
  font-size: 20px;
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 20px;
}

/* PÁRRAFOS */
.solucion-texto p {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* TEXTO CLAVE */
.solucion-texto .highlight {
  color: #03133e;
  font-weight: 600;
}

/* CIERRE */
.solucion-texto .cierre {
  color: #0d6efd;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .solucion-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .solucion-texto h2 {
    font-size: 28px;
  }
}


/*========================================================SECCION 5*/

/*=================SECCIÓN 4 - CSS CALCULADORA====================*/

/*======================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%);
  }
}
/*==================================BONUS========================================*/
.bonus {
  background-color: #ffffff; /* Fondo blanco de la sección */
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.bonus-container {
  max-width: 1200px;
  margin: 0 auto;
}

.bonus h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #03133e; /* Título azul */
}

.bonus .intro {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #000; /* Texto negro de introducción */
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.bonus-card {
  background-color: #03133e; /* Azul del contenedor */
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #ffffff; /* Texto blanco dentro del contenedor */
  transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.bonus-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.bonus-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.bonus-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.bonus-card .price {
  font-size: 1.1rem;
  color: #f0c040; /* Precio dorado */
}
/*=====================================================================INSTRUCTOR*/
.about-profesor {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

/* CONTENEDOR */
.about-wrapper {
  max-width: 800px;
  margin: auto;
}

/* FOTO */
.about-img {
  margin-bottom: 25px;
}

.about-img img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%; /* 🔥 círculo */
  border: 4px solid #2563eb; /* detalle pro */
}

/* TITULO */
.about-text h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 10px;
}

/* NOMBRE */
.nombre {
  font-size: 22px;
  font-weight: bold;
  color: #2563eb;
  margin-bottom: 5px;
}

/* CREDENCIALES */
.credenciales {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* TEXTO */
.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* FRASE FINAL */
.frase-final {
  font-weight: bold;
  font-size: 18px;
}
/*===========================================================HECTOR ARISTIZABAL*/
.sobre-mi {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.contenedor-sobre-mi {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
  padding-left: 20px;  /* margen interno para celulares */
  padding-right: 20px; /* margen interno para celulares */
}

/* Cuadro azul con foto */
.foto-tarjeta {
  background-color: #03133e;
  color: #fff;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}

.mi-foto {
  width: 100%;
  display: block;
}

.tarjeta-footer {
  padding: 20px;
  text-align: center;
}

.nombre {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
}

.profesion {
  font-size: 0.95em;
  line-height: 1.4;
}

/* Texto descriptivo al lado derecho */
.descripcion-sobre-mi {
  flex: 1;
  font-size: 1.1em;
  color: #222;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
  .contenedor-sobre-mi {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-left: 30px;  /* más margen lateral para tablet */
    padding-right: 30px;
  }
  .foto-tarjeta {
    width: 80%;
  }
  .descripcion-sobre-mi {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contenedor-sobre-mi {
    padding-left: 20px;  /* margen lateral para celulares pequeños */
    padding-right: 20px;
  }
  .foto-tarjeta {
    width: 100%;
  }
  .descripcion-sobre-mi {
    font-size: 1em;
  }
}
/*==================================================================DEIPLOMA*/
.certificacion-seccion {
  background: #ffffff;
  padding: 80px 20px;
  color: #0b1e3c;
}

.cert-wrapper {
  display: flex;
  flex-direction: column; /* imagen arriba, texto abajo */
  align-items: center;
  gap: 30px; /* espacio entre diploma y texto */
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TEXTO */
.cert-texto h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}

.cert-texto p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.destacado {
  font-weight: bold;
  color: #2563eb;
}

.frase-final {
  font-weight: bold;
  font-size: 18px;
}

/* IMAGEN */
.cert-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cert-wrapper {
    flex-direction: column;
  }
}
/*====================================================================TESTIMONIOS*/
/* SECCION */
.testimonios {
  background: #1e3a8a; /* azul fuerte */
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

/* TITULO */
.testimonios h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 50px;
}

/* CONTENEDOR */
.testimonios-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* TARJETA */
.testimonio {
  background: #ffffff;
  color: #0b1e3c;
  padding: 25px;
  border-radius: 15px;
  width: 300px;
  text-align: center;
  transition: 0.3s;
}

/* HOVER */
.testimonio:hover {
  transform: translateY(-8px);
}

/* AVATAR */
.testimonio img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

/* NOMBRE */
.testimonio h3 {
  margin-bottom: 5px;
}

/* ESTRELLAS */
.estrellas {
  color: #fbbf24; /* dorado */
  margin-bottom: 10px;
}

/* TEXTO */
.testimonio p {
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonio {
    width: 100%;
    max-width: 320px;
  }
}
/*======================SECCION 6:HOW TO WORK=====================*/
.proceso {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.titulo-proceso {
  font-size: 40px;
  color: #03133e;
  font-weight: 700;
  margin-bottom: 60px;
}

/* CONTENEDOR */
.pasos {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: nowrap;
}

/* 🔥 CAJAS VISIBLES */
.paso {
  flex: 1;
  background: #f8fbff; /* 🔥 leve azul para que se note */
  border: 2px solid #e0e6f0; /* 🔥 borde visible */
  border-radius: 16px;

  padding: 50px 20px 25px;
  position: relative;

  box-shadow: 0 15px 35px rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}

.paso:hover {
  transform: translateY(-6px);
  border-color: #0d6efd;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* IMAGEN */
.paso img {
  width: 60px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 8px;
  border-radius: 50%;
  border: 2px solid #e0e6f0;
}

/* TÍTULO */
.paso h3 {
  font-size: 18px;
  color: #0d6efd;
  margin-bottom: 10px;
}

/* TEXTO */
.paso p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {
  .pasos {
    flex-direction: column;
  }

  .paso {
    margin-top: 40px;
  }
}
/*========================ELEGIBILIDAD=========================================*/
/* Estilos generales */
.elegibilidad {
  padding: 60px 20px;
  background-color: #03133e;
  text-align: center;
  color: #fff;
}

.titulo-elegibilidad {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.texto-elegibilidad {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  color: #e0e0e0;
}

.btn-contacto {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ff6600;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-contacto:hover {
  background-color: #e05500;
}

/* Media Queries para móviles y tablet */
@media (max-width: 768px) {
  .titulo-elegibilidad {
    font-size: 1.8em;
  }
  .texto-elegibilidad {
    font-size: 1em;
    padding: 0 10px;
  }
  .btn-contacto {
    padding: 12px 25px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .titulo-elegibilidad {
    font-size: 1.5em;
  }
  .texto-elegibilidad {
    font-size: 0.95em;
  }
  .btn-contacto {
    width: 100%;
    max-width: 250px;
    padding: 12px 0;
  }
}
/*======================INDEX_ACORDEON PREGUNTAS FRECUENTES ======================*/
.faq {
  background: #f8fafc;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
  color: #0b1e3c;
  max-width: 900px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 16px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  display: none;
  padding: 15px;
  font-size: 14px;
  color: #1f2f4a;
  border-top: 1px solid #eee;
}
/*=========================================SUPERINTENDENCIA DE INDUSTRIA Y COMERCIO*/
.registro-certificado {
  padding: 60px 20px;
  background: #f8f9fb;
}

.registro-certificado .registro-wrapper {
  max-width: 900px;
  margin: 0 auto; /* 🔥 esto centra sin usar flex */
  text-align: center;
  background: #fff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* LOGO */
.registro-certificado .registro-logo img {
  max-width: 140px;
  margin-bottom: 25px;
}

/* TITULO */
.registro-certificado h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* TEXTO */
.registro-certificado p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;
}

/* BOTON */
.registro-certificado .btn-registro {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: #0066ff;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {

  .registro-certificado {
    padding: 40px 15px;
  }

  .registro-certificado .registro-wrapper {
    padding: 30px 20px;
  }

  .registro-certificado h2 {
    font-size: 24px;
  }

  .registro-certificado p {
    font-size: 15px;
  }

  .registro-certificado .btn-registro {
    width: 100%;
  }

}
/* ==========================================INDEX_ FOOTER GENERAL ===== */
.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;
  color: #f7f8f9;
}

/* ===== 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;
  }
}
/* ================== CELULAR ================== */
@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: 400px;
}

.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);
  }

/*SECCIÓN 3*/

  /* RESPONSIVE PROBLEMAS*/
  .problemas {
    padding: 40px 15px;
  }

  .problemas-contenedor {
    gap: 15px;
  }

  .problema {
    padding: 15px;
  }
}
/* ================= CONTACT PAGE ================= */

.contact-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #03133e, #0d6efd);
  color: white;
}

.contact-hero-wrap {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* TEXTO */
.contact-hero-text {
  flex: 1;
}

.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;
}

/* FORM */
.contact-hero-form {
  flex: 1;
}

.contact-hero-form form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  color: #0b1e3c;
}

/* INPUTS */
.contact-hero-form input,
.contact-hero-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* BOTÓN */
.contact-hero-form button {
  width: 100%;
  padding: 14px;
  background: #0b1e3c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-hero-form button:hover {
  background: #efb508;
  color: #0b1e3c;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .contact-hero-wrap {
    flex-direction: column;
    text-align: center;
  }

  .contact-hero-form form {
    padding: 25px;
  }
}
/*==================imagen grande contacto=====================*/
 /* Estilo para la sección */
   /* Estilo para la sección */
   .imagen-completa {
    width: 100%;
    height: 100vh; /* altura total en escritorio */
    display: flex;
    justify-content: center; /* centra horizontalmente */
    align-items: center;     /* centra verticalmente */
    overflow: hidden;
  }

  .imagen-completa .full-img {
    max-width: 100%;      /* no se salga del contenedor */
    max-height: 100%;     /* no se salga del contenedor */
    object-fit: cover;    /* cubre el área manteniendo proporción */
    display: block;
  }

  /* Adaptación para móviles */
  @media (max-width: 768px) {
    .imagen-completa {
      height: auto;       /* altura automática según la imagen */
      padding: 10px 0;    /* opcional para dar espacio arriba y abajo */
    }

    .imagen-completa .full-img {
      width: 100%;        /* ocupa todo el ancho */
      height: auto;       /* altura proporcional */
    }
  }
 
 
/*=====================MENU - MISION*/
/* SECCIÓN */
.mision {
  background: #ffffff;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
  color: #0b1e3c;
  text-align: center;
}

/* TITULO */
.mision h2 {
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 60px;
  font-weight: 700;
}

/* CONTENEDOR */
.mision-contenedor {
  max-width: 1100px;
  margin: auto;
}

/* BLOQUES */
.mision-bloque {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* INVERTIDO */
.mision-bloque.reverse {
  flex-direction: row-reverse;
}

/* IMAGEN */
.mision-img {
  flex: 1;
}

.mision-img img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* TEXTO */
.mision-texto {
  flex: 1;
  text-align: left;
}

.mision-texto h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2563eb;
}

.mision-texto p {
  font-size: 16px;
  line-height: 1.7;
  color: #1f2f4a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mision-bloque,
  .mision-bloque.reverse {
    flex-direction: column;
    text-align: center;
  }

  .mision-texto {
    text-align: center;
  }
}
/*============================APRENDIZAJE ==========================================*/
.expectativas-curso {
  padding: 60px 20px;
  text-align: center;
}

.titulo-expectativas {
  font-size: 42px;
  font-weight: 800;
  color: #666666;
  margin-bottom: 40px;
}

.contenedor-expectativas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.item-expectativa {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.item-expectativa:hover {
  transform: translateY(-5px);
}

.item-expectativa h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.item-expectativa p {
  font-size: 15px;
  color: #555;
}
/*==================================PRECIOS=============================*/
/* SECCIÓN */
/* ===== SECCIÓN PRECIOS ===== */
.precios {
  background: #f8fafc;
  padding: 80px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #0b1e3c;
}

/* TITULO */
.precios h2 {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
}

/* CONTENEDOR */
.contenedor-planes {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* PLAN */
.plan {
  background: #ffffff;
  width: 320px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
  position: relative;
  z-index: 1; /* 🔥 CLAVE: NO tapa el menú */
}

/* HOVER */
.plan:hover {
  transform: translateY(-10px);
}

/* DESTACADO */
.destacado {
  border: 2px solid #2563eb;
}

/* BADGE */
.badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #2563eb;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 8px;
}

/* TITULO */
.plan h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* PRECIO */
.precio {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1; /* 🔥 evita que se monte */
}

/* LISTA */
.plan ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}

.plan ul li {
  font-size: 14px;
  margin-bottom: 10px;
}

/* NO INCLUIDO */
.no {
  color: #aaa;
}

/* BOTÓN */
.btn-hotmart {
  display: block;
  width: 100%;
  padding: 12px;
  background: #2563eb;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-hotmart:hover {
  background: #1d4ed8;
}
.titulo-precios {
  font-size: 64px;
  text-align: center;
  font-weight: 900;
  line-height: 1.1;
}

.subtitulo-precios {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contenedor-planes {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== 🔥 FIX DEFINITIVO MENÚ ===== */
header {
  position: relative;
  z-index: 1000;
}

.dropdown-menu {
  position: absolute;
  z-index: 2000;
}
/* PLAN PREMIUM */
.premium {
  border: 2px dashed #2563eb;
  background: #f9fbff;
}

/* TEXTO PREMIUM */
.contacto-premium {
  margin-top: 15px;
  font-size: 14px;
  color: #1f2f4a;
  font-weight: 500;
}
/*NOTA*/
.nota-elegante {
  background: #0b1e3c;
  color: #ffffff;
  padding: 18px 20px;
  border-radius: 10px;
  margin-top: 25px;
  text-align: center;
  font-family: Arial, sans-serif;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.nota-elegante p {
  margin: 5px 0;
  font-size: 14px;
}

.nota-elegante strong {
  color: #60a5fa;
}
/*===========================PRECIOS - HOTMART EXPLICADO*/
/* SECCIÓN HOTMART */
.hotmart-info {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #0b1e3c;
}

/* CONTENEDOR */
.hotmart-info {
  max-width: 900px;
  margin: auto;
}

/* TÍTULO */
.hotmart-info h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* PÁRRAFOS */
.hotmart-info p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  margin-bottom: 18px;
  color: #1f2f4a;
}

/* TEXTO RESALTADO */
.hotmart-info strong {
  color: #2563eb;
  font-weight: 600;
}

/* EFECTO HOVER SUAVE */
.hotmart-info p:hover {
  color: #0b1e3c;
  transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hotmart-info {
    padding: 60px 15px;
  }

  .hotmart-info h2 {
    font-size: 26px;
  }

  .hotmart-info p {
    font-size: 15px;
  }
}
/*===================RECIOS -BOTON GARANTÍA*/

/* SECCIÓN */
.garantia {
  background: #ffffff;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
  color: #0b1e3c;
}

/* CONTENEDOR */
.garantia-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* TEXTO */
.garantia-texto {
  flex: 1;
}

.garantia-texto h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
  font-weight: 700;
}

.garantia-texto p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #1f2f4a;
}

/* DESTACADO */
.garantia-destacado {
  font-weight: 600;
  color: #2563eb;
  margin-top: 10px;
}

/* IMAGEN */
.garantia-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.garantia-img img {
  max-width: 250px;
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .garantia-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .garantia-img img {
    max-width: 180px;
  }
}
