.lfr-layout-structure-item-container {padding: 0;} .lfr-layout-structure-item-row {overflow: hidden;} .portlet-borderless .portlet-content {padding: 0;}.lfr-layout-structure-item-73d48997-829e-108a-150f-4dde34e9b727 {


/* Contenedor e Inyección de Malla de Fondo */
.cv-landing-section {
    padding: 60px 20px;
    background-color: #F8FAFC;
    background: radial-gradient(circle at 100% 0%, rgba(0, 209, 255, 0.05) 0%, transparent 35%),
                radial-gradient(circle at 0% 100%, rgba(0, 70, 174, 0.03) 0%, transparent 35%);
    font-family: 'Inter', sans-serif;
}

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

/* Encabezado de la sección */
.cv-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.cv-badge-tech {
    display: inline-block;
    background-color: rgba(0, 70, 174, 0.08);
    color: #0046AE;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.cv-main-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #0A2540;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.cv-section-subtitle {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
}

/* GRID DE CARDS (Separación limpia mediante GAP) */
.cv-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px; /* SEPARACIÓN DEFINITIVA ENTRE LAS TARJETAS */
    margin-bottom: 60px;
}

.cv-card-item {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cv-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border-color: #CBD5E1;
}

/* Tarjeta destacada con acento visual abajo (Estilo Tarjetón) */
.cv-card-highlight {
    border-bottom: 4px solid #00D1FF;
}

/* Elementos internos de las Cards */
.cv-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
}

.cv-icon-blue { background-color: #EFF6FF; color: #0046AE; }
.cv-icon-cyan { background-color: #ECFEFF; color: #0891B2; }

.cv-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 12px;
}

.cv-card-description {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
}

.cv-card-footer-info {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cv-feature-tag {
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    background-color: #F1F5F9;
    padding: 4px 10px;
    border-radius: 6px;
}

/* SECCIÓN PROCESO CRONOLÓGICO */
.cv-process-section {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 60px;
}

.cv-sub-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #0A2540;
    text-align: center;
    margin-bottom: 40px;
}

.cv-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.cv-process-step {
    position: relative;
}

.cv-step-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #2d3748;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    user-select: none;
}

.cv-step-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 10px;
}

.cv-step-text {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
}

/* SECCIÓN ESCRUTINIO Y FORMULA */
.cv-escrutinio-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    background-color: #0F172A;
    color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
}

.cv-escrutinio-content {
    padding: 45px;
    background-color: #1E293B;
}

.cv-badge-alert {
    display: inline-block;
    background-color: rgba(0, 209, 255, 0.15);
    color: #00D1FF;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.cv-escrutinio-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.cv-escrutinio-text {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.cv-math-display {
    background-color: #0F172A;
    border-left: 4px solid #00D1FF;
    padding: 16px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 13px;
    color: #E2E8F0;
    text-align: center;
}

.cv-escrutinio-reports {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cv-reports-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.cv-reports-text {
    font-size: 13.5px;
    color: #94A3B8;
    margin-bottom: 20px;
}

.cv-reports-list {
    list-style: none;
    padding: 0;
}

.cv-reports-list li {
    font-size: 14px;
    color: #E2E8F0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* RESPONSIVIDAD GENERAL */
@media (max-width: 768px) {
    .cv-main-title { font-size: 32px; }
    .cv-process-section, .cv-escrutinio-content, .cv-escrutinio-reports { padding: 30px 20px; }
    .cv-cards-grid, .cv-process-grid { grid-template-columns: 1fr; }
}
}.lfr-layout-structure-item-e5511d66-ad8a-0994-9a89-b84502c924c4 {
/* --- Variables de Diseño y Reseteo --- */
:root {
    --primary-color: #1e3a8a;    /* Azul oscuro institucional */
    --secondary-color: #0d9488;  /* Verde azulado/Cyan de tecnología */
    --text-main: #1f2937;       /* Gris oscuro para máxima legibilidad */
    --text-muted: #4b5563;      /* Gris medio para subtítulos */
    --bg-light: #f9fafb;        /* Fondo claro general */
    --bg-white: #ffffff;
    --accent-badge: #e0f2fe;    /* Fondo suave para distintivos */
    --accent-badge-text: #0369a1;
    --font-stack: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-stack);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
}

/* --- Encabezado / Centrado de Logo --- */
.site-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: center; /* Centra el logotipo al no haber enlaces */
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* --- Sección Hero --- */
.hero-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.badge-tech {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent-badge);
    color: var(--accent-badge-text);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* --- Botones --- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* --- Sección de Contenido (Tecnologías) --- */
.content-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

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

.section-main-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- Grid de Tarjetas (Cards) --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card-item {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.highlight-card {
    border: 2px solid var(--secondary-color);
    position: relative;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-blue { background-color: #eff6ff; color: #2563eb; }
.icon-cyan { background-color: #ecfeff; color: #0891b2; }
.icon-green { background-color: #f0fdf4; color: #16a34a; }

.card-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* --- Pie de Página --- */
.site-footer {
    background-color: var(--primary-color);
    color: #93c5fd;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* --- Adaptabilidad Móvil (Responsive) --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; gap: 0.8rem; }
}
}