
@font-face {
   font-family: 'Roboto';
   src: url("/static/fonts/ROBOTO/Roboto-Regular.ttf") format('truetype');
   font-weight: 400;
   font-style: normal;
}
@font-face {
   font-family: 'Roboto';
   src: url("/static/fonts/ROBOTO/Roboto-Medium.ttf") format('truetype');
   font-weight: 500;
   font-style: normal;
}
@font-face {
   font-family: 'Roboto';
   src: url("/static/fonts/ROBOTO/Roboto Bold.ttf") format('truetype');
   font-weight: 700;
}
@font-face {
   font-family: 'Roboto';
   src: url("/static/fonts/ROBOTO/Roboto-Black.ttf") format('truetype');
   font-weight: 900;
   font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
}
:root {
  --color-primario: #0d6efd;
  --border-boton: 10px;
  --color-azul-fuerte: #040847;
  

  --meliora-cian: #00FFC2;
  --meliora-mid: #00d4ff;  /* Azul intermedio del degradado */
  --meliora-blue: #007BFF; /* Azul principal */

}
/* Navbar Start */
.navbar{
    /* background: #f9f9f9; */
    /* background-color: rgb(0, 124, 245); */
    background-color: white;
    padding: 0px 5% 0px;
    transition: all .50s ease;
}
.navbar-brand{
    font-size: 32px;
    font-weight: 600;
    color: black
}

.nav-item .nav-link{
  position: relative;
  font-size: 18px;
  font-weight: 550;
  color: black;
  letter-spacing: 1px;
  padding-bottom: 8px;        /* espacio para la línea */
  transition: color 0.3s ease;
}

/* línea inferior */
.nav-item .nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background-color: var(--color-primario, #0d6efd);
  transition: width 0.3s ease;
}

/* hover */
.nav-item .nav-link:hover{
  color: var(--color-primario, #0d6efd);
/*  box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
  transform: scale(1.03);*/
}

.nav-item .nav-link:hover::after{
  width: 100%;
}


section{
    transition: all .50s ease;
}


.btn{
    min-width: 145px;
    border-radius: var(--border-boton); 
    font-weight: 500;
}
/* botones */
.btn-outline-primary {
  background-color: #fff;
  color: var(--color-primario);
  border: 2px solid var(--color-primario);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  /* Mantenemos el fondo blanco para que NO compita con el botón azul de al lado */
  background-color: #fff;
  color: var(--color-primario);
  
  /* Sombra sutil que le da profundidad sin "ensuciar" el diseño */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  
  /* Un crecimiento muy ligero */
  /*transform: translateY(-2px);*/
  transform: scale(1.03);
  
  /* Opcional: El borde puede brillar un poco más */
  border-color: var(--color-primario);
  filter: saturate(1.5);
}
.btn-secundario {
  background-color: var(--color-primario);
  color: #fff;

}
.btn-secundario:hover {
    background-color: var(--color-primario);
  color: #fff;
/*  background-color: #fff;
  color: var(--color-primario);
  border-color: var(--color-primario);*/

  box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
  transform: scale(1.03);
}
.btn-tercero {
  background-color: #fff;
  color: var(--color-primario);

}
.btn-tercero:hover {
    background-color: #fff;
  color: var(--color-primario);
/*  background-color: var(--color-primario);
  color: #fff;
  border-color: var(--color-primario);*/
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
  transform: scale(1.03);
}
.btn-cuarto {
  background-color: var(--color-azul-fuerte);
  color: #fff;
  border-color: var(--color-azul-fuerte);

}
.btn-cuarto:hover {
  background-color: var(--color-azul-fuerte);
  color: #fff;
/*  background-color: #fff;
  color: var(--color-azul-fuerte);
  border-color: var(--color-azul-fuerte);*/
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
  transform: scale(1.03);
}
.home {
  min-height: 100vh;
  background: url("../images/2026/home_fondo.png") no-repeat center center;
  /*background-repeat: no-repeat;*/
  /*background-position: center;*/
  /*background-size: cover;    */
  background-size: 100% 100%;
  padding-top: 30px;       
  background-position: center calc(50% + 40px);
}




.home-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-azul-fuerte);
}
.card-imagen{
    width: 35px;   /* O el tamaño que prefieras */
    height: 35px;
    display: inline-block;
    vertical-align: middle;
}
/*.home-text {
  max-width: 520px;
  font-size: 1rem;
  color: #4a5568;
}*/

.home-img {
  max-width: 90%;
  height: auto;
}

.meliora-stack {
  perspective: 1000px;
}
.card-cian:hover {
  border-color: var(--meliora-cian) !important;
  box-shadow: 0 15px 35px rgba(0, 255, 194, 0.15);
}

/* Tarjeta Azul Medio */
.card-mid:hover {
  border-color: var(--meliora-mid) !important;
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.15);
}

/* Tarjeta Azul Profundo */
.card-blue:hover {
  border-color: var(--meliora-blue) !important;
  box-shadow: 0 15px 35px rgba(0, 123, 255, 0.15);
}
.tech-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7); /* Fondo semi-transparente */
  backdrop-filter: blur(10px); /* Efecto de cristal */
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

/* Efecto al pasar el mouse */
.tech-card:hover {
  transform: translateX(15px) scale(1.02);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 40px rgba(0, 255, 194, 0.15);
  border-color: #00FFC2; /* El cian de Meliora */
}

/* Contenedor del Icono */
.tech-icon-wrapper {
  width: 50px;
  height: 50px;
  /*background: #00FFC2;*/
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  flex-shrink: 0;
  /*box-shadow: 0 5px 15px rgba(0, 255, 194, 0.4);*/
   /*background: var(--meliora-cian); */
   border: 2px solid var(--meliora-cian);
  box-shadow: 0 4px 12px rgba(0, 255, 194, 0.3); 
}

.tech-icon-wrapper.secondary {
  /*background: var(--meliora-blue); */
  border: 2px solid var(--meliora-blue);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Estilos de Texto */
.tech-title {
  color: #001a3d;
  font-weight: 800;
  margin-bottom: 5px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-text {
  color: #556172;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Brillo animado interno */
.card-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 194, 0.1), transparent);
  transition: 0.5s;
}

.tech-card:hover .card-glow {
  left: 100%;
}
.tech-card {
  /* ... lo anterior ... */
  transform-style: preserve-3d;
  will-change: transform;
}

/* Para que el icono y el texto también "floten" fuera de la tarjeta */
.tech-icon-wrapper, .tech-content {
  transform: translateZ(30px); /* Esto los empuja hacia adelante en el espacio 3D */
}


/* Color para el tercer icono: Un violeta tecnológico que une toda la paleta */
.tech-icon-wrapper.tertiary {
  /*background: var(--meliora-mid); */
  border: 2px solid var(--meliora-mid); 
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3); 
}
/* Ajuste de animación para que las tres tarjetas entren en cascada */
.tech-card:nth-child(1) { animation-delay: 0.2s; }
.tech-card:nth-child(2) { animation-delay: 0.4s; }
.tech-card:nth-child(3) { animation-delay: 0.6s; }

.home-subtitle {
  font-size: 1.25rem;
  color: #64748b; /* Un gris azulado muy moderno */
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto; /* Centrado */
  line-height: 1.5;
  letter-spacing: 0.5px;
  opacity: 0; /* Para la animación de entrada */
  animation: fadeInSubtitle 1s ease-out 0.5s forwards; /* Aparece medio segundo después del título */
}

@keyframes fadeInSubtitle {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/*segunda seccion*/

.descripcion {
  background-image: url("../images/2026/que_es/fondo_que_es.png");
  background-repeat: no-repeat;
  background-position: top center;   /* empieza arriba */
  /*background-size: 100% auto;*/
  background-size: 100% 100%;
  padding: 30px 0;                   /* espacio interno */
}

.funciona {
  min-height: 860px;
  background-image: url("../images/2026/funcion/fondo.png");
  background-repeat: no-repeat;
  background-position: top center;
  /*background-size: contain;*/
  background-size: 100% 100%;
  padding: 52px 0;
}
.img-shadow-soft {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 22px;
}

.perfiles {
  min-height: 860px;
  background-image: url("../images/2026/perfiles/fondo.png");
  background-repeat: no-repeat;
  background-position: top center;
  /*background-size: contain;*/
  background-size: 100% 100%;
  padding: 30px 0;
}

.precio {
  min-height: 470px;
  background-image: url("../images/2026/precio/fondo.png");
  background-repeat: no-repeat;
  background-position: top center;
  /*background-size: contain;*/
  background-size: 100% 100%;
  padding: 30px 0;
}


.miembros {
  min-height: 470px;
  background-image: url("../images/2026/opinion/fondo.png");
  background-repeat: no-repeat;
  background-position: top center;
  /*background-size: contain;*/
  background-size: 100% 100%;
  padding: 30px 0;
}


.cta {
  min-height: 470px;
  background-image: url("../images/2026/CTA/fondo.png");
  background-repeat: no-repeat;
  background-position: top center;
  /*background-size: contain;*/
  background-size: 100% 100%;
  padding: 30px 0;
}
.card-title-persona {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 28px;
  font-weight: 500;
  margin: -40px auto 1.5rem;
  /*box-shadow: 0 6px 15px rgba(0,0,0,0.15);*/
  color: black;
  background-color: #55ffd4;
  gap: 12px; 
  box-shadow: 0 10px 30px 5px rgba(50, 255, 200, 0.4);
}
.card-title-emprendedor {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 28px;
  font-weight: 500;
  margin: -40px auto 1.5rem;
  /*box-shadow: 0 6px 15px rgba(0,0,0,0.15);*/
  color: white;
  background-color: #040847;
  gap: 12px; 
  box-shadow: 0 15px 40px 8px rgba(0, 5, 40, 0.7);
}

.card-title-empresa {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 28px;
  font-weight: 500;
  margin: -40px auto 1.5rem;
  /*box-shadow: 0 6px 15px rgba(0,0,0,0.15);*/
  color: white;
  background-color: #0054f4;
  gap: 12px; 
  box-shadow: 0 12px 35px 2px rgba(0, 100, 255, 0.7);
}
.card-body p{
  text-align: justify;
  width: 280px;
  margin-left: 10px;
}
.pricing-section {
  padding: 60px 20px;
  /*font-family: system-ui, -apple-system, sans-serif;*/
}

.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.pricing-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.28s ease;
  border: 1px solid #e5e7eb;
  display: flex; 
  flex-direction: column;
}

.pricing-card.personal{
  background-image: url("../images/2026/precio/fondo_personal.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
/*  padding: 24px;
  border-radius: 16px 16px 0 0;*/
  max-width: 300px;
}

.pricing-card.emprendedor{
  background-image: url("../images/2026/precio/fondo_emprendedor.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
/*  padding: 24px;
  border-radius: 16px 16px 0 0;*/
  max-width: 300px;
}

.pricing-card.empresarial{
  background-image: url("../images/2026/precio/fondo_empresarial.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
/*  padding: 24px;
  border-radius: 16px 16px 0 0;*/
  max-width: 300px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.card-header {
  padding: 28px 24px 20px;
  text-align: center;
  /*background: linear-gradient(135deg, #f0f4ff 0%, #e6eaff 100%);*/
}

.img-cuadro{

  margin-left: 20px;
  width: 40px;   
  height: auto;
}
/*.personal .card-header { background: linear-gradient(135deg, #e6ffe6 0%, #f0fff0 100%); }
.emprendedor .card-header { background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%); }
.empresarial .card-header { background: linear-gradient(135deg, #f3e8ff 0%, #f0eaff 100%); }
*/
.plan-icon {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: #1e40af;
}

.price {
  font-size: 3.2rem;
  font-weight: 800;
  color: #111827;
}

.currency   { font-size: 1.8rem; vertical-align: 1.2rem; }
.period     { font-size: 1.1rem; color: #6b7280; }

.features {
  padding: 22px;
  margin: 0;
  list-style: none;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
  flex-grow: 1;
  text-align: justify;
}

.features li {
  margin-bottom: 12px;
}

.features li::before {
  content: "✔ ";
  color: #10b981;
  margin-right: 8px;
  font-weight: bold;
}

.card-footer {
  padding: 0 24px 28px;
  text-align: center;
  margin-top: auto;
}

/*.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  font-size: 1.05rem;
}
*/
.btn-outline {
  border: 2px solid #6366f1;
  color: #6366f1;
}

.btn-outline:hover {
  background: #6366f1;
  color: white;
}

.btn-solid {
  background: #6366f1;
  color: white;
  border: 2px solid #6366f1;
}

.btn-solid:hover {
  background: #4f46e5;
  border-color: #4f46e5;
  transform: translateY(-2px);
}

/* Destacado (Emprendedor) */
.featured {
  border: 2px solid #6366f1;
  transform: scale(1.04);
  z-index: 10;
}

.featured:hover {
  transform: scale(1.06) translateY(-8px);
}

.ribbon {
  position: absolute;
  top: 27px;
  right: -50px;
  background: #f59e0b;
  color: white;
  padding: 6px 50px;
  font-size: 0.9rem;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}



/*efecto flip card*/
/* Ajusta el tamaño al de tus imágenes pasadas por static */
.flip-card {
  background-color: transparent;
  width: 277px; /* Ajusta según el tamaño de paso_1.png */
  height: 333px; 
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 15px; /* Para que combine con img-shadow-soft */
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-card-front {
  background-color: transparent;
}

.flip-card-back {
  background-color: #0d6efd; /* Color primario de Bootstrap */
  color: white;
  transform: rotateY(180deg);
  padding: 20px;
}

.flip-card-front img {
/*  width: 100%;
  height: 100%;*/
  width: 247px; /* Ajusta según el tamaño de paso_1.png */
  height: 100%; 
  object-fit: cover;
}

/*MIEMBROS*/

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 265px;
  height: 344px;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.quote-icon {
  font-size: 3.5rem;
  line-height: 1;
  color: #0d6efd; /* o el color principal de tu marca */
  opacity: 0.15;
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
}

.person-img {
  width: 80px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.testimonial-person {
  margin-top: auto;
}

.f-700{
  font-weight: 900;
  font-size: 45px;
}
.f-15px{
  font-size: 15px!important;
}

.fst-italic{
  text-align: justify;
}
.footer {
  background: #ffffff;
  padding: 2rem 0 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.footer-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.6rem;
}

.footer-list a {
  color: #374151;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-list a:hover {
  color: var(--color-primario);              /* verde elegante */
  padding-left: 4px;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  color: #6b7280;
  font-size: 0.85rem;
}



.container-scroll {
    /* Esto permite que en móviles el contenido no se amontone 
       y respete el scroll hacia la derecha */
    min-width: min-content; 
    padding-left: 15px;
    padding-right: 15px;
}

/* Opcional: Para ocultar la barra de scroll y que se vea más limpio */
.overflow-x-auto::-webkit-scrollbar {
    display: none;
}
.overflow-x-auto {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Responsive */
@media (min-width: 640px) {
  .pricing-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 20px;
  }
  
  .featured {
    transform: scale(1.08);
  }

}

@media (min-width: 1024px) {
  .pricing-container {
    gap: 32px;
  }
}

@media (max-width: 991px) {
  .home {
    text-align: center;
    padding-top: 100px;
  }

  .home-text {
    margin-left: auto;
    margin-right: auto;
  }

  .home-title {
    font-size: 2rem;
  }
  .funciona .container{
    width: 100%!important;
    margin: 10px!important;
  }
  .card-body p {
    text-align: justify;
    width: 100%;
    margin: auto;
  }
  .card-body.px-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .pricing-container {
    grid-template-columns: 1fr;   /* una columna */
    text-align: center;           /* centra texto */
    justify-items: center;        /* centra los cards */
  }
  .f-700{
    font-size: 30px;
  }
  .home-text{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .perfiles h1{
    padding-right: .25rem !important;
    padding-left: .25rem !important;
  }
  .cta h1{
    font-size: 18pt;
  }
}
@media (min-width: 991px) and (max-width: 1400px)  {
  .perfiles .profile-card .card-body {
    padding-left: 0 !important;
    padding-right: 0 !important;
  } 
}

.resaltar-boton {
  /* Elevación suave + Resplandor del mismo color azul (#2563eb) */
  box-shadow: 
    0 10px 20px -5px rgba(37, 99, 235, 0.4), 
    0 4px 6px -2px rgba(37, 99, 235, 0.2);
    
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Efecto opcional para cuando pases el mouse */
.resaltar-boton:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 20px 25px -5px rgba(37, 99, 235, 0.5), 
    0 8px 10px -6px rgba(37, 99, 235, 0.3);
}

.resaltar-boton-completo {
  /* Sombra concéntrica difusa para un efecto de resplandor */
  /*box-shadow: 0 0 25px 0 rgba(37, 99, 235, 0.6);*/
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
  transition: all 0.3s ease;
  font-size: 1.2rem;
  /* Para que el efecto sea suave al interactuar */
  /*transition: box-shadow 0.3s ease-in-out;*/
}

/* Efecto al pasar el mouse (hover) - intensifica el resplandor */
.resaltar-boton-completo:hover {
  /*box-shadow: 0 0 35px 5px rgba(37, 99, 235, 0.8);*/
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
  transform: scale(1.03);
}
.logo-meliora {
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  filter: blur(12px) brightness(2); /* Empieza desenfocado y muy brillante */
  animation: meliora-reveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes meliora-reveal {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    filter: blur(12px) brightness(2);
  }
  60% {
    opacity: 1;
    filter: blur(4px) brightness(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0) brightness(1);
    /* Añade una sombra de resplandor suave al final */
    drop-shadow: 0 0 15px rgba(0, 255, 194, 0.3);
  }
}

.text-cyan {
   color: #00FFC2;
}

@media (max-width: 991px) {
  .home {
    background-attachment: scroll; /* Vital para iOS */
    background-position: center top; /* Mejor para móviles */
  }
}
