/* landing.css - Azul ISP Moderno (versión final) */

/* Variables */
:root {
  --primary: #1b6ec2;
  --primary-700: #155aa0;
  --accent: #0f4f91;
  --muted: #6c757d;
  --bg: #f8fbff;
  --electric-green: #00c8ff; /* celeste más vibrante */
  --electric-glow: #39ff14;  /* verde eléctrico para detalles */
}

/* Texto del brand */
.navbar-brand .brand-text {
    color: var(--electric-green); 
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-brand .brand-text:hover {
    color: #ffffff; /* cambia a blanco en hover */
}


/* Forzar enlaces de la navbar en blanco */
.landing-header .navbar-nav .nav-link {
    color: #ffffff !important;   /* blanco */
    font-weight: 500;            /* un poco más marcado */
    transition: color 0.3s ease;
}

/* Hover: opcional, celeste vibrante */
.landing-header .navbar-nav .nav-link:hover {
    color: var(--electric-green) !important; /* celeste vibrante */
}

.navbar-logo {
    height: 40px;
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.navbar-logo:hover {
    transform: scale(1.05); /* zoom suave */
    box-shadow: 0 0 10px var(--electric-green); /* glow celeste */
}

/* Global */
body {
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: #222;
  margin: 0;
}
.hero-row {
    min-height: 75vh;
}
/* Header */
.landing-header {
  background: linear-gradient(90deg, rgba(27,110,194,0.95), rgba(11,82,152,0.95));
  color: #fff;
}
.navbar {
  padding: 0.6rem 0;
}
.brand-box{
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.45rem 0.6rem;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand img {
    height: 50px;        /* Ajusta la altura que quieras */
    width: auto;         /* Mantiene la proporción de la imagen */
    padding: 0;
    margin: 0;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.navbar-brand img:hover {
    transform: scale(1.05); /* zoom suave */
    box-shadow: 0 0 10px var(--electric-green); /* glow celeste */
}


/* Ajustes finos para el logo principal */
.navbar {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.navbar-brand {
    padding: 0;          /* Quita padding extra */
}
.brand-text{
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95); /* por defecto blanco */
}
/* Clase específica para el author en verde eléctrico */
.brand-author {
  color: var(--electric-green) !important;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(0,255,94,0.12);
}
/* Separación uniforme para botones en navbar */
.navbar-nav .nav-item .btn {
    margin-left: 0.5rem;   /* espacio entre botones */
}
/* El primer botón no necesita margen izquierdo */
.navbar-nav .nav-item .btn:first-child {
    margin-left: 0;
}
/* Ajuste en móviles: apilamiento y margen superior */
@media (max-width: 992px) {
    .navbar-nav .nav-item .btn {
        margin-top: 0.5rem;
        width: 100%; /* opcional: ocupa todo el ancho en móviles */
    }
}
/* Navbar links */
.navbar .nav-link {
  color: rgba(255,255,255,0.95);
  margin-right: .5rem;
}
.navbar .btn-outline-light {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.navbar .btn-outline-light:hover {
  background: rgba(255,255,255,0.06);
}
.navbar .btn-primary {
  background: var(--primary);
  border-color: var(--primary-700);
}
.hero .display-4 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .6rem;
}
.hero .lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
/* CTA buttons */
.btn-cta {
  padding: .75rem 1.25rem;
  font-size: 1.05rem;
  border-radius: .5rem;
  box-shadow: 0 8px 20px rgba(27,110,194,0.12);
}
/* Features cards */
.features {
  padding: 3rem 0;
}

.feature-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  text-align: center; /* centrado más limpio */
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.feature-card i {
  transition: all .3s ease;
  color: var(--accent);
}

.feature-card:hover i {
  transform: scale(1.2);
  color: var(--accent);
  text-shadow: 0 0 12px rgba(0, 150, 255, 0.6); /* glow tecnológico */
}

.feature-card h5 {
  color: var(--accent);
  font-weight: 700;
  margin-top: 1rem;
}

.feature-card p {
  color: var(--muted);
  text-align: justify; /* justifica el texto */
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Footer */
.landing-footer {
  background: #fff;
  border-top: 1px solid #e9eef8;
}
/* Responsive adjustments */
@media (min-width: 992px){
  .hero {
    padding: 8rem 0 5rem;
  }
  .hero .display-4 {
    font-size: 3.4rem;
  }

.navbar-logo-lg {
    height: 63px;   /* ajustá a gusto */
    width: auto;
}
.navbar-by {
    font-size: 0.81rem;
    opacity: 0.75;
    white-space: nowrap;
}
.navbar-nav .nav-item:last-child {
    margin-right: 0 !important;
}
/* Ajuste fino navbar derecha */
.navbar-nav {
    padding-right: 0;
}
.navbar {
    padding-right: 0.25rem;
}
}
.landing-footer {
    background-color: var(--primary);
    color: white;
    padding: 1rem 0;
    font-size: 0.875rem;
}
.footer-content {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.footer-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Logos base */
.footer-logo {
    height: 16px;        /* tamaño base */
    width: auto;         /* mantiene proporción */
    flex-shrink: 0;
    vertical-align: middle;
}

/* Desktop (pantallas grandes) */
@media (min-width: 992px) {
    .footer-logo {
        height: 20px;    /* un poco más grande */
    }
}

/* Móviles (pantallas chicas) */
@media (max-width: 576px) {
    .footer-logo {
        height: 14px;    /* más chico en celulares */
        width: auto;
    }
}

.hero-section img {
    max-height: 420px;
    object-fit: contain;
}

/* HERO - Fondo oscuro para mejor contraste */
.hero-section {
    position: relative;
    background: linear-gradient(
        rgba(15, 23, 42, 0.85),
        rgba(15, 23, 42, 0.85)
    );
}
/* HERO - Sombra suave para texto */
.hero-section h1,
.hero-section p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    pointer-events: none;
}
.hero-section > .container {
    position: relative;
    z-index: 1;
}
#heroCarousel {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}
.btn-login {
    border-width: 2px;
    color: #ffffff;
}

.btn-login:hover {
    background-color: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
}
.hero-section .btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
    transition: all 0.25s ease;
}

.hero-section .btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.35);
}

/* Footer estilo SaaS */
.landing-footer {
    background-color: #1e40af;   /* azul oscuro elegante */
    color: #39ff14;             /* gris claro para texto */
    padding: 1.5rem 0;
    font-size: 0.875rem;
    border-top: 1px solid rgba(255,255,255,0.1); /* línea sutil */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;                /* más aire entre items */
    text-align: center;
}

.footer-item {
    font-weight: 500;           /* texto un poco más marcado */
    letter-spacing: 0.5px;      /* sensación moderna */
    transition: color 0.3s ease;
}

/* Hover suave en items */
.footer-item:hover {
    color: #39ff14;             /* verde eléctrico de tu marca */
}

/* Responsive móviles */
@media (max-width: 576px) {
    .footer-content {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Footer link destacado */
.footer-item a {
    color: #e5e7eb;          /* gris claro por defecto */
    font-weight: 600;        /* negrita */
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-item a:hover {
    color: #39ff14;          /* verde eléctrico en hover */
    text-shadow: 0 0 8px rgba(57,255,20,0.6); /* glow suave */
    text-decoration: none;   /* sin subrayado */
}


/* Ajustes para pantallas chicas */
@media (max-width: 576px) {
  .hero-row {
    min-height: auto; /* no fuerces altura mínima en móviles */
  }

  .hero-section h1 {
    font-size: 1.75rem; /* título más compacto */
  }

  .hero-section p.lead {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-section .btn {
    width: 100%; /* botones ocupan todo el ancho */
  }
}

/* HERO - texto blanco por defecto en desktop */
.hero-section {
  color: #fff;
  position: relative;
  background: linear-gradient(
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.85)
  );
}

.hero-section h1,
.hero-section p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Overlay sutil */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  pointer-events: none;
}

.hero-section > .container {
  position: relative;
  z-index: 1;
}

/* Ajustes para móviles */
@media (max-width: 576px) {
  .hero-section h1 {
    color: #222; /* título oscuro */
    font-size: 1.75rem;
    text-shadow: none;
  }

  .hero-section p.lead {
    color: #222;
    background: rgba(255,255,255,0.85);
    padding: 0.75rem;
    border-radius: 6px;
    display: block;
    text-shadow: none;
  }

  .hero-section .btn {
    width: 100%; /* botones ocupan todo el ancho */
  }
}


.quienes-somos h2 {
  font-size: 2rem;
  color: var(--accent);
  text-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.quienes-somos .lead {
  font-size: 1.1rem;
  line-height: 1.6;
}

.features-list li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  padding-left: 1.5rem;
  position: relative;
}

.features-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--electric-green);
  font-weight: bold;
}

.como-funciona h2 {
  font-size: 2rem;
  color: var(--electric-green);
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.steps-list li {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.steps-list i {
  color: var(--electric-green);
  font-size: 1.25rem;
}

.soluciones h5 {
  color: var(--accent);
  margin-top: 0.5rem;
}

.feature-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.feature-card i {
  color: var(--electric-green);
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.feature-card:hover i {
  transform: scale(1.2);
  text-shadow: 0 0 12px rgba(0,200,255,0.6);
}

.problema h2 {
  font-size: 2rem;
  color: var(--accent);
  text-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.problema p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
}

.problema strong {
  color: var(--electric-green);
  font-weight: 600;
}

.cta-final {
  background: linear-gradient(90deg, var(--primary), var(--primary-700));
}

.cta-final h2 {
  font-size: 2rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.cta-final .btn {
  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-final .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

/* TITULOS */
.plans-title {
    color: #2c4bb3;
    font-weight: 700;
}

.plans-subtitle {
    color: #6c757d;
}

/* CARD */
.plan-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

/* DESTACADO */
.plan-highlight {
    border: 2px solid var(--electric-green);
    transform: scale(1.03);
}

/* BADGE */
.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--electric-green);
    color: #000;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
}

/* PLANES DE MI WISP - TITULO */
.plan-title {
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

/* PRECIO */
.plan-price-box {
    margin: 15px 0;
}

.plan-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.plan-period {
    font-size: 14px;
    color: #6c757d;
}

/* DESC */
.plan-desc {
    font-size: 14px;
    color: #6c757d;
    min-height: 40px;
}

/* FEATURES */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.plan-features li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* BOTÓN */
.plan-btn {
    margin-top: 15px;
    border-radius: 8px;
    font-weight: 600;
}
.plan-highlight {
    border: 2px solid var(--electric-green);
    transform: scale(1.03);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--electric-green);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.disabled-plan {
    opacity: 0.6;
    filter: grayscale(40%);
    pointer-events: none;
}

.plan-features li::before {
    content: "✔ ";
    color: var(--electric-green);
    font-weight: bold;
}

.plan-metrics {
    list-style: none;
    padding: 0;
    margin: 10px 0 15px 0;
    display: flex;
    justify-content: space-around;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.plan-metrics li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.plan-metrics {
    background: rgba(0,0,0,0.03);
    border-radius: 8px;
    padding: 8px;
}

/* =========================
   PANTALLAS CHICAS - GRID DE PLANES
========================= */

/* Desktop grande (4 columnas) */
#contenedorPlanes .col-lg-3 {
    display: flex;
}

/* Card ocupa todo el alto */
.plan-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* =========================
   TITULOS
========================= */

.plans-title {
    font-size: 32px;
    font-weight: 700;
}

.plans-subtitle {
    font-size: 16px;
}

/* =========================
   PRECIO
========================= */

.plan-price {
    font-size: 32px;
}

.plan-period {
    font-size: 14px;
}

/* =========================
   FEATURES
========================= */

.plan-features {
    text-align: left;
    font-size: 14px;
}

/* =========================
   METRICS
========================= */

.plan-metrics {
    list-style: none;
    padding: 0;
    margin: 12px 0 18px 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.plan-metrics li {
    flex: 1;
    text-align: center;
    background: rgba(0,0,0,0.04);
    padding: 8px;
    border-radius: 8px;
    font-weight: 600;
}

/* =========================
   BOTON
========================= */

.plan-btn {
    width: 100%;
    margin-top: auto;
}

/* =========================
   HOVER
========================= */

.plan-card:hover {
    transform: translateY(-8px);
}

/* =========================
   TABLET (2 columnas)
========================= */

@media (max-width: 992px) {

    #contenedorPlanes .col-md-6 {
        display: flex;
    }

    .plan-card {
        padding: 20px;
    }

    .plan-price {
        font-size: 28px;
    }

    .plans-title {
        font-size: 26px;
    }

}

/* =========================
   MOBILE (1 columna)
========================= */

@media (max-width: 576px) {

    /* 1 sola columna */
    #contenedorPlanes .col-md-6,
    #contenedorPlanes .col-lg-3 {
        width: 100%;
        max-width: 100%;
    }

    /* Card */
    .plan-card {
        padding: 18px;
    }

    /* Título */
    .plan-title {
        font-size: 16px;
    }

    /* Precio */
    .plan-price {
        font-size: 24px;
    }

    /* Métricas en columna */
    .plan-metrics {
        flex-direction: column;
        gap: 6px;
    }

    .plan-metrics li {
        text-align: left;
    }

    /* Features más compactas */
    .plan-features {
        font-size: 13px;
    }

    /* Botón */
    .plan-btn {
        font-size: 14px;
    }

}

/* =========================
   EXTRA PRO (visual)
========================= */

.plan-highlight {
    border: 2px solid var(--electric-green);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--electric-green);
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.disabled-plan {
    opacity: 0.6;
    filter: grayscale(40%);
}

/* 🔥 ALERT PRO LOGIN */
.login-alert-pro {
    display: flex !important;
    align-items: center;
    gap: 15px;
    padding: 16px;
    margin-top: 20px;

    border-radius: 12px !important;
    background: linear-gradient(135deg, #fff4e5, #ffe8cc) !important;
    border: 1px solid #ffd8a8 !important;

    box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
}

/* ICONO */
.login-alert-pro .icon {
    font-size: 26px;
}

/* CONTENIDO */
.login-alert-pro .content {
    flex: 1;
}

/* TITULO */
.login-alert-pro .title {
    font-weight: 600;
    color: #b45309;
    font-size: 14px;
}

/* DESCRIPCIÓN */
.login-alert-pro .desc {
    font-size: 13px;
    color: #92400e;
    margin-top: 3px;
}

/* BOTÓN */
.login-alert-pro .btn {
    border-radius: 8px;
    font-weight: 500;
}

.login-error-modern {
    display: flex;
    align-items: center;
    gap: 10px;

    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.15);

    color: #b42318;

    padding: 14px 16px;
    border-radius: 14px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 18px;
}

.login-error-modern i {
    font-size: 16px;
}

/* =========================================
   FORGOT PASSWORD
========================================= */

.forgot-card {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
}

.forgot-side {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    min-height: 100%;
    position: relative;
}

.forgot-overlay {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 40px;
}

.forgot-icon {
    width: 80px;
    height: 80px;

    margin: 0 auto;

    border-radius: 50%;

    background: rgba(255,255,255,0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    color: #fff;

    backdrop-filter: blur(8px);
}

.forgot-side-text {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.6;
}

.forgot-subtitle {
    color: #858796;
    font-size: 14px;
    line-height: 1.6;
}

.forgot-btn {
    height: 46px;
    font-weight: 600;
    border-radius: 12px;
}

.forgot-back-link {
    color: #4e73df;
    font-weight: 600;
    transition: .2s ease;
}

.forgot-back-link:hover {
    text-decoration: none;
    opacity: .8;
}

.forgot-success-alert {

    width: 100%;

    display: flex;
    align-items: center;

    gap: 12px;

    background: rgba(25, 135, 84, 0.08);

    border: 1px solid rgba(25, 135, 84, 0.15);

    border-radius: 14px;

    padding: 14px 16px;

    margin-bottom: 20px;
}

.forgot-success-icon {

    width: 38px;
    height: 38px;

    min-width: 38px;

    border-radius: 50%;

    background: rgba(25, 135, 84, 0.15);

    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot-success-icon i {

    color: #198754;

    font-size: 16px;
}

.forgot-success-text {

    color: #146c43;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.5;
}

@media (max-width: 576px) {

    .forgot-success-alert {

        align-items: flex-start;

        padding: 12px 14px;
    }

    .forgot-success-text {

        font-size: 13px;
    }

}

/* =========================================
   LOGIN ALERT RESPONSIVE
========================================= */

@media (max-width: 576px) {

    .login-alert-pro {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

        padding: 14px;

        border-radius: 14px;
    }

    .login-alert-pro .icon {

        font-size: 22px;
    }

    .login-alert-pro .title {

        font-size: 14px;
    }

    .login-alert-pro .desc {

        font-size: 13px;

        line-height: 1.5;
    }

    .login-alert-pro .btn {

        width: 100%;

        margin-top: 12px;
    }
}

/* =========================================
   RESET PASSWORD
========================================= */

.reset-password-strength {

    font-size: 12px;

    margin-top: 6px;

    color: #858796;
}

.reset-password-tips {

    background: rgba(78,115,223,.05);

    border: 1px solid rgba(78,115,223,.08);

    border-radius: 12px;

    padding: 14px;

    margin-top: 18px;
}

.reset-password-tips ul {

    padding-left: 18px;

    margin-bottom: 0;
}

.reset-password-tips li {

    font-size: 13px;

    color: #6c757d;

    margin-bottom: 6px;
}

/* =========================================
   PASSWORD TOGGLE
========================================= */

.password-wrapper {

    position: relative;
}

.password-input {

    padding-right: 46px !important;
}

.toggle-password {

    position: absolute;

    top: 50%;
    right: 14px;

    transform: translateY(-50%);

    border: none;
    background: transparent;

    cursor: pointer;

    font-size: 16px;

    color: #858796;
}

.toggle-password:focus {

    outline: none;
}

/* =========================================
   REGISTER
========================================= */

.custom-select-register {

    height: 48px;

    border-radius: 12px;

    font-size: 14px;

    border: 1px solid #dbe2ef;

    transition: .2s ease;
}

.custom-select-register:focus {

    border-color: #4e73df;

    box-shadow: 0 0 0 0.15rem rgba(78,115,223,.15);
}

/* =========================================
   REGISTER TERMS PRO
========================================= */

.register-terms-card {

    background: #f8faff;

    border: 1px solid #e3ebff;

    border-radius: 16px;

    padding: 16px;

    margin-bottom: 18px;
}

.register-terms-label {

    font-weight: 600;

    color: #2c3e50;
}

.register-links {

    margin-top: 12px;

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.register-link {

    color: #4e73df;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition: .2s ease;
}

.register-link:hover {

    color: #224abe;

    text-decoration: underline;
}

/* =========================================
   LEGAL MODAL PRO
========================================= */

.legal-modal {

    border: none;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.legal-modal-header {

    background: linear-gradient(
        135deg,
        #4e73df,
        #224abe
    );

    color: #fff;

    border: none;

    padding: 22px 26px;
}

.legal-modal-subtitle {

    opacity: .85;

    font-size: 13px;
}

.legal-modal-body {

    padding: 26px;
}

.legal-section {

    margin-bottom: 24px;
}

.legal-section h6 {

    color: #224abe;

    font-weight: 700;

    margin-bottom: 10px;
}

.legal-section p {

    color: #6c757d;

    line-height: 1.8;

    margin-bottom: 0;
}

.btn-close-custom {

    border: none;

    background: rgba(255,255,255,.15);

    color: white;

    width: 36px;

    height: 36px;

    border-radius: 50%;

    font-size: 22px;

    line-height: 1;

    transition: .2s ease;
}

.btn-close-custom:hover {

    background: rgba(255,255,255,.25);
}

@media (max-width: 576px) {

    .legal-modal-body {

        padding: 20px;
    }

    .legal-modal-header {

        padding: 18px 20px;
    }
}

/* =========================================
   REGISTRO PENDIENTE
========================================= */

.register-pending-card {

    border-radius: 22px;
}

.register-pending-icon {

    width: 90px;
    height: 90px;

    margin: auto;

    border-radius: 50%;

    background: rgba(78,115,223,.12);

    display: flex;
    align-items: center;
    justify-content: center;
}

.register-pending-icon i {

    font-size: 38px;

    color: #4e73df;
}

.register-pending-title {

    font-weight: 700;

    color: #2c3e50;
}

.register-pending-subtitle {

    color: #6c757d;

    margin-top: 14px;
}

.register-email-box {

    background: #f8faff;

    border: 1px solid #dbe7ff;

    border-radius: 14px;

    padding: 14px;

    font-weight: 600;

    color: #224abe;

    margin-top: 18px;
}

.register-pending-info {

    text-align: left;
}

.pending-info-item {

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 10px 14px;

    background: #f9fafc;

    border-radius: 12px;

    margin-bottom: 10px;

    color: #5f6b7a;
}

.pending-info-item i {

    color: #4e73df;
}

.register-pending-actions .btn {

    border-radius: 12px;
}

/* =========================================
   CHECKOUT
========================================= */

.checkout-card {

    border-radius: 24px;

    overflow: hidden;
}

/* =========================================
   SIDE PANEL
========================================= */

.checkout-side {

    background: linear-gradient(
        135deg,
        #4e73df,
        #224abe);

    min-height: 100%;
}

.checkout-overlay {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 50px;
}

.checkout-icon {

    width: 95px;
    height: 95px;

    margin: auto;

    border-radius: 50%;

    background: rgba(255,255,255,.15);

    display: flex;

    align-items: center;

    justify-content: center;
}

.checkout-icon i {

    font-size: 42px;

    color: white;
}

.checkout-side-text {

    color: rgba(255,255,255,.85);

    line-height: 1.8;

    font-size: 15px;
}

.checkout-secure-box {

    margin-top: 30px;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.15);

    padding: 14px;

    border-radius: 14px;

    color: white;

    font-size: 14px;
}

.checkout-secure-box i {

    margin-right: 8px;
}

/* =========================================
   HEADER
========================================= */

.checkout-subtitle {

    color: #6c757d;

    line-height: 1.7;
}

/* =========================================
   PLAN BOX
========================================= */

.checkout-plan-box {

    background: #f8faff;

    border: 1px solid #dbe7ff;

    border-radius: 18px;

    padding: 20px;
}

.checkout-plan-header {

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.checkout-plan-name {

    font-size: 18px;

    font-weight: 700;

    color: #224abe;
}

.checkout-plan-status {

    margin-top: 6px;

    color: #ff9800;

    font-size: 13px;

    font-weight: 600;
}

.checkout-plan-price {

    font-size: 24px;

    font-weight: 700;

    color: #2c3e50;
}

/* =========================================
   PAYMENT METHODS
========================================= */

.checkout-payment-list {

    display: flex;

    flex-direction: column;

    gap: 14px;
}

.checkout-payment-item {

    cursor: pointer;

    margin: 0;
}

.checkout-radio {

    display: none;
}

.checkout-payment-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: white;

    border: 2px solid #edf2f7;

    border-radius: 18px;

    padding: 18px;

    transition: .2s ease;
}

.checkout-payment-item:hover
.checkout-payment-content {

    border-color: #4e73df;

    transform: translateY(-2px);
}

.checkout-radio:checked
+ .checkout-payment-content {

    border-color: #4e73df;

    background: #f8faff;

    box-shadow: 0 0 0 4px rgba(78,115,223,.08);
}

.checkout-payment-icon {

    width: 60px;
    height: 60px;

    border-radius: 14px;

    background: #f8f9fc;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}

.checkout-payment-icon img {

    width: 36px;
}

.checkout-payment-info {

    flex: 1;

    margin-left: 18px;
}

.checkout-payment-name {

    font-weight: 700;

    color: #2c3e50;
}

.checkout-payment-desc {

    margin-top: 4px;

    font-size: 13px;

    color: #7b8794;
}

.checkout-payment-price {

    font-size: 16px;

    font-weight: 700;

    color: #224abe;
}

/* =========================================
   BUTTON
========================================= */

.checkout-btn {

    height: 52px;

    border-radius: 14px;

    font-size: 15px;

    font-weight: 600;
}

/* =========================================
   FOOTER
========================================= */

.checkout-footer-note {

    margin-top: 18px;

    text-align: center;

    font-size: 13px;

    color: #98a0b3;
}

/* =========================================
   CHECKOUT
========================================= */

.checkout-card {

    border-radius: 24px;

    overflow: hidden;
}

/* =========================================
   SIDE
========================================= */

.checkout-side {

    background: linear-gradient(
        135deg,
        #4e73df,
        #224abe);
}

.checkout-overlay {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 50px;
}

.checkout-icon {

    width: 90px;
    height: 90px;

    margin: auto;

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    display: flex;

    align-items: center;

    justify-content: center;
}

.checkout-icon i {

    font-size: 40px;

    color: white;
}

.checkout-side-text {

    color: rgba(255,255,255,.88);

    line-height: 1.8;

    font-size: 15px;
}

.checkout-side-security {

    margin-top: 28px;

    background: rgba(255,255,255,.10);

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 14px;

    padding: 14px;

    color: white;

    font-size: 14px;
}

.checkout-side-security i {

    margin-right: 8px;
}

/* =========================================
   HEADER
========================================= */

.checkout-subtitle {

    color: #6c757d;

    line-height: 1.7;
}

/* =========================================
   PLAN
========================================= */

.checkout-plan-box {

    background: #f8faff;

    border: 1px solid #dbe7ff;

    border-radius: 18px;

    padding: 22px;
}

.checkout-plan-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

.checkout-plan-name {

    font-size: 20px;

    font-weight: 700;

    color: #224abe;
}

.checkout-plan-description {

    margin-top: 6px;

    color: #7b8794;

    font-size: 14px;
}

.checkout-plan-price {

    font-size: 28px;

    font-weight: 700;

    color: #2c3e50;
}

/* =========================================
   PAYMENT METHODS
========================================= */

.checkout-payment-list {

    display: flex;

    flex-direction: column;

    gap: 14px;
}

.checkout-payment-item {

    cursor: pointer;

    margin: 0;
}

.checkout-radio {

    display: none;
}

.checkout-payment-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    border: 2px solid #edf2f7;

    border-radius: 18px;

    padding: 18px;

    background: white;

    transition: .2s ease;
}

.checkout-payment-item:hover .checkout-payment-content {

    border-color: #4e73df;

    transform: translateY(-2px);
}

.checkout-radio:checked + .checkout-payment-content {

    border-color: #4e73df;

    background: #f8faff;

    box-shadow: 0 0 0 4px rgba(78,115,223,.08);
}

.checkout-payment-icon {

    width: 60px;
    height: 60px;

    border-radius: 14px;

    background: #f8f9fc;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    flex-shrink: 0;
}

.checkout-payment-icon img {

    width: 36px;
}

.checkout-payment-info {

    flex: 1;
}

.checkout-payment-name {

    font-weight: 700;

    color: #2c3e50;
}

.checkout-payment-description {

    margin-top: 4px;

    color: #7b8794;

    font-size: 13px;
}

.checkout-conversion {

    margin-top: 8px;

    display: inline-block;

    background: rgba(255,152,0,.12);

    color: #ff9800;

    font-size: 12px;

    padding: 5px 10px;

    border-radius: 999px;

    font-weight: 600;
}

.checkout-payment-price {

    font-size: 18px;

    font-weight: 700;

    color: #224abe;

    white-space: nowrap;
}

/* =========================================
   BUTTON
========================================= */

.checkout-btn {

    height: 52px;

    border-radius: 14px;

    font-size: 15px;

    font-weight: 600;
}

/* =========================================
   FOOTER
========================================= */

.checkout-footer-note {

    margin-top: 18px;

    text-align: center;

    font-size: 13px;

    color: #98a0b3;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .checkout-card {

        margin: 20px 10px;
    }

    .checkout-payment-content {

        flex-direction: column;

        align-items: flex-start;

        text-align: left;
    }

    .checkout-payment-price {

        width: 100%;

        margin-top: 12px;

        font-size: 20px;
    }

    .checkout-plan-header {

        flex-direction: column;

        gap: 15px;

        align-items: flex-start;
    }

    .checkout-plan-price {

    	font-size: 20px;

    	font-weight: 700;

    	color: #224abe;

    	background: #f8faff;

    	border: 1px solid #dbeafe;

    	padding: 12px 18px;

    	border-radius: 14px;

    	white-space: nowrap;
    }

    .checkout-period-content {

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .checkout-period-price {

        width: 100%;

        font-size: 22px;
    }

    .checkout-btn {

        height: 56px;

        font-size: 16px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .checkout-payment-content {

        padding: 16px;
    }

    .checkout-payment-icon {

        width: 52px;
        height: 52px;
    }

    .checkout-payment-icon img {

        width: 30px;
    }

    .checkout-payment-name {

        font-size: 15px;
    }

    .checkout-payment-description {

        font-size: 12px;
    }

    .checkout-payment-price {

        font-size: 18px;
    }

    .checkout-period-item {

        padding: 14px;
    }

    .checkout-period-title {

        font-size: 15px;
    }

    .checkout-period-description {

        font-size: 12px;
    }

    .checkout-period-price {

        font-size: 20px;
    }

    .checkout-badge-save {

        font-size: 10px;

        padding: 4px 8px;
    }

    .checkout-btn {

        font-size: 15px;
    }

    .checkout-footer-note {

        font-size: 12px;

        line-height: 1.5;
    }
}

/* =========================================
   PERIODOS
========================================= */

.checkout-period-container {

    display: flex;

    flex-direction: column;

    gap: 14px;
}

.checkout-period-item {

    border: 2px solid #edf2f7;

    border-radius: 18px;

    padding: 18px;

    cursor: pointer;

    transition: .2s ease;

    background: white;
}

.checkout-period-item:hover {

    border-color: #4e73df;

    transform: translateY(-2px);
}

.checkout-period-item.active {

    border-color: #4e73df;

    background: #f8faff;

    box-shadow: 0 0 0 4px rgba(78,115,223,.08);
}

.checkout-period-radio {

    display: none;
}

.checkout-period-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;
}

.checkout-period-title {

    font-size: 16px;

    font-weight: 700;

    color: #2c3e50;
}

.checkout-period-description {

    margin-top: 5px;

    font-size: 13px;

    color: #7b8794;
}

.checkout-period-price {

    font-size: 24px;

    font-weight: 700;

    color: #224abe;

    white-space: nowrap;
}

.checkout-badge-save {

    background: #16a34a;

    color: white;

    font-size: 11px;

    font-weight: 700;

    padding: 5px 10px;

    border-radius: 999px;
}

.checkout-section-title {

    font-size: 15px;

    font-weight: 700;

    color: #2c3e50;
}

.checkout-security-item {

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.92);

    margin-bottom: 14px;

    font-size: 14px;

    font-weight: 500;
}

.checkout-security-item i {

    color: #4ade80;

    font-size: 15px;
}

.checkout-period-description {

    margin-top: 6px;

    color: #94a3b8;

    font-size: 13px;

    line-height: 1.5;
}

/* =========================================
   PLAN FEATURES
========================================= */

.checkout-plan-features {

    margin-top: 18px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.checkout-feature-item {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #475569;

    font-size: 14px;

    line-height: 1.5;
}

.checkout-feature-item i {

    color: #22c55e;

    margin-top: 3px;

    font-size: 14px;

    flex-shrink: 0;
}

/* =========================================
   PAYMENT SUMMARY
========================================= */

.checkout-payment-summary {

    background: linear-gradient(
        135deg,
        #f8faff,
        #eef4ff
    );

    border: 1px solid #dbeafe;

    border-radius: 14px;

    padding: 14px 16px;

    margin-top: 10px;
}

.checkout-summary-label {

    font-size: 13px;

    color: #64748b;

    margin-bottom: 6px;

    font-weight: 500;
}

.checkout-summary-price {

    font-size: 24px;

    font-weight: 800;

    color: #224abe;

    line-height: 1.1;
}

.checkout-summary-save {

    margin-top: 8px;

    display: inline-block;

    background: rgba(34,197,94,.12);

    color: #16a34a;

    font-size: 12px;

    font-weight: 700;

    padding: 5px 10px;

    border-radius: 999px;
}

/* =========================================
   ADMIN LOGIN
========================================= */

.admin-login-card {

    border-radius: 24px;

    overflow: hidden;

    background: white;
}

/* =========================================
   SIDE
========================================= */

.admin-login-side {

    background:
        linear-gradient(
            135deg,
            #111827,
            #1f2937);
}

.admin-login-overlay {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 50px;
}

.admin-login-icon {

    width: 90px;
    height: 90px;

    margin: auto;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.12);
}

.admin-login-icon i {

    font-size: 40px;

    color: white;
}

.admin-login-side-text {

    margin-top: 18px;

    color: rgba(255,255,255,.75);

    line-height: 1.8;

    font-size: 15px;
}

/* =========================================
   CONTENT
========================================= */

.admin-login-subtitle {

    color: #6b7280;

    font-size: 14px;

    line-height: 1.7;
}

/* =========================================
   INPUTS
========================================= */

.form-control-user {

    height: 52px;

    border-radius: 14px;

    font-size: 14px;

    border: 1px solid #dbe2ea;

    transition: .2s ease;
}

.form-control-user:focus {

    border-color: #4e73df;

    box-shadow:
        0 0 0 4px rgba(78,115,223,.10);
}

/* =========================================
   BTN
========================================= */

.admin-login-btn {

    height: 52px;

    border-radius: 14px;

    font-size: 15px;

    font-weight: 600;

    background: linear-gradient(
        135deg,
        #4e73df,
        #224abe);

    border: none;

    transition: .2s ease;
}

.admin-login-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(78,115,223,.25);
}

/* =========================================
   ALERT
========================================= */

.alert-danger {

    border-radius: 14px;

    font-size: 14px;

    border: none;
}

/* =========================================
   ALERT UPGRADE SAAS
========================================= */

.plans-alert-upgrade {

    display:
        flex;

    align-items:
        center;

    gap:
        18px;

    background:
        linear-gradient(
            135deg,
            rgba(255,193,7,.12),
            rgba(255,140,0,.10));

    border:
        1px solid rgba(255,193,7,.25);

    border-radius:
        18px;

    padding:
        18px 22px;

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 8px 25px rgba(0,0,0,.08);
}

.plans-alert-icon {

    width:
        58px;

    height:
        58px;

    min-width:
        58px;

    border-radius:
        16px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    font-size:
        24px;

    color:
        #ffb300;

    background:
        rgba(255,193,7,.12);
}

.plans-alert-title {

    font-size:
        18px;

    font-weight:
        700;

    color:
        #1e293b;

    margin-bottom:
        4px;
}

.plans-alert-desc {

    color:
        #475569;

    font-size:
        14px;

    line-height:
        1.5;
}

/* =========================================
   ALERT REGISTER PRO
========================================= */

.register-alert-pro {

    display:
        flex;

    align-items:
        center;

    gap:
        16px;

    background:
        linear-gradient(
            135deg,
            rgba(239,68,68,.08),
            rgba(220,38,38,.05));

    border:
        1px solid rgba(239,68,68,.12);

    border-radius:
        16px;

    padding:
        16px 18px;

    margin-bottom:
        10px;
}

.register-alert-icon {

    width:
        52px;

    height:
        52px;

    min-width:
        52px;

    border-radius:
        14px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    font-size:
        22px;

    background:
        rgba(239,68,68,.10);

    color:
        #dc2626;
}

.register-alert-title {

    font-size:
        15px;

    font-weight:
        700;

    color:
        #111827;

    margin-bottom:
        4px;
}

.register-alert-desc {

    font-size:
        14px;

    color:
        #4b5563;

    line-height:
        1.5;
}

/* =========================================
   CHECKOUT SUCCESS
========================================= */

.checkout-success-wrapper {

    min-height: calc(100vh - 70px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #111827,
            #1e293b
        );
}

/* CARD */

.checkout-success-card {

    width: 100%;

    max-width: 760px;

    background: #ffffff;

    border-radius: 24px;

    padding: 32px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.25);

    position: relative;

    overflow: hidden;

    text-align: center;
}

/* ICON */

.success-icon {

    width: 82px;

    height: 82px;

    margin: 0 auto 18px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #10b981,
            #059669
        );

    box-shadow:
        0 12px 30px rgba(16,185,129,.28);
}

.success-icon i {

    color: #fff;

    font-size: 38px;
}

/* TITLES */

.success-title {

    font-size: 30px;

    font-weight: 800;

    color: #111827;

    margin-bottom: 10px;
}

.success-subtitle {

    font-size: 15px;

    color: #6b7280;

    margin-bottom: 26px;
}

/* INFO BOX */

.success-info {

    background: #f8fafc;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    padding: 18px 24px;

    margin-bottom: 22px;

    text-align: left;
}

/* ROW */

.info-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 12px 0;

    border-bottom: 1px solid #e5e7eb;
}

.info-row:last-child {

    border-bottom: none;
}

/* LABEL */

.info-label {

    color: #6b7280;

    font-weight: 600;

    font-size: 14px;
}

/* VALUE */

.info-value {

    color: #111827;

    font-weight: 700;

    font-size: 15px;
}

/* PRICE */

.price-success {

    color: #10b981;

    font-size: 22px;

    font-weight: 800;
}

/* BADGE */

.badge-success-custom {

    background: rgba(16,185,129,.12);

    color: #059669;

    padding: 8px 14px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 700;
}

/* ALERT */

.success-alert {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: #eff6ff;

    border: 1px solid #bfdbfe;

    color: #1d4ed8;

    padding: 14px 18px;

    border-radius: 14px;

    margin-bottom: 26px;

    font-size: 13px;
}

.success-alert i {

    font-size: 18px;
}

/* ACTIONS */

.success-actions {

    margin-top: 10px;
}

/* BUTTON */

.btn-login-success {

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    border: none;

    color: #fff;

    font-weight: 700;

    padding: 14px 26px;

    border-radius: 14px;

    min-width: 250px;

    transition: .3s ease;

    box-shadow:
        0 12px 28px rgba(37,99,235,.24);
}

.btn-login-success:hover {

    transform: translateY(-2px);

    color: #fff;

    text-decoration: none;

    box-shadow:
        0 18px 40px rgba(37,99,235,.34);
}

/* RESPONSIVE */

@media(max-width:768px) {

    .checkout-success-wrapper {

        padding: 14px;
    }

    .checkout-success-card {

        padding: 24px;
    }

    .success-title {

        font-size: 24px;
    }

    .success-subtitle {

        font-size: 14px;
    }

    .info-row {

        flex-direction: column;

        align-items: flex-start;

        gap: 6px;
    }

    .btn-login-success {

        width: 100%;
    }
}

/* =========================================
   CHECKOUT PENDIENTE
========================================= */

.checkout-pending-wrapper {

    min-height: calc(100vh - 70px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #111827,
            #1e293b
        );
}

/* CARD */

.checkout-pending-card {

    width: 100%;

    max-width: 680px;

    background: #ffffff;

    border-radius: 24px;

    padding: 36px;

    text-align: center;

    box-shadow:
        0 20px 50px rgba(0,0,0,.25);
}

/* ICON */

.pending-icon {

    width: 82px;

    height: 82px;

    margin: 0 auto 20px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #d97706
        );

    box-shadow:
        0 12px 30px rgba(245,158,11,.28);
}

.pending-icon i {

    color: #fff;

    font-size: 38px;
}

/* TITLE */

.pending-title {

    font-size: 30px;

    font-weight: 800;

    color: #111827;

    margin-bottom: 10px;
}

.pending-subtitle {

    font-size: 15px;

    color: #6b7280;

    margin-bottom: 24px;
}

/* ALERT */

.pending-alert {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: #fffbeb;

    border: 1px solid #fde68a;

    color: #b45309;

    padding: 14px 18px;

    border-radius: 14px;

    margin-bottom: 28px;

    font-size: 14px;
}

/* ACTION */

.pending-actions {

    margin-top: 10px;
}

/* BUTTON */

.btn-pending-login {

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    color: #fff;

    border: none;

    padding: 14px 24px;

    border-radius: 14px;

    font-weight: 700;

    min-width: 240px;

    transition: .3s ease;

    box-shadow:
        0 10px 25px rgba(37,99,235,.22);
}

.btn-pending-login:hover {

    transform: translateY(-2px);

    color: #fff;

    text-decoration: none;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .checkout-pending-card {

        padding: 24px;
    }

    .pending-title {

        font-size: 24px;
    }

    .btn-pending-login {

        width: 100%;
    }
}

/* =========================================
   CHECKOUT ERROR
========================================= */

.checkout-error-wrapper {

    min-height: calc(100vh - 70px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        linear-gradient(
            135deg,
            #111827,
            #1f2937,
            #0f172a
        );
}

/* CARD */

.checkout-error-card {

    width: 100%;

    max-width: 680px;

    background: #ffffff;

    border-radius: 24px;

    padding: 36px;

    text-align: center;

    box-shadow:
        0 20px 50px rgba(0,0,0,.25);
}

/* ICON */

.error-icon {

    width: 82px;

    height: 82px;

    margin: 0 auto 20px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #ef4444,
            #dc2626
        );

    box-shadow:
        0 12px 30px rgba(239,68,68,.28);
}

.error-icon i {

    color: #fff;

    font-size: 38px;
}

/* TITLE */

.error-title {

    font-size: 30px;

    font-weight: 800;

    color: #111827;

    margin-bottom: 10px;
}

.error-subtitle {

    font-size: 15px;

    color: #6b7280;

    margin-bottom: 24px;
}

/* ALERT */

.error-alert {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: #fef2f2;

    border: 1px solid #fecaca;

    color: #dc2626;

    padding: 14px 18px;

    border-radius: 14px;

    margin-bottom: 28px;

    font-size: 14px;
}

/* ACTIONS */

.error-actions {

    display: flex;

    gap: 14px;

    justify-content: center;

    flex-wrap: wrap;
}

/* BTN PRIMARY */

.btn-retry-payment {

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    color: #fff;

    border: none;

    padding: 14px 24px;

    border-radius: 14px;

    font-weight: 700;

    min-width: 220px;

    transition: .3s ease;

    box-shadow:
        0 10px 25px rgba(37,99,235,.22);
}

.btn-retry-payment:hover {

    transform: translateY(-2px);

    color: #fff;

    text-decoration: none;
}

/* BTN SECONDARY */

.btn-secondary-custom {

    background: #f3f4f6;

    color: #111827;

    border: 1px solid #d1d5db;

    padding: 14px 24px;

    border-radius: 14px;

    font-weight: 700;

    min-width: 220px;

    transition: .3s ease;
}

.btn-secondary-custom:hover {

    background: #e5e7eb;

    color: #111827;

    text-decoration: none;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .checkout-error-card {

        padding: 24px;
    }

    .error-title {

        font-size: 24px;
    }

    .error-actions {

        flex-direction: column;
    }

    .btn-retry-payment,
    .btn-secondary-custom {

        width: 100%;
    }
}

/* ============================================
   MEJORAS VISUALES - HERO Y SECCIONES
   ============================================ */

/* Hero overlay */
.hero-tech-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(0,200,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
}

.bg-primary-glow {
    background: linear-gradient(135deg, rgba(0,200,255,0.15), rgba(27,110,194,0.1));
    color: var(--electric-green);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.hero-title {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient {
    background: linear-gradient(135deg, var(--electric-green), #4ade80);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Botones hero mejorados */
.btn-hero-primary {
    background: linear-gradient(135deg, var(--electric-green), var(--primary));
    border: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,200,255,0.3);
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--electric-green);
    transform: translateY(-3px);
    color: #fff;
}

/* Stats hero */
.hero-stats {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--electric-green);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
}

/* Carrusel mejorado */
.hero-carousel-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.hero-carousel-img {
    height: 400px;
    object-fit: cover;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Sección problema */
.problema-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.problema-card {
    background: white;
    border: 1px solid rgba(0,200,255,0.1);
    transition: all 0.3s ease;
}

.problema-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.problema-item {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.problema-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Badges de sección */
.section-badge {
    display: inline-block;
    background: rgba(27,110,194,0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    color: #0f172a;
}

.section-title-light {
    font-size: 2.2rem;
    color: white;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--electric-green));
    margin: 1rem 0;
}

/* Features cards mejoradas */
.feature-card-enhanced {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: rgba(0,200,255,0.3);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(27,110,194,0.1), rgba(0,200,255,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.feature-card-enhanced:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--electric-green));
    transform: scale(1.1);
}

.feature-card-enhanced:hover .feature-icon-wrapper i {
    color: white !important;
}

/* Cómo funciona sección */
.como-funciona-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.how-image-wrapper {
    position: relative;
    overflow: hidden;
}

.how-image {
    transition: transform 0.5s ease;
}

.how-image-wrapper:hover .how-image {
    transform: scale(1.05);
}

.how-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.how-image-overlay i {
    font-size: 3rem;
    color: white;
}

.how-image-wrapper:hover .how-image-overlay {
    opacity: 1;
}

.steps-list-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--electric-green), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.step-content h6 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: white;
}

/* Quiénes somos */
.quienes-somos-section {
    background: #f8fafc;
}

.quienes-card {
    background: white;
    border: 1px solid #e9ecef;
}

.youtube-link {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    color: #ff0000;
    text-decoration: none;
}

.feature-list-item {
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-list-item:hover {
    background: white;
    transform: translateX(5px);
}

/* CTA final */
.cta-final-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-700));
    position: relative;
    overflow: hidden;
}

.cta-glow-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0,200,255,0.2), transparent 70%);
    pointer-events: none;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.btn-cta-final {
    background: white;
    color: var(--primary);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    color: var(--primary);
}

.text-gradient-light {
    background: linear-gradient(135deg, #fff, var(--electric-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-carousel-img {
        height: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-number {
        margin-bottom: 0.5rem;
    }
}
/* ============================================
   PROBLEMA SECTION - VERSIÓN DETALLADA
   ============================================ */

.problema-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.problema-card {
    border: 1px solid rgba(27, 110, 194, 0.08);
    transition: all 0.3s ease;
}

.problema-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(27, 110, 194, 0.15);
}

.problema-item-detailed {
    background: #f8fafc;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.problema-item-detailed:hover {
    background: #ffffff;
    border-color: rgba(27, 110, 194, 0.15);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.problema-icon-detailed {
    width: 48px;
    height: 48px;
    background: rgba(27, 110, 194, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    transition: all 0.3s ease;
}

.problema-item-detailed:hover .problema-icon-detailed {
    background: var(--primary);
    color: white;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(27, 110, 194, 0.05), rgba(0, 200, 255, 0.05));
    border: 1px solid rgba(27, 110, 194, 0.1);
}

/* ============================================
   SOLUCIÓN SECTION - FEATURES DETALLADOS
   ============================================ */

.soluciones-section {
    background: #f8fafc;
}

.feature-solution-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(27, 110, 194, 0.2);
}

.feature-solution-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(27, 110, 194, 0.1), rgba(0, 200, 255, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-solution-card:hover .feature-solution-icon {
    background: linear-gradient(135deg, var(--primary), var(--electric-green));
    color: white;
    transform: scale(1.05);
}

.feature-solution-list li {
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #4a5568;
}

.feature-solution-list li:last-child {
    margin-bottom: 0;
}

.benefit-highlight {
    transition: all 0.3s ease;
}

.benefit-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .problema-item-detailed {
        padding: 1rem !important;
    }
    
    .problema-icon-detailed {
        width: 40px;
        height: 40px;
    }
    
    .problema-item-detailed h5 {
        font-size: 0.9rem;
    }
    
    .feature-solution-card {
        padding: 1.25rem !important;
    }
    
    .feature-solution-icon {
        width: 48px;
        height: 48px;
    }
    
    .feature-solution-list li {
        font-size: 0.75rem;
    }
    
    .benefit-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1rem !important;
    }
}

/* ============================================
   ESTADÍSTICAS COMPACTAS - OPCIÓN 1
   ============================================ */

.hero-stats-compact {
    padding: 0.5rem;
}

.stat-item-compact {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.stat-number-compact {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--electric-green);
}

.stat-label-compact {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.2);
    margin: auto 0;
}

/* ============================================
   ESTADÍSTICAS FLOTANTES - OPCIÓN 2 (MÁS ELEGANTE)
   ============================================ */

.hero-stats-floating {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 1rem 0.75rem;
    border: 1px solid rgba(0, 200, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.stat-floating-item {
    text-align: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-floating-item:last-child {
    border-bottom: none;
}

.stat-floating-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--electric-green);
    white-space: nowrap;
}

.stat-floating-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}

/* Responsive para stats flotantes */
@media (max-width: 1200px) {
    .hero-stats-floating {
        right: -40px;
        padding: 0.75rem 0.5rem;
    }
    
    .stat-floating-item {
        padding: 0.5rem 0.75rem;
    }
    
    .stat-floating-number {
        font-size: 1rem;
    }
    
    .stat-floating-label {
        font-size: 0.55rem;
    }
}

@media (max-width: 992px) {
    .hero-stats-floating {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
        background: rgba(15, 23, 42, 0.7);
        border-radius: 50px;
        padding: 0.5rem 1rem;
    }
    
    .stat-floating-item {
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.1);
        padding: 0.5rem 0.75rem;
    }
    
    .stat-floating-item:last-child {
        border-right: none;
    }
    
    .stat-floating-number {
        font-size: 0.9rem;
    }
}
/* Stats flotantes más a la derecha */
.hero-stats-float-right {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 200, 255, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-float-item {
    text-align: center;
    padding: 0.25rem 0;
}

.stat-float-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: #00c8ff;
    display: block;
    line-height: 1.2;
}

.stat-float-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
}

.stat-float-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0.25rem 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-stats-float-right {
        right: -30px;
        padding: 0.5rem 0.75rem;
    }
    
    .stat-float-number {
        font-size: 0.9rem;
    }
    
    .stat-float-label {
        font-size: 0.55rem;
    }
}

@media (max-width: 992px) {
    .hero-stats-float-right {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
        background: rgba(15, 23, 42, 0.8);
        border-radius: 40px;
    }
    
    .stat-float-divider {
        width: 1px;
        height: 30px;
        margin: 0;
    }
}
/* Estadísticas a la derecha del carrusel */
.hero-stats-sidebar {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.25rem 0.75rem;
    border: 1px solid rgba(0, 200, 255, 0.2);
    text-align: center;
}

.stat-sidebar-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-sidebar-item:last-child {
    border-bottom: none;
}

.stat-sidebar-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: #00c8ff;
    line-height: 1.2;
}

.stat-sidebar-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-stats-sidebar {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding: 0.75rem 1rem;
    }
    
    .stat-sidebar-item {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.25rem 1rem;
    }
    
    .stat-sidebar-item:last-child {
        border-right: none;
    }
    
    .stat-sidebar-number {
        font-size: 1.1rem;
    }
}