
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;
}

/*==================CONTENIDO PRINCIPAL=======================*/

/* HERO GENERAL */
/* HERO GENERAL */
/* =========================
   HERO SECTION
   ========================= */
   .hero {
    display: flex;
    flex-wrap: wrap; /* Permite que en móvil los elementos se apilen */
    align-items: center;
    justify-content: space-between;
    padding: 50px 5%;
    background: #f9f9f9; /* Fondo claro, opcional */
    gap: 20px; /* Espacio entre columnas */
  }
  
  .hero-texto {
    flex: 1 1 500px; /* Ocupa mínimo 500px, crece si hay espacio */
    max-width: 600px;
  }
  
  .hero-texto h3 {
    font-size: 1.5rem;
    color: #ff5722;
    margin-bottom: 10px;
  }
  
  .hero-texto h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero-texto p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  .hero-acciones {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .social-box a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff5722;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .social-box a:hover {
    background-color: #e64a19;
  }
  
  .hero-imagen {
    flex: 1 1 400px;
    max-width: 500px;
    text-align: center;
  }
  
  .hero-imagen img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Ocultar la imagen correspondiente según el dispositivo */
  .img-mobile { display: none; }
  
  /* =========================
     RESPONSIVE
     ========================= */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column-reverse; /* Texto arriba, imagen abajo */
      text-align: center;
      padding: 30px 5%;
    }
  
    .hero-texto, .hero-imagen {
      max-width: 100%;
    }
  
    .img-pc { display: none; }
    .img-mobile { display: inline-block; margin-bottom: 20px; }
  }
/*=======================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 4 NUEVA ==========================*/
/* IMAGEN IZQUIERDA */
.img-metodo {
  width: 100%;
  border-radius: 15px;
  display: block;
}

/* TEXTO DERECHO */
.col-derecha h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}

/* PÁRRAFOS */
.col-derecha p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* DESTACADOS */
.destacado {
  font-weight: bold;
  color: #1d4ed8;
}

.highlight {
  font-size: 18px;
  font-weight: bold;
}

.cierre {
  font-weight: bold;
}

/* RESPONSIVE (por si no lo tienes) */
@media (max-width: 768px) {
  .calc-wrapper {
    flex-direction: column;
  }
}
/*========================================================SECCION 5*/

/*=================SECCIÓN 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%;
  }
}
/*======================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%);
  }
}
/*=====================================================================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;
}
/*==================================================================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 {
  padding: 80px 20px;
  background: #f5f7fa;
  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: #0b1e3c;
}

.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_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;
}

/* ===== 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;
  }
}
/*==================================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;
  }
}
