/* === ESTILOS PREMIUM PASSPORT AI - TEMA AZUL NEÓN === */
:root {
    --primary-color: #00e5ff;       /* Cyan eléctrico para acentos y neón */
    --secondary-color: #b0e0ff;     /* Azul claro para textos secundarios */
    --dark-bg: #020710;             /* Navy profundo casi negro */
    --card-bg: #001224;             /* Azul medianoche para superficies */
    --text-primary: #e0e6f0;        /* Texto principal casi blanco */
    --text-muted: #8fa0b5;          /* Texto secundario apagado */
    --glow-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
    --font-family: 'Poppins', sans-serif;
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: rgba(2, 7, 16, 0.85);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

header .container {
    max-width: 1400px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    gap: 16px;
}

/* Language Switcher */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.lang-dropdown-btn:hover {
    border-color: var(--primary-color);
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: rgba(2, 7, 16, 0.95);
    min-width: 130px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    z-index: 1001;
    overflow: hidden;
}

.lang-dropdown.active .lang-dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease;
}

.lang-dropdown-content a {
    color: var(--text-primary);
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.lang-dropdown-content a:hover {
    background: rgba(0, 229, 255, 0.15);
    color: var(--primary-color);
    padding-left: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header Buttons Compact & Responsive */
.header-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 38px !important;
    padding: 0 16px !important;
    font-size: 0.84rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    letter-spacing: 0.2px;
}

.header-btn-login {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(0, 229, 255, 0.35) !important;
    color: #ffffff !important;
}

.header-btn-login:hover {
    background: rgba(0, 229, 255, 0.12) !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.2) !important;
}

.header-btn-register {
    background: linear-gradient(135deg, #00b8ff 0%, #00e5ff 100%) !important;
    border: none !important;
    color: #020c1b !important;
    box-shadow: 0 2px 10px rgba(0, 229, 255, 0.3) !important;
}

.header-btn-register:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.5) !important;
}

.header-btn-diag {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-primary) !important;
}

.header-btn-diag:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

nav ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Botones */
.button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-nav-button {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cta-nav-button:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: var(--glow-shadow);
}

.cta-main-button {
    background: linear-gradient(135deg, #00b8ff 0%, #00e5ff 100%);
    color: var(--dark-bg);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.cta-main-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.6);
}

.secondary-button {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 15px;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 50px 0;
    text-align: center;
    position: relative;
}

.hero-container {
    max-width: 900px;
}

.tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 50px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
    color: #ffffff;
}

.hero-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* VSL Video Section */
.vsl-section {
    padding: 20px 0 50px 0;
}

.vsl-container {
    max-width: 850px;
}

.video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.video-wrapper {
    width: 100%;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Secciones Generales */
section {
    padding: 60px 0;
}

.section-tag {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 50px;
}

/* Grid del Problema */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(233, 61, 61, 0.1);
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(233, 61, 61, 0.3);
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 2.2rem;
    color: #e93d3d;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Grid de la Solución */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-5px);
}

.sol-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.3));
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.solution-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Logo Reel Deslizante Infinito (Estilo Captura) - Cuadrado al ancho de los bloques */
.brand-reel-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 35px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    background: rgba(2, 7, 16, 0.45);
    border: 1px solid rgba(0, 229, 255, 0.12);
    box-shadow: inset 0 0 30px rgba(0, 229, 255, 0.05);
}

/* Máscaras de desvanecimiento a los lados */
.brand-reel-container::before,
.brand-reel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-reel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-bg) 0%, transparent 100%);
}

.brand-reel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-bg) 0%, transparent 100%);
}

.brand-reel-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.brand-reel-track.track-left {
    animation: scrollReelLeft 30s linear infinite;
}

.brand-reel-track.track-right {
    animation: scrollReelRight 30s linear infinite;
}

/* Detener ambas al pasar el cursor */
.brand-reel-container:hover .brand-reel-track {
    animation-play-state: paused;
}

/* Tarjeta del Logotipo */
.brand-reel-card {
    background: rgba(2, 7, 16, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 16px;
    padding: 24px 20px;
    width: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.brand-reel-card:hover {
    border-color: rgba(0, 229, 255, 0.45);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.1);
}

/* Caja gris del Logo (Captura) */
.brand-logo-wrapper {
    background: rgba(240, 243, 248, 0.85);
    border-radius: 16px;
    width: 100%;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    padding: 12px;
    transition: background 0.3s ease;
    overflow: hidden;
}

.brand-reel-card:hover .brand-logo-wrapper {
    background: #ffffff;
}

.brand-svg-logo,
.brand-img-logo {
    width: 80%;
    max-width: 120px;
    max-height: 85px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-reel-card:hover .brand-svg-logo,
.brand-reel-card:hover .brand-img-logo {
    transform: scale(1.08);
}

.brand-reel-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.brand-reel-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Keyframes del scroll horizontal (Izquierda y Derecha) con bucles matemáticos perfectos */
@keyframes scrollReelLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.3333%);
    }
}

@keyframes scrollReelRight {
    0% {
        transform: translateX(-33.3333%);
    }
    100% {
        transform: translateX(0);
    }
}

/* CTA Final Box */
/* Sección de Precios Clásica */
.pricing-section {
    padding: 70px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
    margin-top: 50px;
    align-items: stretch;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    border-color: rgba(0, 229, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.06);
}

/* Tarjeta destacada (Agente/Negocio) */
.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 35px rgba(0, 229, 255, 0.15);
    background: linear-gradient(180deg, var(--card-bg) 0%, rgba(0, 18, 36, 0.8) 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00b8ff 0%, #00e5ff 100%);
    color: var(--dark-bg);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(0, 229, 255, 0.3);
}

.pricing-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.price-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.price-value span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 5px;
}

.plan-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
    min-height: 48px;
    line-height: 1.4;
}

.plan-features {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 16px;
}

/* Contenedor del renglón interactivo de característica */
.feature-item-tooltip {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: color 0.2s ease;
}

.feature-item-tooltip:hover {
    color: #ffffff;
}

.feature-item-tooltip i.fa-check {
    color: #2ecc71;
    font-size: 0.85rem;
    text-shadow: 0 0 8px rgba(46, 204, 113, 0.3);
    flex-shrink: 0;
}

.feature-item-tooltip strong {
    font-weight: 600;
}

/* Gatillo del cuadro emergente (Icono de pregunta discreto) */
.info-icon-trigger {
    color: var(--primary-color);
    font-size: 0.8rem;
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    margin-left: 2px;
}

.feature-item-tooltip:hover .info-icon-trigger {
    opacity: 1;
    transform: scale(1.15);
}

/* Cuadro Emergente / Tooltip (Estética de Vidrio de Alta Fidelidad) */
.tooltip-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 130%; /* Aparece flotando por encima */
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 290px;
    background: rgba(1, 8, 22, 0.97);
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 12px;
    padding: 14px 16px;
    color: #d1d5db; /* Gris claro muy legible */
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: left;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 229, 255, 0.15);
    z-index: 100;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.25s ease;
    pointer-events: none; /* No interfiere con el cursor */
}

/* Flechita inferior del tooltip */
.tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: rgba(1, 8, 22, 0.97) transparent transparent transparent;
}

/* Borde exterior para la flechita */
.tooltip-content::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -7px;
    border-width: 7px;
    border-style: solid;
    border-color: rgba(0, 229, 255, 0.35) transparent transparent transparent;
    z-index: -1;
}

/* Mostrar suavemente al hacer hover */
.feature-item-tooltip:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.btn-pricing-select {
    width: 100%;
    text-align: center;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-pricing-select:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
}

.featured-btn {
    background: linear-gradient(135deg, #00b8ff 0%, #00e5ff 100%) !important;
    color: var(--dark-bg) !important;
    border: none !important;
}

.featured-btn:hover {
    box-shadow: var(--glow-shadow) !important;
}


/* Toggle de la Tabla Comparativa */
.pricing-comparison-toggle-wrapper {
    text-align: center;
    margin: 40px 0 20px 0;
}

.btn-toggle-comparison {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.08);
}

.btn-toggle-comparison:hover {
    background: rgba(0, 229, 255, 0.05);
    box-shadow: var(--glow-shadow);
}

/* Tabla Comparativa */
.pricing-comparison-table-wrapper {
    margin-top: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    overflow-x: auto; /* Scroll horizontal en móviles */
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.4s ease;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.comparison-table th {
    font-weight: 600;
    color: #ffffff;
    border-bottom: 2px solid var(--border-color);
}

.comparison-table th:first-child {
    width: 40%;
}

.comparison-table th:not(:first-child) {
    text-align: center;
    width: 20%;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

/* Fila de Categoría */
.table-category-row td {
    background: rgba(0, 229, 255, 0.04);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    text-align: left !important;
}

.comparison-table tr:hover:not(.table-category-row) {
    background: rgba(255, 255, 255, 0.01);
}

.text-success {
    color: #2ecc71;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(46, 204, 113, 0.2);
}

.text-danger {
    color: #e74c3c;
    font-size: 1.1rem;
}

/* CTA Final Box */
.cta-section {
    padding: 40px 0 60px 0;
}

.cta-box-container {
    max-width: 950px;
}

.cta-box {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(2, 7, 16, 0.95) 100%);
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 255, 0.25);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.cta-dark-button {
    background: #ffffff;
    color: var(--dark-bg);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-dark-button:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
}

/* Footer Proporcionado & Estilizado */
footer {
    background-color: #01040a;
    padding: 40px 0 25px 0;
    border-top: 1px solid rgba(0, 229, 255, 0.08);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1400px;
}

.footer-left p {
    color: rgba(224, 230, 240, 0.6);
    font-size: 0.82rem;
    margin-bottom: 4px;
    line-height: 1.4;
}

.fiuba-tag {
    color: rgba(224, 230, 240, 0.45) !important;
    font-size: 0.78rem !important;
}

.fiuba-tag strong {
    color: #ffffff;
}

.contact-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.contact-card p {
    font-size: 0.82rem;
    color: rgba(224, 230, 240, 0.75);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-card p i {
    color: var(--primary-color);
    font-size: 0.82rem;
    width: 14px;
    text-align: center;
}

.contact-card a {
    color: rgba(224, 230, 240, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.footer-disclaimer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: justify;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.68rem;
    line-height: 1.45;
    max-width: 1400px;
}

/* Sección de Calificación de Leads */
.qualification-section {
    padding: 70px 0 40px 0;
    position: relative;
}

.qualification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.qualification-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.qualification-card:hover {
    transform: translateY(-2px);
}

.qualification-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.qualification-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.qualification-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sí fits */
.fit-yes {
    border-color: rgba(46, 204, 113, 0.2);
    background: linear-gradient(180deg, var(--card-bg) 0%, rgba(46, 204, 113, 0.02) 100%);
}

.fit-yes:hover {
    border-color: rgba(46, 204, 113, 0.4);
}

.fit-yes h3 {
    color: #2ecc71;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.15);
}

.fit-yes li i {
    color: #2ecc71;
    margin-top: 5px;
    font-size: 0.9rem;
    text-shadow: 0 0 8px rgba(46, 204, 113, 0.3);
}

.fit-yes li span {
    color: var(--text-primary);
}

/* No fits */
.fit-no {
    border-color: rgba(231, 76, 60, 0.2);
    background: linear-gradient(180deg, var(--card-bg) 0%, rgba(231, 76, 60, 0.02) 100%);
}

.fit-no:hover {
    border-color: rgba(231, 76, 60, 0.4);
}

.fit-no h3 {
    color: #e74c3c;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.15);
}

.fit-no li i {
    color: #e74c3c;
    margin-top: 5px;
    font-size: 0.9rem;
    text-shadow: 0 0 8px rgba(231, 76, 60, 0.3);
}

.fit-no li span {
    color: var(--text-muted);
}

/* Modal de Registro Directo */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 4, 9, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-card {
    width: 100%;
    max-width: 480px;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(2, 7, 16, 0.98) 100%);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal-btn:hover {
    color: #ffffff;
}

.modal-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 8px;
    margin-bottom: 12px;
}

.modal-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Campos de Formulario */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.input-group input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 229, 255, 0.02);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
}

.pricing-wa-link:hover {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(46, 204, 113, 0.3);
}

@media (max-width: 991px) {
    .qualification-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .qualification-card {
        padding: 30px 20px;
    }
    .navbar-container {
        padding: 0 10px;
    }
    nav ul {
        display: none; /* Simplificado para móviles en la demo */
    }
    .hero-section h1 {
        font-size: 2.4rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .contact-card {
        text-align: center;
    }
    .contact-card p {
        justify-content: center;
    }
}

/* ==========================================
   Sección Galería / Showcase 3D
   ========================================== */
.showcase-section {
    padding: 70px 0;
    background: radial-gradient(circle at center, rgba(14, 15, 17, 0.4) 0%, rgba(10, 11, 12, 1) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.showcase-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.showcase-carousel-track {
    position: relative;
    height: 562px; /* Proporción 16:9 exacta para 1000px de ancho */
    width: 100%;
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.97) translateY(10px);
    z-index: 1;
}

.showcase-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    z-index: 2;
}

.showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000000;
}

/* Ocultar caption e indicadores cuando el video se está reproduciendo (clase .playing) */
.showcase-carousel-wrapper.playing-video .slide-caption {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    pointer-events: none;
}

.showcase-carousel-wrapper.playing-video .carousel-control,
.showcase-carousel-wrapper.playing-video .carousel-indicators {
    opacity: 0.1 !important;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.showcase-carousel-wrapper.playing-video:hover .carousel-control,
.showcase-carousel-wrapper.playing-video:hover .carousel-indicators {
    opacity: 0.8 !important;
    pointer-events: auto;
}

/* Caption con Glassmorphism Premium */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 40px;
    background: linear-gradient(to top, rgba(10, 11, 12, 0.95) 0%, rgba(10, 11, 12, 0.7) 60%, rgba(10, 11, 12, 0) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    text-align: left;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, opacity 0.6s ease 0.2s;
}

.showcase-slide.active .slide-caption {
    transform: translateY(0);
    opacity: 1;
}

.slide-caption h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-caption p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 800px;
}

/* Controles del Carrusel */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.carousel-control:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
    color: var(--primary-color);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Indicadores de Slide */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 25px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .indicator.active {
    background: var(--primary-color);
    width: 40px;
    box-shadow: 0 0 8px var(--primary-color);
}

@media (max-width: 991px) {
    .showcase-carousel-track {
        height: 450px;
    }
    .slide-caption {
        padding: 20px;
    }
    .slide-caption h3 {
        font-size: 1.3rem;
    }
    .slide-caption p {
        font-size: 0.85rem;
    }
    .carousel-control {
        width: 40px;
        height: 40px;
    }
    .prev-btn {
        left: 10px;
    }
    .next-btn {
        right: 10px;
    }
    .carousel-indicators {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .showcase-carousel-track {
        height: 320px;
    }
    .slide-caption {
        position: relative;
        background: rgba(10, 11, 12, 0.95);
        backdrop-filter: none;
        transform: none !important;
        opacity: 1 !important;
        padding: 20px 15px;
    }
    .showcase-carousel-wrapper {
        border-radius: 12px;
    }
    .carousel-control {
        display: none;
    }
    .carousel-indicators {
        display: none;
    }
}

/* ==========================================================================
   Nuevas Adiciones: Videos en Hero y Demostración (PassportAI)
   ========================================================================== */

/* Hero Video Background */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px 0;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
    opacity: 0.54; /* Opacidad con más tono para mayor impacto visual */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(2, 7, 16, 0.28) 0%, rgba(2, 7, 16, 0.90) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
}

/* Sección de Video de Demostración Centrada (Entre Calificación y Pricing) */
.demo-video-section {
    padding: 50px 0;
    background: rgba(2, 7, 16, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.demo-video-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

.demo-video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 20px 45px rgba(0, 229, 255, 0.16);
    background: rgba(2, 7, 16, 0.65);
    aspect-ratio: 16 / 9;
}

.demo-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ajuste de centrado y proporción para 2 tarjetas de precios */
#pricing .pricing-grid {
    max-width: 860px;
    margin: 50px auto 0 auto;
}

/* Disclaimer del Footer — texto centrado con espacio libre a los costados */
.footer-disclaimer {
    padding: 0 80px;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 0.72rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.35);
}
