/* ==========================================================================
   FILESFARM SITE - STYLESHEET
   Estilo Premium B2B SaaS - Gestión Documental Inteligente
   ========================================================================== */

/* Variables de Diseño (Tokens) */
:root {
    /* Paleta de Colores Corporativa */
    --color-primary: #0A1E36;        /* Azul Marino profundo de operaciones */
    --color-primary-light: #153259;  /* Azul intermedio para contrastes y degradados */
    --color-secondary: #849966;      /* Verde oliva institucional (rgb 132,153,102) */
    --color-accent: #8DCC33;         /* Verde hoja vibrante (rgb 141,204,51) */
    --color-accent-dark: #6C9E23;    /* Verde hoja oscuro para hover */
    
    /* Colores de Fondo y Superficies */
    --bg-light: #F8FAFC;             /* Fondo gris azulado ultra claro */
    --bg-card: #FFFFFF;              /* Fondo de tarjetas estándar */
    --bg-dark: #071220;              /* Fondo oscuro profundo de la Hero */
    --bg-dark-card: #0F233C;         /* Fondo de tarjeta en modo oscuro */
    
    /* Tipografía y Textos */
    --text-primary: #1E293B;         /* Color principal del texto */
    --text-muted: #64748B;            /* Color secundario / atenuado */
    --text-light: #E2E8F0;           /* Texto claro para fondos oscuros */
    
    /* Bordes y Sombras */
    --border-color: #E2E8F0;
    --border-dark: #1E3A5F;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(10, 30, 54, 0.08), 0 8px 10px -6px rgba(10, 30, 54, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(10, 30, 54, 0.12), 0 12px 16px -8px rgba(10, 30, 54, 0.12);
    --shadow-glow: 0 0 20px rgba(141, 204, 51, 0.3);
    
    /* Layout */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
}

/* Reset de Estilos */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Clases de Utilidad */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--color-accent-dark);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(141, 204, 51, 0.1);
    border-radius: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.text-green { color: var(--color-accent) !important; }
.text-orange { color: #F59E0B !important; }
.text-red { color: #EF4444 !important; }

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: white;
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-outline-danger {
    background: transparent;
    border: 1px solid #EF4444;
    color: #EF4444;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-danger:hover {
    background: #EF4444;
    color: white;
}

/* ==========================================================================
   Header & Navegación
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 24px 0;
    transition: var(--transition);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

/* Si el navbar está scrolled, opcionalmente podemos estilizar el logo si fuera necesario */

.nav-menu ul {
    display: flex;
    gap: 20px;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
    position: relative;
    padding: 8px 0;
}

/* En vista scrolled los links pasan a color oscuro */
.scrolled .nav-link {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

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

.nav-link:hover {
    color: var(--color-accent);
}

.scrolled .nav-link:hover {
    color: var(--color-accent-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

.scrolled .menu-toggle span {
    background-color: var(--color-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 80% 20%, rgba(141, 204, 51, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 10% 80%, rgba(21, 50, 89, 0.4) 0%, transparent 60%);
    padding: 180px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.google-cloud-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 6px;
    margin-bottom: 28px;
    transition: var(--transition);
    align-self: flex-start;
}

.google-cloud-badge:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.powered-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.gc-logo-img {
    height: 15px;
    width: auto;
    object-fit: contain;
}

.footer-badge {
    margin-top: 16px;
    margin-bottom: 0;
    background-color: rgba(255, 255, 255, 0.03);
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, white 30%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-quick-features {
    display: flex;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.q-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.q-feat-icon {
    font-size: 1.2rem;
}

/* Mockup de Dashboard */
.hero-visual {
    position: relative;
    z-index: 2;
}

.dashboard-mockup {
    background-color: #0c1a2d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    height: 420px;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    background-color: #08111e;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #EF4444;
}

.mockup-dots span:nth-child(2) { background-color: #F59E0B; }
.mockup-dots span:nth-child(3) { background-color: #10B981; }

.mockup-search {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-grow: 1;
    max-width: 250px;
}

.mockup-body {
    display: flex;
    flex-grow: 1;
    overflow: hidden;
}

.mockup-sidebar {
    width: 150px;
    background-color: #08111e;
    padding: 16px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-item {
    font-size: 0.75rem;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-item:hover, .sidebar-item.active {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-accent);
}

.badge-alert {
    background-color: #EF4444;
    color: white;
    font-size: 0.65rem;
    padding: 1px 6px;
    border-radius: 10px;
    font-weight: 700;
}

.mockup-main {
    flex-grow: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.stat-val {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 4px;
}

.mockup-table-container {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 12px;
    flex-grow: 1;
    overflow-x: auto;
}

.mockup-table-container h3 {
    font-size: 0.8rem;
    color: white;
    margin-bottom: 8px;
}

.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mockup-list-header {
    display: grid;
    grid-template-columns: 1.8fr 1.1fr 0.9fr 0.9fr;
    padding: 6px 8px;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 4px;
}

.mockup-row {
    display: grid;
    grid-template-columns: 1.8fr 1.1fr 0.9fr 0.9fr;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: var(--text-light);
    font-size: 0.7rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    max-height: 40px;
    opacity: 1;
    transform: translateY(0);
}

.mockup-cell {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Animations for entering and leaving */
.mockup-row.entering {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-width: 0;
    transform: translateY(-15px);
}

.mockup-row.leaving {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-width: 0;
    transform: translateY(15px);
}

.status-badge {
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

.status-badge.success {
    background-color: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.status-badge.processing {
    background-color: rgba(141, 204, 51, 0.15);
    color: var(--color-accent);
}

.processing-row {
    animation: float 3s ease-in-out infinite;
}

/* ==========================================================================
   Pilares Operacionales
   ========================================================================== */
.section-pilares {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.pilares-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pilar-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
}

.pilar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition);
}

.pilar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(141, 204, 51, 0.3);
}

.pilar-card:hover::before {
    background-color: var(--color-accent);
}

.pilar-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(141, 204, 51, 0.1);
    color: var(--color-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.pilar-card:hover .pilar-icon {
    background-color: var(--color-accent);
    color: white;
}

.pilar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

/* ==========================================================================
   ¿Qué es File Farm? (Flujo Modular)
   ========================================================================== */
.section-features {
    padding: 100px 0;
    background-color: #0b1727;
    background-image: radial-gradient(circle at 10% 20%, rgba(141, 204, 51, 0.04) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(21, 50, 89, 0.2) 0%, transparent 50%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-features h2 {
    color: white;
}

.section-features p {
    color: var(--text-light);
}

.features-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    margin-bottom: 60px;
}

.features-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tab-btn {
    background: #11233b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-light);
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: rgba(141, 204, 51, 0.5);
    background-color: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.tab-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    transition: var(--transition);
}

.tab-btn.active .tab-num {
    background-color: var(--color-primary);
    color: var(--color-accent);
}

.tab-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
}

.features-tab-content {
    background-color: #11233b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.tab-pane {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.tab-pane.active {
    display: grid;
    animation: slideIn 0.4s ease-out;
}

.tab-pane-info h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: white;
}

.tab-desc {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 24px;
}

.tab-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-bullet-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-light);
}

.tab-bullet-list li::before {
    content: '✓';
    color: var(--color-accent-dark);
    font-weight: 700;
}

/* Vista simulada lateral en pestañas */
.tab-pane-visual {
    background-color: #0c1a2d;
    border-radius: var(--radius-sm);
    padding: 24px;
    color: white;
    box-shadow: var(--shadow-md);
}

.pane-mockup-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-badge {
    background-color: rgba(255, 255, 255, 0.08);
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mockup-badge.bg-red {
    background-color: rgba(239, 68, 68, 0.15);
    color: #EF4444;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 8px;
}

.history-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.history-item .dot.green { background-color: var(--color-accent); }
.history-item .dot.orange { background-color: #F59E0B; }
.history-item .dot.gray { background-color: var(--text-muted); }

.history-item .time { color: var(--text-muted); width: 85px; flex-shrink: 0; }
.history-item .desc { flex-grow: 1; color: var(--text-light); }
.history-item .ver { font-weight: 700; color: var(--color-accent); }

.extracted-field {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
}

.extracted-fieldHighlight {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    background-color: rgba(239, 68, 68, 0.05);
    border: 1px dashed rgba(239, 68, 68, 0.3);
    padding: 8px;
    border-radius: 4px;
}

.field-label { color: var(--text-muted); }
.field-value { font-weight: 600; }

.alert-box-ui {
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.progress-bar-ui {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pb-label { font-size: 0.75rem; color: var(--text-light); }
.pb-track { height: 6px; background-color: rgba(255, 255, 255, 0.1); border-radius: 10px; overflow: hidden; }
.pb-fill { height: 100%; background-color: var(--color-accent); }
.pb-value { align-self: flex-end; font-size: 0.75rem; font-weight: 700; color: var(--color-accent); }

.api-integration-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.api-status.connected {
    color: #10B981;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* Grilla de Atributos Clave */
.attributes-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.attr-tag {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.attr-tag:hover {
    transform: scale(1.05);
    border-color: var(--color-accent);
    color: var(--color-accent-dark);
}

/* ==========================================================================
   El Desafío (Problema que Resuelve)
   ========================================================================== */
.section-desafio {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.desafio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.desafio-card {
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.problem-card {
    background-color: #FAF5F5;
    border: 1px solid #F3E2E2;
}

.solution-card {
    background-color: #F5FAF6;
    border: 1px solid #E2F3E6;
}

.card-header-icon {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.emoji-icon {
    font-size: 2rem;
}

.desafio-card h3 {
    font-size: 1.5rem;
}

.desafio-card h3 small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.desafio-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.desafio-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.list-marker {
    font-size: 1.1rem;
    line-height: 1.3;
}

.desafio-list div {
    font-size: 0.95rem;
}

.desafio-list strong {
    color: var(--color-primary);
}

.card-summary {
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border-left: 4px solid;
}

.error-bg {
    background-color: rgba(239, 68, 68, 0.08);
    border-left-color: #EF4444;
    color: #991B1B;
}

.success-bg {
    background-color: rgba(16, 185, 129, 0.08);
    border-left-color: #10B981;
    color: #065F46;
}



/* ==========================================================================
   Caso de Éxito
   ========================================================================== */
.section-exito {
    padding: 100px 0;
    background-color: #0b1727;
    background-image: radial-gradient(circle at 80% 80%, rgba(141, 204, 51, 0.04) 0%, transparent 40%),
                      radial-gradient(circle at 20% 20%, rgba(21, 50, 89, 0.2) 0%, transparent 50%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: white;
}

.section-exito h2 {
    color: white;
}

.section-exito p {
    color: var(--text-light);
}

.exito-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.meta-card {
    background-color: #11233b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.meta-icon {
    font-size: 1.8rem;
}

.meta-info strong {
    display: block;
    color: white;
    font-size: 1.1rem;
}

.meta-info span {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.6;
}

/* Barra de Comparación Antes vs Después */
.comparison-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background-color: #11233b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.comp-col {
    text-align: center;
    flex-grow: 1;
}

.comp-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.6;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.comp-days {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    background-color: #0d1e34;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.comp-days.highlight {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.comp-arrow {
    color: var(--color-accent);
}

.exito-banner-summary {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 60px;
    color: white;
}

/* Grilla KPIs */
.kpis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.kpi-card {
    background-color: #11233b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.kpi-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.kpi-desc {
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.5;
}

.exito-quote {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* ==========================================================================
   Proceso de Implementación Experta
   ========================================================================== */
.section-implementacion {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.implementacion-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step-card {
    position: relative;
    padding: 32px 24px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(141, 204, 51, 0.5);
    background-color: white;
    box-shadow: var(--shadow-md);
}

.step-badge {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.step-card:hover .step-badge {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

.implementacion-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.note-box {
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.95rem;
    border-left: 3px solid var(--color-accent);
}

.note-box span {
    font-size: 1.25rem;
    line-height: 1.2;
}

.note-box p {
    color: var(--text-muted);
}

/* ==========================================================================
   Formulario de Contacto
   ========================================================================== */
.section-contacto {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contacto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contacto-info .subtitle {
    display: inline-block;
    color: var(--color-accent-dark);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contacto-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contacto-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contacto-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.channel-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.channel-card .icon {
    font-size: 1.8rem;
}

.channel-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.channel-card a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
}

.channel-card a:hover {
    color: var(--color-accent-dark);
}

.contacto-form-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 48px;
    box-shadow: var(--shadow-md);
    position: relative;
    min-height: 480px;
}

.contacto-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(141, 204, 51, 0.15);
}

/* Animación y estado de Éxito */
.success-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    text-align: center;
    animation: slideIn 0.4s ease-out forwards;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.checkmark {
    width: 24px;
    height: 48px;
    border: solid #10B981;
    border-width: 0 5px 5px 0;
    transform: rotate(45deg);
    margin-top: -8px;
}

.success-message h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--color-primary);
    color: white;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

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

.footer-links h4,
.footer-security h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-partners-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 15px;
}

.footer-partners-brand .partner-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-partners-brand .partner-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 195px; /* Alinea los logos verticalmente para un acabado limpio dado el nuevo largo de texto */
    display: inline-block;
}

.footer-partners-brand .partner-logo-img {
    height: 38px; /* Escala ampliada para mejor legibilidad, tamaño e impacto visual */
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-partners-brand .partner-logo-img:hover {
    opacity: 1;
}

.footer-partners-brand .tekya-logo {
    height: 32px; /* Escala ampliada proporcional para el logo de TEKYA */
    mix-blend-mode: screen; /* Elimina el fondo negro/oscuro del logo de Tekya */
}

/* ==========================================================================
   Animaciones
   ========================================================================== */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(141, 204, 51, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(141, 204, 51, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(141, 204, 51, 0);
    }
}

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
        background-color: rgba(141, 204, 51, 0.05);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ==========================================================================
   Responsividad (Media Queries)
   ========================================================================== */

/* Tablets y Laptops Pequeñas */
@media (max-width: 1024px) {
    .main-header {
        padding: 16px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-primary);
        padding: 40px 24px;
        transition: var(--transition);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.25rem;
        color: white;
    }
    
    .scrolled .nav-link {
        color: white;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Estado abierto del menú hamburguesa */
    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Layout Hero */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 7vw, 2.75rem);
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-ctas {
        justify-content: center;
        width: 100%;
    }
    
    .hero-quick-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Módulos (¿Qué es?) */
    .features-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 12px;
        gap: 12px;
        scrollbar-width: thin;
        scrollbar-color: var(--color-accent) rgba(255, 255, 255, 0.05);
    }
    
    .features-tabs-nav::-webkit-scrollbar {
        height: 4px;
    }
    
    .features-tabs-nav::-webkit-scrollbar-thumb {
        background-color: var(--color-accent);
        border-radius: 10px;
    }
    
    .tab-btn {
        flex-shrink: 0;
        padding: 12px 20px;
    }
    
    .tab-pane {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tab-pane-visual {
        order: -1; /* Poner el visual arriba del texto en móviles */
    }

    /* El Desafío */
    .desafio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Caso de éxito */
    .exito-meta {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .kpis-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-bar {
        padding: 24px;
    }

    /* Contacto */
    .contacto-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Teléfonos y Pantallas Medianas/Pequeñas */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    section {
        padding: 60px 0 !important; /* Reducir espaciado de secciones para móviles */
    }

    .hero-section {
        padding: 130px 0 60px;
    }

    .hero-quick-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .features-tab-content {
        padding: 24px;
    }

    .comparison-bar {
        flex-direction: column;
        gap: 16px;
    }
    
    .comp-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }

    .implementacion-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .implementacion-notes {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contacto-form-container {
        padding: 24px;
    }
}

/* Teléfonos Pequeños (Skins estrechos como iPhone SE) */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .header-actions .btn {
        display: none; /* Esconder botón Solicitar Demo en header para dar espacio */
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    /* Hacer el dashboard mockup ultra responsivo y limpio */
    .dashboard-mockup {
        height: 340px;
    }

    .mockup-sidebar {
        display: none; /* Ocultar barra lateral en pantallas pequeñas */
    }

    .mockup-main {
        padding: 12px;
    }

    .mockup-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mockup-list-header {
        display: none; /* Ocultar encabezados de lista */
    }

    .mockup-row {
        grid-template-columns: 1fr auto; /* Solo Nombre del Doc y Estado */
        gap: 10px;
        padding: 10px;
    }

    .mockup-cell:nth-child(2),
    .mockup-cell:nth-child(3) {
        display: none; /* Ocultar Trabajador y Fecha para evitar que se apriete */
    }

    .tab-pane-visual {
        padding: 16px;
    }
    
    .extracted-fieldHighlight, .extracted-field, .history-item {
        font-size: 0.7rem;
    }
}

/* ==========================================================================
   Nuevas Secciones (Tecnología, Acreditación, Factor Humano)
   ========================================================================== */

/* 1. Sección Tecnología */
.section-tecnologia {
    padding: 100px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.tech-content .subtitle {
    display: inline-block;
    color: var(--color-accent-dark);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(141, 204, 51, 0.1);
    border-radius: 50px;
}

.tech-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.tech-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-feature-card {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tech-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(141, 204, 51, 0.3);
}

.tech-feat-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(141, 204, 51, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
}

.tech-feat-text h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

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

/* 2. Sección Acreditación */
.section-acreditacion {
    padding: 100px 0;
    background-color: var(--color-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-acreditacion::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(141, 204, 51, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.acred-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.acred-content .subtitle {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
}

.acred-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.acred-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.acred-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.acred-bullets li {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.acred-bullets li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(141, 204, 51, 0.2);
    transform: translateY(-2px);
}

.bullet-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
}

.acred-bullets li div strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: white;
}

.acred-bullets li div p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* 3. Sección Factor Humano */
.section-factor-humano {
    padding: 100px 0 80px;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

/* Header centrado */
.human-header-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.human-header-block .subtitle {
    display: inline-block;
    color: var(--color-accent-dark);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(141, 204, 51, 0.1);
    border-radius: 50px;
}

.human-header-block h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.human-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===== CARRUSEL DE METODOLOGÍA ===== */
.methodology-carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px;
}

.methodology-carousel-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: carouselScroll 28s linear infinite;
    will-change: transform;
}

.methodology-carousel-track:hover {
    animation-play-state: paused;
}

/* Cada tarjeta del carrusel */
.meth-card {
    flex-shrink: 0;
    width: 320px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.45s ease;
}

.meth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.meth-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px -12px rgba(10, 30, 54, 0.15),
                0 0 0 1px rgba(141, 204, 51, 0.2);
    border-color: rgba(141, 204, 51, 0.3);
}

.meth-card:hover::before {
    opacity: 1;
}

.meth-card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(141, 204, 51, 0.12);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
    transition: color 0.4s ease;
}

.meth-card:hover .meth-card-num {
    color: rgba(141, 204, 51, 0.25);
}

.meth-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(141, 204, 51, 0.15), rgba(132, 153, 102, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.4s ease;
}

.meth-card:hover .meth-card-icon {
    transform: scale(1.1) rotate(-3deg);
    background: linear-gradient(135deg, rgba(141, 204, 51, 0.25), rgba(132, 153, 102, 0.15));
}

.meth-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-accent-dark);
}

.meth-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.meth-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Máscaras de blur en los bordes del carrusel */
.carousel-blur-mask {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.carousel-blur-left {
    left: 0;
    background: linear-gradient(90deg, var(--bg-card) 0%, transparent 100%);
}

.carousel-blur-right {
    right: 0;
    background: linear-gradient(270deg, var(--bg-card) 0%, transparent 100%);
}

/* Animación del carrusel infinito */
@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Se desplaza exactamente el ancho de 4 tarjetas + 4 gaps = 4*(320+32)=1408px */
        transform: translateX(-1408px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .human-header-block h2 {
        font-size: 1.8rem;
    }

    .meth-card {
        width: 270px;
        padding: 32px 24px;
    }

    .carousel-blur-mask {
        width: 60px;
    }

    @keyframes carouselScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-1208px); /* 4*(270+32) */
        }
    }
}

/* 4. Estilos Comunes de Visuales e Imágenes Premium */
.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #0c1a2d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.image-wrapper:hover {
    transform: scale(1.02);
}

.premium-visual-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.tech-api-logos {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.api-logo {
    background: rgba(10, 30, 54, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.compliance-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(13, 27, 45, 0.9);
    border: 1px solid var(--color-accent);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(8px);
}

.compliance-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.compliance-txt {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    color: white;
}

/* ==========================================================================
   Responsive Adaptations for New Sections
   ========================================================================== */
@media (max-width: 992px) {
    .tech-grid, .acred-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-visual, .acred-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .tech-content, .acred-content {
        order: 1;
    }
}


/* ==========================================================================
   Estilos para Iconos SVG Monocromos
   ========================================================================== */
.q-feat-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
    fill: none;
    display: inline-block;
    vertical-align: middle;
}

.tech-feat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent-dark);
    fill: none;
}

.bullet-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
    fill: none;
}

.channel-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-dark);
    background: rgba(141, 204, 51, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
}

.channel-card .icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

/* ==========================================================================
   Sección ¿Qué es FilesFarm?
   ========================================================================== */
.section-que-es {
    padding: 100px 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.que-es-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.que-es-definition .subtitle {
    display: inline-block;
    color: var(--color-accent-dark);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(141, 204, 51, 0.1);
    border-radius: 50px;
}

.que-es-definition h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.que-es-definition p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.que-es-definition p.highlight-p {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 400;
}

.que-es-pillars {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pillar-card-small {
    display: flex;
    gap: 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.pillar-card-small:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(141, 204, 51, 0.3);
}

.pillar-icon-small {
    background: rgba(141, 204, 51, 0.08);
    color: var(--color-accent-dark);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-icon-small svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.pillar-txt-small h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.pillar-txt-small p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .que-es-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Animaciones del Viaje del Documento (¿Qué es?)
   ========================================================================== */
.que-es-flow-card {
    background: #061121;
    background-image: radial-gradient(circle at 10% 10%, rgba(141, 204, 51, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 90% 90%, rgba(21, 50, 89, 0.3) 0%, transparent 50%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    margin-top: 65px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 20px 50px rgba(0,0,0,0.3);
    color: white;
}

.flow-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.flow-badge {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 4px 14px;
    background: rgba(141, 204, 51, 0.1);
    border-radius: 50px;
}

.flow-header h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 12px;
}

.flow-header p {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.flow-animation-area {
    position: relative;
    width: 100%;
    margin-top: 30px;
}

/* Línea Conectora con Glow */
.flow-connector-line {
    position: absolute;
    top: 45px; /* Centrado con el icono de 90px */
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
    border-radius: 2px;
}

.flow-connector-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    background-size: 200% 100%;
    animation: connectionGlow 6s linear infinite;
}

@keyframes connectionGlow {
    0% { background-position: 150% 0; }
    100% { background-position: -150% 0; }
}

/* Documento Viajero */
.traveling-doc-node {
    position: absolute;
    width: 32px;
    height: 40px;
    background: #94A3B8;
    border-radius: 4px;
    border-top-right-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    top: 25px; /* 45px center - 20px half height */
    z-index: 3;
    animation: travelDoc 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.traveling-doc-node::after {
    content: '📄';
    font-size: 16px;
}

@keyframes travelDoc {
    /* Fase 1: En carpeta (0% - 10%) */
    0% {
        left: calc(10% - 16px);
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
        background: #94A3B8;
        border-radius: 3px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    }
    3% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        border-radius: 3px;
    }
    10% {
        left: calc(10% - 16px);
        transform: scale(1) rotate(0deg);
        background: #94A3B8;
        border-radius: 3px;
    }
    /* Viajando a IA (10% - 30%) */
    30% {
        left: calc(30% - 16px);
        transform: scale(1) rotate(0deg);
        background: #94A3B8;
        border-radius: 3px;
    }
    /* Fase 2: Escaneando en IA (30% - 50%) */
    35% {
        left: calc(30% - 16px);
        transform: scale(1.2) rotate(10deg);
        background: var(--color-accent);
        box-shadow: 0 0 15px var(--color-accent);
        border-radius: 3px;
    }
    45% {
        left: calc(30% - 16px);
        transform: scale(1.2) rotate(-10deg);
        background: var(--color-accent);
        box-shadow: 0 0 15px var(--color-accent);
        border-radius: 3px;
    }
    50% {
        left: calc(30% - 16px);
        transform: scale(1) rotate(0deg);
        background: var(--color-accent);
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        border-radius: 3px;
    }
    /* Viajando a Repositorio (50% - 60%) */
    60% {
        left: calc(50% - 16px);
        transform: scale(1) rotate(0deg);
        background: var(--color-accent);
        border-radius: 3px;
        opacity: 1;
    }
    /* Fase 3: Indexación y Transformación en el Repositorio (60% - 65%) */
    63% {
        left: calc(50% - 16px);
        transform: scale(0.7) rotate(45deg);
        background: var(--color-accent);
        border-radius: 50%;
        box-shadow: 0 0 12px var(--color-accent);
    }
    65% {
        left: calc(50% - 16px);
        transform: scale(0.6);
        background: #00F0FF; /* Resplandece color cian representando datos estructurados */
        border-radius: 50%;
        box-shadow: 0 0 15px #00F0FF;
    }
    /* Viajando a Relaciones (65% - 75%) */
    75% {
        left: calc(70% - 16px);
        transform: scale(0.6);
        background: #00F0FF;
        border-radius: 50%;
        box-shadow: 0 0 15px #00F0FF;
        opacity: 1;
    }
    /* Fase 4: Entrando a Relaciones y activando enlaces (75% - 80%) */
    77% {
        left: calc(70% - 16px);
        transform: scale(1.2);
        background: #00F0FF;
        border-radius: 50%;
        box-shadow: 0 0 25px #00F0FF;
    }
    80% {
        left: calc(70% - 16px);
        transform: scale(0.6);
        background: #00F0FF;
        border-radius: 50%;
        box-shadow: 0 0 15px #00F0FF;
    }
    /* Viajando a la App (80% - 88%) */
    88% {
        left: calc(90% - 16px);
        transform: scale(0.6);
        background: #00F0FF;
        border-radius: 50%;
        box-shadow: 0 0 15px #00F0FF;
        opacity: 1;
    }
    /* Fase 5: Integración y disponibilidad en la App (88% - 95%) */
    92% {
        left: calc(90% - 16px);
        transform: scale(1.3);
        background: var(--color-accent);
        border-radius: 50%;
        box-shadow: 0 0 25px var(--color-accent);
        opacity: 1;
    }
    95% {
        left: calc(90% - 16px);
        transform: scale(0);
        opacity: 0;
    }
    96%, 100% {
        left: calc(90% - 16px);
        transform: scale(0);
        opacity: 0;
    }
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 20%;
    position: relative;
}

.step-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #0F233C;
    border: 2px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 25px;
    color: var(--color-accent);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.flow-step:hover .step-icon-wrapper {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(141, 204, 51, 0.15);
}

.step-svg {
    width: 38px;
    height: 38px;
    stroke: currentColor;
    fill: none;
    transition: var(--transition);
}

.step-label h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: white;
}

.step-label p {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.6;
    line-height: 1.4;
    padding: 0 15px;
}

/* Animaciones específicas de pasos */

/* Paso 1: Carpeta Desordenada y Papeles Flotando */
.floating-doc {
    position: absolute;
    width: 14px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    border-top-right-radius: 6px;
    pointer-events: none;
}

.doc-1 {
    top: 8px;
    left: -16px;
    animation: scatter1 10s ease-in-out infinite;
}

.doc-2 {
    top: -16px;
    left: 28px;
    animation: scatter2 10s ease-in-out infinite;
}

.doc-3 {
    bottom: 8px;
    right: -16px;
    animation: scatter3 10s ease-in-out infinite;
}

@keyframes scatter1 {
    0%, 90%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
    5% { opacity: 0.8; }
    20% { transform: translate(-22px, -22px) rotate(-20deg); opacity: 0; }
}

@keyframes scatter2 {
    0%, 90%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
    8% { opacity: 0.8; }
    23% { transform: translate(15px, -28px) rotate(25deg); opacity: 0; }
}

@keyframes scatter3 {
    0%, 90%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    25% { transform: translate(22px, 22px) rotate(-15deg); opacity: 0; }
}

/* Paso 2: Laser y Pulso de IA */
.ai-core-wrapper {
    overflow: hidden;
}

.ai-pulse-ring {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    top: -2px;
    left: -2px;
    animation: pulseAI 2s ease-out infinite;
    opacity: 0;
    pointer-events: none;
}

.app-pulse-ring {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    top: -2px;
    left: -2px;
    animation: pulseApp 10s ease-out infinite;
    opacity: 0;
    pointer-events: none;
}

@keyframes pulseApp {
    0%, 87% {
        transform: scale(0.9);
        opacity: 0;
    }
    90% {
        transform: scale(1);
        opacity: 0.6;
    }
    95% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

@keyframes pulseAI {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

.ai-scanning-laser {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    box-shadow: 0 0 6px var(--color-accent);
    top: 50%;
    left: 0;
    animation: laserScan 2s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes laserScan {
    0%, 100% { top: 15%; }
    50% { top: 85%; }
}

/* Paso 4: Relaciones que se Activan */
.relations-wrapper {
    position: relative;
}

.relation-node {
    position: absolute;
    width: 38px;
    height: 38px;
    background: #11233B;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 4;
}

.r-worker {
    top: -15px;
    left: -15px;
    animation: activeRelation 10s ease-in-out infinite;
    animation-delay: 0s;
}

.r-role {
    top: -25px;
    right: -8px;
    animation: activeRelation 10s ease-in-out infinite;
    animation-delay: 0.4s;
}

.r-machine {
    bottom: -15px;
    right: -15px;
    animation: activeRelation 10s ease-in-out infinite;
    animation-delay: 0.8s;
}

@keyframes activeRelation {
    0%, 72% {
        transform: scale(1);
        opacity: 0.2;
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: none;
    }
    77% {
        transform: scale(1.3);
        opacity: 1;
        border-color: #00F0FF;
        box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
    }
    85% {
        transform: scale(1);
        opacity: 1;
        border-color: var(--color-accent);
    }
    92%, 100% {
        transform: scale(1);
        opacity: 0.2;
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: none;
    }
}

/* Adaptación Responsiva para móviles */
@media (max-width: 768px) {
    .que-es-flow-card {
        padding: 40px 20px;
    }
    
    .flow-steps {
        flex-direction: column;
        gap: 50px;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .flow-step {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        width: 100%;
    }
    
    .step-icon-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-label p {
        padding: 0;
    }
    
    .flow-connector-line {
        top: 45px;
        bottom: 45px;
        left: 95px; /* Centrado con los iconos desplazados */
        width: 3px;
        height: auto;
        right: auto;
    }
    
    .flow-connector-glow {
        background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
        background-size: 100% 200%;
        animation: connectionGlowVertical 6s linear infinite;
    }

    @keyframes connectionGlowVertical {
        0% { background-position: 0 150%; }
        100% { background-position: 0 -150%; }
    }
    
    .traveling-doc-node {
        left: 79px; /* 95px center - 16px half width */
        animation: travelDocVertical 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
    
    @keyframes travelDocVertical {
        /* Centros verticales correspondientes a 25px, 165px, 305px, 445px, 585px (incrementos de 140px con circulo de 90px y gap de 50px) */
        0% {
            top: 25px;
            opacity: 0;
            transform: scale(0.5) rotate(0deg);
            background: #94A3B8;
            border-radius: 3px;
        }
        3% {
            opacity: 1;
            transform: scale(1) rotate(0deg);
            border-radius: 3px;
        }
        10% {
            top: 25px;
            transform: scale(1) rotate(0deg);
            background: #94A3B8;
            border-radius: 3px;
        }
        30% {
            top: 165px;
            transform: scale(1) rotate(0deg);
            background: #94A3B8;
            border-radius: 3px;
        }
        35% {
            top: 165px;
            transform: scale(1.2) rotate(10deg);
            background: var(--color-accent);
            box-shadow: 0 0 15px var(--color-accent);
            border-radius: 3px;
        }
        45% {
            top: 165px;
            transform: scale(1.2) rotate(-10deg);
            background: var(--color-accent);
            box-shadow: 0 0 15px var(--color-accent);
            border-radius: 3px;
        }
        50% {
            top: 165px;
            transform: scale(1) rotate(0deg);
            background: var(--color-accent);
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            border-radius: 3px;
        }
        60% {
            top: 305px;
            transform: scale(1) rotate(0deg);
            background: var(--color-accent);
            border-radius: 3px;
            opacity: 1;
        }
        63% {
            top: 305px;
            transform: scale(0.7) rotate(45deg);
            background: var(--color-accent);
            border-radius: 50%;
            box-shadow: 0 0 12px var(--color-accent);
        }
        65% {
            top: 305px;
            transform: scale(0.6);
            background: #00F0FF;
            border-radius: 50%;
            box-shadow: 0 0 15px #00F0FF;
        }
        75% {
            top: 445px;
            transform: scale(0.6);
            background: #00F0FF;
            border-radius: 50%;
            box-shadow: 0 0 15px #00F0FF;
            opacity: 1;
        }
        78% {
            top: 445px;
            transform: scale(1.2);
            background: #00F0FF;
            border-radius: 50%;
            box-shadow: 0 0 25px #00F0FF;
        }
        80% {
            top: 445px;
            transform: scale(0.6);
            background: #00F0FF;
            border-radius: 50%;
            box-shadow: 0 0 15px #00F0FF;
        }
        88% {
            top: 585px;
            transform: scale(0.6);
            background: #00F0FF;
            border-radius: 50%;
            box-shadow: 0 0 15px #00F0FF;
            opacity: 1;
        }
        92% {
            top: 585px;
            transform: scale(1.3);
            background: var(--color-accent);
            border-radius: 50%;
            box-shadow: 0 0 25px var(--color-accent);
            opacity: 1;
        }
        95% {
            top: 585px;
            transform: scale(0);
            opacity: 0;
        }
        96%, 100% {
            top: 585px;
            transform: scale(0);
            opacity: 0;
        }
    }
}

/* ==========================================================================
   Frase Destacada de Valor (¿Qué es?)
   ========================================================================== */
.que-es-value-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-light);
    border-left: 4px solid var(--color-accent);
    padding: 24px 30px;
    border-radius: var(--radius-sm);
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.banner-svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-accent-dark);
    fill: none;
    flex-shrink: 0;
}

.banner-text {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-primary);
    margin: 0;
}

@media (max-width: 768px) {
    .que-es-value-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }
}


