/* ============================================
   Animations
   ============================================ */
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* ============================================
   Variables CSS - Paleta de Colores Cervellia Technologies S.L
   ============================================ */
:root {
    /* Colores principales - Libro de Estilos */
    --primary-blue: #0B3D91; /* Deep Tech Blue - profesional, confianza, serio */
    --accent-teal: #00B5A6; /* Teal-Innovation - modernidad, energía positiva */
    --accent-violet: #7C4DFF; /* Violet-Edge - toque de IA, creatividad (usar con moderación) */
    --text-dark: #0F1724; /* Dark Slate - texto copy/headers */
    --bg-light: #F5F8FB; /* Soft Cloud - base para páginas web */
    --neutral-gray: #E6EAEE; /* Cool Gray - borders */
    
    /* Colores derivados para texto secundario (basados en text-dark) */
    --text-secondary: rgba(15, 23, 36, 0.7); /* 70% opacity del text-dark */
    --text-tertiary: rgba(15, 23, 36, 0.5); /* 50% opacity del text-dark */
    
    /* Tipografías - Libro de Estilos */
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; /* Regular / 500 / 700 */
    --font-poppins: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; /* Semibold / Bold */
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transiciones */
    --transition: all 0.3s ease;
}

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

/* ============================================
   Accesibilidad
   ============================================ */
/* Skip link - Visible solo cuando tiene foco */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    z-index: 10000;
    font-weight: 700;
    border-radius: 0 0 8px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent-teal);
    outline-offset: 2px;
}

/* Screen reader only - Labels visibles solo para lectores de pantalla */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Mejorar contraste de foco en elementos interactivos */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--accent-teal);
    outline-offset: 2px;
}

/* Asegurar contraste mínimo en botones */
.btn:focus {
    outline: 3px solid white;
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.4;
    overflow-x: hidden;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.container {
    margin: 0 auto;
    padding: 0 calc(var(--spacing-md) * 2.52);
    width: 100%;
}

/* ============================================
   Navegación
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: var(--spacing-sm) var(--spacing-md);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--primary-blue);
}

.navbar .container {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 0.5rem var(--spacing-md);
    min-height: 70px;
    box-shadow: 0 2px 20px rgba(11, 61, 145, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-menu li a:focus {
    outline: none;
}

.nav-menu li a:not(.btn-nav):hover {
    color: var(--primary-blue);
}

.nav-menu li a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: var(--transition);
}

.nav-menu li a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: #7C4DFF;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 700; /* Inter Bold según libro de estilos */
}

.btn-nav:focus {
    outline: none;
}

.btn-nav:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 77, 255, 0.3);
}

.btn-nav::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    margin-top: 0;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.85) 0%, rgba(10, 45, 107, 0.75) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: calc(var(--spacing-xl) * 2);
    align-items: center;
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl) 0 calc((52px + var(--spacing-md)) * 1.5) 0;
    padding-top: calc((var(--spacing-xl) + 4rem) * 0.8);
}

.hero-column-left {
    display: flex;
    flex-direction: column;
}

.hero-column-right {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.hero-text {
    max-width: 100%;
    text-align: left;
}

.hero-title {
    font-family: var(--font-poppins);
    font-size: 63px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--accent-teal);
    position: relative;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    line-height: 1.4;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.hero-description .highlight-text {
    color: var(--accent-teal);
    font-weight: 600;
}

.hero-metrics {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: 0;
    align-items: flex-start;
}

.hero-metric-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.metric-check {
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.metric-text {
    line-height: 1.2;
}


.hero-cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-cta .btn {
    font-weight: 400;
}


.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero-scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-teal);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 181, 166, 0.3);
}

.hero-scroll-indicator a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 181, 166, 0.4);
}

.hero-scroll-indicator svg {
    width: 24px;
    height: 24px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 3;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
    vertical-align: bottom;
    border-color: rgba(0, 0, 0, 0);
    border-image: none;
}

/* ============================================
   Botones
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700; /* Inter Bold según libro de estilos */
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-inter);
}

.btn-primary {
    background: var(--accent-teal);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 181, 166, 0.3);
}

.btn-primary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 181, 166, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* ============================================
   Secciones Generales
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 181, 166, 0.1);
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(0, 181, 166, 0.2);
    width: auto;
}

.section-title {
    font-family: var(--font-poppins);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-teal), var(--primary-blue));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: var(--spacing-md) auto 0;
    line-height: 1.6;
}

/* ============================================
   Hero Claim
   ============================================ */
.hero-claim {
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Challenge Section
   ============================================ */
.challenge {
    padding: var(--spacing-xl) 0;
    background: white;
}

.challenge-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Challenge Stats */
.challenge-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-blue) 0%, rgba(11, 61, 145, 0.9) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(11, 61, 145, 0.2);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-family: var(--font-poppins);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    color: var(--accent-teal);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Challenge Main Problem */
.challenge-main-problem {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-md);
    align-items: center;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.02) 100%);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border-left: 5px solid #ef4444;
    margin-bottom: var(--spacing-xl);
}

.problem-visual {
    flex-shrink: 0;
}

.problem-icon {
    font-size: 4rem;
    line-height: 1;
}

.problem-text h3 {
    font-family: var(--font-poppins);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.problem-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Challenge Grid */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.challenge-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    border: 2px solid var(--neutral-gray);
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-teal);
    transition: var(--transition);
}

.challenge-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(11, 61, 145, 0.15);
    border-color: var(--accent-teal);
    border-left-color: var(--accent-teal);
}

.challenge-card:hover::before {
    height: 100%;
}

.challenge-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.challenge-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.challenge-icon svg {
    width: 28px;
    height: 28px;
}

.challenge-icon-negative {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.challenge-number {
    font-family: var(--font-poppins);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(11, 61, 145, 0.15);
    line-height: 1;
}

.challenge-card:hover .challenge-number {
    color: var(--accent-teal);
}

.challenge-card h3 {
    font-family: var(--font-poppins);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.challenge-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Challenge Insight */
.challenge-insight {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    border-radius: 24px;
    padding: var(--spacing-xl);
    color: white;
    box-shadow: 0 12px 48px rgba(0, 181, 166, 0.3);
    margin-top: var(--spacing-lg);
}

.insight-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.insight-icon {
    font-size: 4rem;
    line-height: 1;
    flex-shrink: 0;
}

.insight-text h3 {
    font-family: var(--font-poppins);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
}

.insight-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.insight-solution {
    font-weight: 600;
    font-size: 1.25rem;
    color: white;
    padding-top: var(--spacing-md);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: var(--spacing-md);
}

/* ============================================
   Solution Section
   ============================================ */
.benefits {
    padding: var(--spacing-xl) 0;
    background: #F5F8FB;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.benefits-header-left {
    position: sticky;
    top: 100px;
}

.benefits-header-left .section-title {
    font-weight: 400;
}

.section-title-left {
    text-align: left;
    display: block;
}

.section-title-left::after {
    left: 0;
    transform: none;
}

.section-subtitle-left {
    text-align: left;
    margin: var(--spacing-md) 0 0 0;
    font-size: 16px;
}

.benefits-image-container {
    margin-top: var(--spacing-md);
    overflow: visible;
    position: relative;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    /* Sombra suave para integrar con el fondo */
    box-shadow: 0 4px 20px rgba(11, 61, 145, 0.08), 
                0 2px 8px rgba(11, 61, 145, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.benefits-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Gradiente más suave que integre los bordes */
    background: radial-gradient(ellipse 100% 100% at center, transparent 60%, rgba(245, 248, 251, 0.6) 85%, rgba(245, 248, 251, 0.9) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

/* Efecto de brillo sutil en la imagen */
.benefits-image-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 181, 166, 0.08), rgba(11, 61, 145, 0.08));
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    pointer-events: none;
}

.benefits-image-container:hover::before {
    opacity: 1;
}

.benefits-image-container:hover {
    box-shadow: 0 8px 30px rgba(11, 61, 145, 0.12), 
                0 4px 12px rgba(11, 61, 145, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.benefits-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 0;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    /* Borde sutil para integración */
    border: 1px solid rgba(11, 61, 145, 0.06);
    /* Filtro sutil para suavizar la imagen */
    filter: brightness(0.98) contrast(1.02);
}

/* Efecto de zoom sutil al hover */
.benefits-image-container:hover .benefits-image {
    transform: scale(1.02);
}

.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-card {
    background: white;
    border: 1px solid rgba(11, 61, 145, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.1), 0 1px 3px rgba(11, 61, 145, 0.08);
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(0, 181, 166, 0.4);
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 8px 24px rgba(11, 61, 145, 0.15), 0 4px 12px rgba(11, 61, 145, 0.1);
    transform: translateX(2px) translateY(-2px);
    border-color: rgba(0, 181, 166, 0.2);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-card {
    background: white;
}

.benefit-card:nth-child(1),
.benefit-card:nth-child(2),
.benefit-card:nth-child(3),
.benefit-card:nth-child(4),
.benefit-card:nth-child(5) {
    background: white;
    border-color: rgba(11, 61, 145, 0.1);
}

.benefit-card.active {
    background: linear-gradient(135deg, rgba(0, 181, 166, 0.12) 0%, rgba(11, 61, 145, 0.1) 100%);
    box-shadow: 0 12px 32px rgba(0, 181, 166, 0.25), 0 6px 16px rgba(0, 181, 166, 0.15);
    border-color: rgba(0, 181, 166, 0.3);
    transform: translateX(4px);
}

.benefit-card.active::before {
    height: 100%;
}

.benefit-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    position: relative;
}

.benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
    color: var(--accent-teal);
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card:nth-child(1) .benefit-icon {
    color: var(--accent-teal);
}

.benefit-card:nth-child(2) .benefit-icon {
    color: var(--primary-blue);
}

.benefit-card:nth-child(3) .benefit-icon {
    color: #7C4DFF;
}

.benefit-card:nth-child(4) .benefit-icon {
    color: var(--accent-teal);
}

.benefit-card:nth-child(5) .benefit-icon {
    color: var(--primary-blue);
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.benefit-card.active .benefit-icon {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    color: white;
    transform: scale(1.1);
}

.benefit-card.active .benefit-icon svg {
    color: white;
}

.benefit-card-header h3 {
    flex: 1;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
    /* Mejor legibilidad con espaciado de letras optimizado */
}

.benefit-card-header h3 strong {
    font-weight: 700;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.benefit-card-2:hover .benefit-card-header h3 strong {
    color: var(--accent-teal);
}

.benefit-card.active .benefit-card-header h3 {
    color: var(--primary-blue);
}

.benefit-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-arrow svg {
    width: 20px;
    height: 20px;
}

.benefit-card.active .benefit-arrow {
    color: var(--accent-teal);
    transform: rotate(90deg);
}

.benefit-card-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1rem;
}

.benefit-card.active .benefit-card-description {
    max-height: 500px;
    opacity: 1;
    padding: 0 1rem 0.75rem;
}

.benefit-card-description p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    padding-top: 0.5rem;
    letter-spacing: 0.01em;
    /* Mejor legibilidad con espaciado de letras y línea aumentado */
}

.benefit-card-description p strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   Benefits Section 2 (Enhanced UX)
   ============================================ */
.benefits-2 {
    padding: var(--spacing-xl) 0;
    background: #F5F8FB;
    position: relative;
    overflow: hidden;
}

/* ============================================
   Sobre Nosotros Layout (Vertical)
   ============================================ */
.sobre-nosotros-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    margin: 0 auto;
}

.sobre-nosotros-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.sobre-nosotros-header .section-badge {
    margin: 0 auto;
}

.sobre-nosotros-header .section-title {
    text-align: center;
    margin: 0 auto;
    display: block;
}

.sobre-nosotros-header .section-subtitle {
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
}

.sobre-nosotros-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    width: 100%;
}

/* ============================================
   Fundador Section
   ============================================ */
.fundador-section {
    display: flex;
    gap: var(--spacing-xl);
    align-items: stretch;
    margin-top: 0;
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: 20px;
}

.fundador-image-container {
    flex-shrink: 0;
    width: 285px;
    max-width: 100%;
    aspect-ratio: 4 / 6;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    cursor: pointer;
    align-self: flex-start;
}

.fundador-image {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 8px 24px rgba(11, 61, 145, 0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
    z-index: 1;
}

.fundador-linkedin-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 181, 166, 0.85) 0%, rgba(11, 61, 145, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    z-index: 3;
    pointer-events: none;
    backdrop-filter: blur(2px);
}

.fundador-linkedin-overlay svg {
    width: 48px;
    height: 48px;
    color: white;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fundador-linkedin-text {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-align: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fundador-image-container:hover .fundador-linkedin-overlay {
    opacity: 1;
}

.fundador-image-container:hover .fundador-linkedin-overlay svg {
    transform: scale(1.1);
}

.fundador-image-container:hover .fundador-linkedin-text {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}

.fundador-image-container:hover .fundador-image {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 181, 166, 0.3);
    filter: brightness(1.05);
}

.fundador-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.fundador-title {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-teal);
    margin: 0;
    line-height: 1.5;
}

.fundador-name-title {
    font-family: var(--font-poppins);
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 600;
    margin-right: 0.5rem;
}

.fundador-description {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.fundador-description p {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.fundador-description p strong {
    font-weight: 700;
    color: var(--text-dark);
}

.fundador-name {
    font-weight: 700;
    color: var(--primary-blue);
}

/* Responsive: Fundador Section */
@media (max-width: 968px) {
    .fundador-section {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }

    .fundador-image-container {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        height: auto;
        aspect-ratio: 4 / 6;
    }

    .fundador-title {
        text-align: center;
    }

    .fundador-description p {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .fundador-section {
        padding: var(--spacing-sm);
        margin-top: var(--spacing-md);
    }

    .fundador-linkedin-overlay svg {
        width: 40px;
        height: 40px;
    }

    .fundador-linkedin-text {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* Respetar preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .benefit-card-2,
    .benefit-card-2::before,
    .benefit-card-2::after,
    .benefit-card-2 .benefit-icon,
    .benefit-card-2 .benefit-card-header,
    .benefits-image-container,
    .benefits-image,
    .fundador-image-container,
    .fundador-image-container::before,
    .fundador-image,
    .fundador-linkedin-overlay,
    .fundador-linkedin-overlay svg,
    .fundador-linkedin-text {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
    
    .benefit-card-2:hover {
        transform: none !important;
    }
    
    .benefits-image-container:hover .benefits-image {
        transform: scale(1) !important;
    }

    .fundador-image-container:hover .fundador-image,
    .fundador-image-container:hover .fundador-linkedin-overlay svg,
    .fundador-image-container:hover .fundador-linkedin-text {
        transform: none !important;
    }
}

.benefit-card-2 {
    background: white;
    border: 1px solid rgba(11, 61, 145, 0.08);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 4px rgba(11, 61, 145, 0.08), 0 1px 2px rgba(11, 61, 145, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    /* Mejora de accesibilidad: mejor contraste y feedback visual */
}

/* Efecto de brillo sutil al hover (solo desktop) */
.benefit-card-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.benefit-card-2:hover::before {
    left: 100%;
}

/* Borde animado con gradiente */
.benefit-card-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-blue), var(--accent-teal));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.benefit-card-2:hover::after,
.benefit-card-2:focus-within::after {
    opacity: 0.3;
}

/* Mejora de hover con elevación y transformación sutil */
.benefit-card-2:hover {
    transform: translateY(-2px) translateX(2px);
    box-shadow: 0 8px 24px rgba(11, 61, 145, 0.12), 0 4px 8px rgba(11, 61, 145, 0.08);
    border-color: rgba(11, 61, 145, 0.15);
}

/* Estado activo/focus para accesibilidad */
.benefit-card-2:focus-within {
    outline: 2px solid var(--accent-teal);
    outline-offset: 2px;
    transform: translateY(-2px) translateX(2px);
    box-shadow: 0 8px 24px rgba(11, 61, 145, 0.12), 0 4px 8px rgba(11, 61, 145, 0.08);
}

/* Mejora del estado appearing con animación más fluida */
.benefit-card-2.appearing {
    background: linear-gradient(135deg, rgba(0, 181, 166, 0.12) 0%, rgba(11, 61, 145, 0.1) 100%);
    box-shadow: 0 4px 16px rgba(0, 181, 166, 0.15), 0 2px 8px rgba(0, 181, 166, 0.1);
    border-color: rgba(0, 181, 166, 0.3);
    transform: translateX(4px);
}

.benefit-card-2.appearing .benefit-card-header h3 {
    color: var(--primary-blue);
}

/* Efecto de glassmorphism mejorado en hover */
.benefit-card-2:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
}

.benefit-card-2:nth-child(1),
.benefit-card-2:nth-child(2),
.benefit-card-2:nth-child(3),
.benefit-card-2:nth-child(4),
.benefit-card-2:nth-child(5) {
    background: white;
    border-color: rgba(11, 61, 145, 0.1);
}

.benefit-card-2 .benefit-card-description {
    max-height: 500px;
    opacity: 1;
    padding: 0 1rem 0.75rem;
    transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mejora del header con transición más suave */
.benefit-card-2 .benefit-card-header {
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card-2:hover .benefit-card-header {
    transform: translateX(2px);
}

/* Iconos con animación sutil al hover */
.benefit-card-2 .benefit-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.benefit-card-2:hover .benefit-icon {
    transform: scale(1.05);
}

/* Animaciones dinámicas específicas para cada icono */
/* Icono 1: Código - Animación de escritura */
.benefit-icon-code .icon-line-1,
.benefit-icon-code .icon-line-2 {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: codeWrite 2s ease-in-out infinite;
}

.benefit-icon-code .icon-line-2 {
    animation-delay: 0.3s;
}

.benefit-icon-code .icon-line-3 {
    opacity: 0.6;
    animation: codePulse 1.5s ease-in-out infinite;
}

@keyframes codeWrite {
    0%, 100% {
        stroke-dashoffset: 20;
    }
    50% {
        stroke-dashoffset: 0;
    }
}

@keyframes codePulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.benefit-card-2:hover .benefit-icon-code .icon-line-1,
.benefit-card-2:hover .benefit-icon-code .icon-line-2 {
    animation-duration: 1s;
}

/* Icono 2: Colaboración - Animación de acercamiento */
.benefit-icon-collaboration .icon-person-1 {
    transform-origin: 9px 12px;
    animation: personFloat 3s ease-in-out infinite;
}

.benefit-icon-collaboration .icon-person-2 {
    transform-origin: 19px 12px;
    animation: personFloat 3s ease-in-out infinite 0.5s;
}

@keyframes personFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.05);
    }
}

.benefit-card-2:hover .benefit-icon-collaboration .icon-person-1,
.benefit-card-2:hover .benefit-icon-collaboration .icon-person-2 {
    animation-duration: 1.5s;
}

/* Icono 3: Velocidad - Animación de rotación del reloj */
.benefit-icon-speed .icon-circle {
    transform-origin: center;
}

.benefit-icon-speed .icon-hand {
    transform-origin: 12px 12px;
    animation: clockHand 3s linear infinite;
}

.benefit-icon-speed .icon-tick {
    transform-origin: 12px 12px;
    animation: clockTick 1s ease-in-out infinite;
}

@keyframes clockHand {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes clockTick {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.benefit-card-2:hover .benefit-icon-speed .icon-hand {
    animation-duration: 1.5s;
}

/* Icono 4: Escudo - Animación de protección */
.benefit-icon-shield .icon-shield {
    transform-origin: center;
    animation: shieldPulse 2s ease-in-out infinite;
}

.benefit-icon-shield .icon-check {
    stroke-dasharray: 10;
    stroke-dashoffset: 10;
    animation: checkDraw 2s ease-in-out infinite 0.5s;
}

@keyframes shieldPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes checkDraw {
    0% {
        stroke-dashoffset: 10;
    }
    50%, 100% {
        stroke-dashoffset: 0;
    }
}

.benefit-card-2:hover .benefit-icon-shield .icon-shield {
    animation-duration: 1s;
}

/* Icono 5: Cerebro/IA - Animación de conexiones neuronales */
.benefit-icon-brain .icon-brain-outline {
    animation: brainPulse 2s ease-in-out infinite;
}

.benefit-icon-brain .icon-connections {
    animation: connectionsPulse 2s ease-in-out infinite;
}

.benefit-icon-brain .icon-node-1 {
    animation: nodePulse 1.5s ease-in-out infinite;
}

.benefit-icon-brain .icon-node-2 {
    animation: nodePulse 1.5s ease-in-out infinite 0.2s;
}

.benefit-icon-brain .icon-node-3 {
    animation: nodePulse 1.5s ease-in-out infinite 0.4s;
}

.benefit-icon-brain .icon-node-4 {
    animation: nodePulse 1.5s ease-in-out infinite 0.6s;
}

.benefit-icon-brain .icon-node-5 {
    animation: nodePulse 1.5s ease-in-out infinite 0.8s;
}

@keyframes brainPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.03);
    }
}

@keyframes connectionsPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes nodePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.benefit-card-2:hover .benefit-icon-brain .icon-node-1,
.benefit-card-2:hover .benefit-icon-brain .icon-node-2,
.benefit-card-2:hover .benefit-icon-brain .icon-node-3,
.benefit-card-2:hover .benefit-icon-brain .icon-node-4,
.benefit-card-2:hover .benefit-icon-brain .icon-node-5 {
    animation-duration: 0.8s;
}

/* Icono 6: Gráfico - Animación de crecimiento */
.benefit-icon-chart .icon-line {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: chartDraw 2s ease-in-out infinite;
}

.benefit-icon-chart .icon-point-1 {
    animation: pointPulse 2s ease-in-out infinite;
}

.benefit-icon-chart .icon-point-2 {
    animation: pointPulse 2s ease-in-out infinite 0.2s;
}

.benefit-icon-chart .icon-point-3 {
    animation: pointPulse 2s ease-in-out infinite 0.4s;
}

.benefit-icon-chart .icon-point-4 {
    animation: pointPulse 2s ease-in-out infinite 0.6s;
}

@keyframes chartDraw {
    0% {
        stroke-dashoffset: 30;
    }
    50%, 100% {
        stroke-dashoffset: 0;
    }
}

@keyframes pointPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

.benefit-card-2:hover .benefit-icon-chart .icon-line {
    animation-duration: 1s;
}

/* Icono Check/Círculo - Animación de validación */
.benefit-icon-check .icon-circle {
    transform-origin: center;
    animation: circlePulse 2s ease-in-out infinite;
}

.benefit-icon-check .icon-check-mark {
    stroke-dasharray: 12;
    stroke-dashoffset: 12;
    animation: checkMarkDraw 2s ease-in-out infinite 0.5s;
}

@keyframes circlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes checkMarkDraw {
    0% {
        stroke-dashoffset: 12;
    }
    50%, 100% {
        stroke-dashoffset: 0;
    }
}

.benefit-card-2:hover .benefit-icon-check .icon-circle {
    animation-duration: 1s;
}

.benefit-card-2:hover .benefit-icon-check .icon-check-mark {
    animation-duration: 1s;
}

/* Desactivar animaciones si el usuario prefiere movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .benefit-icon-code .icon-line-1,
    .benefit-icon-code .icon-line-2,
    .benefit-icon-code .icon-line-3,
    .benefit-icon-collaboration .icon-person-1,
    .benefit-icon-collaboration .icon-person-2,
    .benefit-icon-speed .icon-hand,
    .benefit-icon-speed .icon-tick,
    .benefit-icon-shield .icon-shield,
    .benefit-icon-shield .icon-check,
    .benefit-icon-brain .icon-brain-outline,
    .benefit-icon-brain .icon-connections,
    .benefit-icon-brain .icon-node-1,
    .benefit-icon-brain .icon-node-2,
    .benefit-icon-brain .icon-node-3,
    .benefit-icon-brain .icon-node-4,
    .benefit-icon-brain .icon-node-5,
    .benefit-icon-chart .icon-line,
    .benefit-icon-chart .icon-point-1,
    .benefit-icon-chart .icon-point-2,
    .benefit-icon-chart .icon-point-3,
    .benefit-icon-chart .icon-point-4,
    .benefit-icon-check .icon-circle,
    .benefit-icon-check .icon-check-mark {
        animation: none !important;
    }
}

.benefit-card-2:nth-child(1) .benefit-icon {
    color: var(--accent-teal);
}

.benefit-card-2:nth-child(2) .benefit-icon {
    color: var(--primary-blue);
}

.benefit-card-2:nth-child(3) .benefit-icon {
    color: #7C4DFF;
}

.benefit-card-2:nth-child(4) .benefit-icon {
    color: var(--accent-teal);
}

.benefit-card-2:nth-child(5) .benefit-icon {
    color: var(--primary-blue);
}

.benefit-card-2:nth-child(6) .benefit-icon {
    color: #7C4DFF;
}

/* ============================================
   Process Section 3 (No interactive, left to right animation)
   ============================================ */
.process-section-3 {
    padding: var(--spacing-xl) 0;
    background: #F5F8FB;
}

.process-steps-container-wrapper {
    position: relative;
    margin-top: 0.25rem;
    padding-top: 0;
    padding-bottom: 0;
}

.process-connection-line {
    position: absolute;
    top: calc(16px - 32px);
    left: 0;
    right: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    z-index: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateY(-50%);
    /* Sin transición para sincronización precisa con JavaScript */
    /* Centrada verticalmente con los números:
       - Tarjeta margin-top: 16px
       - Número top: -32px con translateY(-50%), centro a -32px desde tarjeta
       - Desde wrapper: 16px - 32px = -16px
       - Línea en top: calc(16px - 32px) = -16px, alineada con el centro de los números
    */
}

.process-section-3 .process-steps-container {
    position: relative;
    z-index: 1;
}

.process-step-card-3 {
    background: white;
    border: 1px solid rgba(11, 61, 145, 0.08);
    border-radius: 12px;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.1), 0 1px 3px rgba(11, 61, 145, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 16px;
    cursor: pointer;
}

/* Efecto de brillo sutil al hover (solo desktop) */
@media (min-width: 769px) {
    /* Efecto de brillo desactivado para evitar blur */
    .process-step-card-3::before {
        display: none;
    }
    
    /* Borde animado desactivado para evitar blur */
    .process-step-card-3::after {
        display: none;
    }
}

/* Mejora de hover con elevación y transformación sutil (solo desktop) */
@media (min-width: 769px) {
    .process-step-card-3:hover {
        transform: translateY(-2px) translateX(2px);
        box-shadow: 0 8px 24px rgba(11, 61, 145, 0.12), 0 4px 8px rgba(11, 61, 145, 0.08);
        border-color: rgba(11, 61, 145, 0.15);
        background: white;
    }
    
    /* Estado activo/focus para accesibilidad */
    .process-step-card-3:focus-within {
        outline: 2px solid var(--accent-teal);
        outline-offset: 2px;
        transform: translateY(-2px) translateX(2px);
        box-shadow: 0 8px 24px rgba(11, 61, 145, 0.12), 0 4px 8px rgba(11, 61, 145, 0.08);
    }
    
    /* Efecto en el número al hover */
    .process-step-card-3:hover .process-step-number-3 {
        transform: translateX(-50%) translateY(-50%) scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 181, 166, 0.4);
    }
    
    .process-step-card-3:nth-child(2):hover .process-step-number-3 {
        box-shadow: 0 4px 12px rgba(11, 61, 145, 0.4);
    }
    
    .process-step-card-3:nth-child(3):hover .process-step-number-3 {
        box-shadow: 0 4px 12px rgba(124, 77, 255, 0.4);
    }
    
    .process-step-card-3:nth-child(4):hover .process-step-number-3 {
        box-shadow: 0 4px 12px rgba(0, 181, 166, 0.4);
    }
    
    /* Efecto en el header al hover */
    .process-step-card-3:hover .process-step-header {
        transform: translateX(2px);
    }
    
    .process-step-card-3 .process-step-header {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Cambio de color en títulos al hover (de azul primario a teal) */
    .process-step-card-3:hover .process-step-header h3 {
        color: var(--accent-teal);
    }
    
    .process-step-card-3 .process-step-header h3 {
        transition: color 0.3s ease;
    }
    
    /* Mantener color normal en descripción (sin cambios en hover) */
    .process-step-card-3 .process-step-description p {
        transition: color 0.3s ease;
    }
}

.process-step-number-3 {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E0F7F5;
    color: var(--accent-teal);
    border-radius: 8px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 181, 166, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-card-3:nth-child(2) .process-step-number-3 {
    color: var(--primary-blue);
    background: #E3EBF5;
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.3);
}

.process-step-card-3:nth-child(3) .process-step-number-3 {
    color: #7C4DFF;
    background: #EDE7FF;
    box-shadow: 0 2px 8px rgba(124, 77, 255, 0.3);
}

.process-step-card-3:nth-child(4) .process-step-number-3 {
    color: var(--accent-teal);
    background: #E0F7F5;
    box-shadow: 0 2px 8px rgba(0, 181, 166, 0.3);
}

.process-step-card-3.appearing .process-step-number-3 {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    color: white;
    transform: translateX(-50%) translateY(-50%) scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 181, 166, 0.4);
}

.process-step-card-3:nth-child(2).appearing .process-step-number-3 {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.4);
}

.process-step-card-3:nth-child(3).appearing .process-step-number-3 {
    background: linear-gradient(135deg, #7C4DFF 0%, var(--accent-teal) 100%);
    box-shadow: 0 4px 12px rgba(124, 77, 255, 0.4);
}

.process-step-card-3:nth-child(4).appearing .process-step-number-3 {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    box-shadow: 0 4px 12px rgba(0, 181, 166, 0.4);
}

.process-step-card-3 .process-step-header {
    padding: 12px 16px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-step-card-3 .process-step-header h3 {
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.process-step-card-3 .process-step-description {
    max-height: 500px;
    opacity: 1;
    padding: 0 16px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.process-step-card-3.appearing {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 181, 166, 0.12), 0 2px 6px rgba(0, 181, 166, 0.08);
    border-color: rgba(0, 181, 166, 0.3);
}

.process-step-card-3.appearing .process-step-header h3 {
    color: var(--primary-blue);
}

/* Números eliminados de dentro de las tarjetas - ahora están arriba como puntos de parada */
.process-step-card-3 .process-step-number {
    display: none;
}

/* ============================================
   Challenge Section 2 (Adapted style)
   ============================================ */
.challenge-2 {
    padding: var(--spacing-xl) 0;
    background: white;
    margin-left: 0;
    margin-right: 0;
}


/* Layout de 2 columnas */
.challenge-2-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Columna izquierda */
.challenge-2-left-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.challenge-2-header {
    text-align: left;
    max-width: 100%;
    margin: 0 0 8px 0;
}

.challenge-2-header .section-title {
    font-weight: 400;
    text-align: left;
    margin-bottom: 32px;
    display: block;
}

.challenge-2-header .section-title::after {
    left: 0;
    transform: translateX(0);
}

.challenge-2-header .section-subtitle {
    margin: var(--spacing-md) 0 0 0;
}


.challenge-2-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

/* Subclaim y Riesgos en dos columnas */
.challenge-2-subclaim-risks {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-top: 0px;
    margin-bottom: 64px;
}

/* Challenge 2 Stats - Estilo burbujas en vertical */
.challenge-2-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
}

.challenge-2-stat-item {
    text-align: left;
    background: white;
    border: 2px solid rgba(11, 61, 145, 0.1);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 181, 166, 0.15), 0 2px 8px rgba(0, 181, 166, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-height: 110px;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.challenge-2-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 181, 166, 0.1), transparent);
    transition: left 0.6s ease;
}

.challenge-2-stat-item:hover::before {
    left: 100%;
}

.challenge-2-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 181, 166, 0.25), 0 4px 12px rgba(0, 181, 166, 0.15);
    border-color: rgba(0, 181, 166, 0.3);
}

.challenge-2-stat-item:first-child {
    margin-left: 0;
}

.challenge-2-stat-number {
    font-family: var(--font-poppins);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    color: var(--accent-teal);
    transition: transform 0.3s ease, color 0.3s ease;
}

.challenge-2-stat-item:hover .challenge-2-stat-number {
    transform: scale(1.1);
    color: var(--primary-blue);
}

.challenge-2-stat-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.challenge-2-stat-source {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.25rem;
}

/* Challenge 2 Subclaim */
.challenge-2-subclaim {
    background: linear-gradient(100deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.02) 100%);
    padding: 16px 20px;
    border-radius: 16px;
    border-left: 4px solid #ef4444;
    border-image: none;
    height: 100%;
    vertical-align: middle;
}

.challenge-2-subclaim p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    margin-bottom: 16px;
    margin-top: 0;
}

.challenge-2-subclaim p:last-child {
    margin-bottom: 16px;
    font-weight: 500;
}

/* Challenge 2 Risks */
.challenge-2-risks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.challenge-2-risk-card {
    background: white;
    border: 1px solid rgba(11, 61, 145, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.1), 0 1px 3px rgba(11, 61, 145, 0.08);
    backdrop-filter: blur(10px);
    height: fit-content;
    margin: 0;
    -webkit-tap-highlight-color: rgba(0, 181, 166, 0.2);
}

.challenge-2-risk-card::before {
    display: none;
}

.challenge-2-risk-card::after {
    display: none;
}

.challenge-2-risk-card:hover {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%) !important;
    box-shadow: 0 8px 24px rgba(0, 181, 166, 0.3);
    transform: translateY(-2px);
    border-color: transparent;
}

.challenge-2-risk-card:hover::after {
    display: none;
}

.challenge-2-risk-card.active {
    background: white;
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.1), 0 1px 3px rgba(11, 61, 145, 0.08);
    border-color: rgba(11, 61, 145, 0.08);
    transform: none;
}

.challenge-2-risk-card.active::before {
    display: none;
}

.challenge-2-risk-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    position: relative;
    height: 70px;
    min-height: 32px;
    vertical-align: middle;
}

.challenge-2-risk-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
    color: var(--accent-teal);
    transition: all 0.3s ease;
    position: relative;
    align-self: center;
}

.challenge-2-risk-card:nth-child(1) .challenge-2-risk-icon {
    color: var(--accent-teal);
}

.challenge-2-risk-card:nth-child(2) .challenge-2-risk-icon {
    color: var(--primary-blue);
}

.challenge-2-risk-card:nth-child(3) .challenge-2-risk-icon {
    color: #7C4DFF;
}

.challenge-2-risk-card:nth-child(4) .challenge-2-risk-icon {
    color: var(--accent-teal);
}

.challenge-2-risk-card:nth-child(5) .challenge-2-risk-icon {
    color: var(--primary-blue);
}

.challenge-2-risk-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.challenge-2-risk-card:hover .challenge-2-risk-icon {
    background: white !important;
}

.challenge-2-risk-card:nth-child(1):hover .challenge-2-risk-icon {
    color: var(--accent-teal) !important;
}

.challenge-2-risk-card:nth-child(1):hover .challenge-2-risk-icon svg {
    color: var(--accent-teal) !important;
}

.challenge-2-risk-card:nth-child(2):hover .challenge-2-risk-icon {
    color: var(--primary-blue) !important;
}

.challenge-2-risk-card:nth-child(2):hover .challenge-2-risk-icon svg {
    color: var(--primary-blue) !important;
}

.challenge-2-risk-card:nth-child(3):hover .challenge-2-risk-icon {
    color: #7C4DFF !important;
}

.challenge-2-risk-card:nth-child(3):hover .challenge-2-risk-icon svg {
    color: #7C4DFF !important;
}

.challenge-2-risk-card:nth-child(4):hover .challenge-2-risk-icon {
    color: var(--accent-teal) !important;
}

.challenge-2-risk-card:nth-child(4):hover .challenge-2-risk-icon svg {
    color: var(--accent-teal) !important;
}

.challenge-2-risk-card:nth-child(5):hover .challenge-2-risk-icon {
    color: var(--primary-blue) !important;
}

.challenge-2-risk-card:nth-child(5):hover .challenge-2-risk-icon svg {
    color: var(--primary-blue) !important;
}

.challenge-2-risk-card.active .challenge-2-risk-icon {
    background: transparent;
    color: var(--accent-teal);
    transform: none;
    transform-origin: center center;
}

.challenge-2-risk-card.active .challenge-2-risk-icon svg {
    color: var(--accent-teal);
}

.challenge-2-risk-header h3 {
    flex: 1;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 32px;
    transition: color 0.3s ease;
    align-self: center;
    padding: 0;
    min-height: 32px;
    height: 32px;
}

.challenge-2-risk-header h3 strong {
    display: inline;
    line-height: inherit;
}

.challenge-2-risk-card:hover .challenge-2-risk-header h3 {
    color: white;
}

.challenge-2-risk-card.active .challenge-2-risk-header h3 {
    color: var(--text-dark);
}

.challenge-2-risk-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
}

.challenge-2-risk-arrow svg {
    width: 20px;
    height: 20px;
}

.challenge-2-risk-card:hover .challenge-2-risk-arrow {
    color: white;
}

.challenge-2-risk-card.active .challenge-2-risk-arrow {
    color: var(--accent-teal);
    transform: rotate(90deg);
}

.challenge-2-risk-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1rem;
}

.challenge-2-risk-card.active .challenge-2-risk-description {
    max-height: 500px;
    opacity: 1;
    padding: 0 1rem 0.75rem;
}

.challenge-2-risk-card:hover .challenge-2-risk-description {
    max-height: 500px;
    opacity: 1;
    padding: 0 1rem 0.75rem;
}

.challenge-2-risk-description p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    margin-bottom: 0px;
    padding-top: 0.5rem;
}

.challenge-2-risk-card:hover .challenge-2-risk-description p {
    color: rgba(255, 255, 255, 0.9);
}

/* Challenge 2 Insight - Tarjetas dentro del contenedor con fondo gradiente */
.challenge-2-insight-content {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    border-radius: 20px;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    box-shadow: 0 12px 48px rgba(0, 181, 166, 0.3);
    width: 100%;
    margin-top: var(--spacing-xl);
}

.challenge-2-insight-header {
    margin-bottom: var(--spacing-lg);
}

.challenge-2-insight-content h3 {
    font-family: var(--font-poppins);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
    margin-top: 0;
}

.challenge-2-insight-content p {
    font-family: var(--font-inter);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Columna derecha */
.challenge-2-right-column {
    display: flex;
    flex-direction: column;
}

/* Grid de tarjetas en vertical */
.challenge-2-insight-content .challenge-2-risks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    margin-top: 0;
}

/* Asegurar que las tarjetas dentro del insight mantengan la estética de PROYECTOS */
.challenge-2-insight-content .challenge-2-risk-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    min-height: auto;
    align-items: stretch;
    overflow: hidden;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.challenge-2-insight-content .challenge-2-risk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.challenge-2-insight-content .challenge-2-risk-card:hover {
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.4);
}

.challenge-2-insight-content .challenge-2-risk-card:hover::before {
    transform: scaleX(1);
}

.challenge-2-insight-content .challenge-2-risk-card.active {
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.challenge-2-insight-content .challenge-2-risk-card.active::before {
    transform: scaleX(1);
}

.challenge-2-insight-content .challenge-2-risk-card:hover .challenge-2-risk-header h3 {
    color: var(--text-dark);
}

.challenge-2-insight-content .challenge-2-risk-card:hover .challenge-2-risk-icon {
    background: rgba(255, 255, 255, 0.2) !important;
}

.challenge-2-insight-content .challenge-2-risk-card:nth-child(1):hover .challenge-2-risk-icon {
    color: var(--accent-teal) !important;
    background: linear-gradient(135deg, rgba(0, 181, 166, 0.2) 0%, rgba(0, 181, 166, 0.1) 100%) !important;
}

.challenge-2-insight-content .challenge-2-risk-card:nth-child(1):hover .challenge-2-risk-icon svg {
    color: var(--accent-teal) !important;
}

.challenge-2-insight-content .challenge-2-risk-card:nth-child(2):hover .challenge-2-risk-icon {
    color: var(--primary-blue) !important;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.2) 0%, rgba(11, 61, 145, 0.1) 100%) !important;
}

.challenge-2-insight-content .challenge-2-risk-card:nth-child(2):hover .challenge-2-risk-icon svg {
    color: var(--primary-blue) !important;
}

.challenge-2-insight-content .challenge-2-risk-card:nth-child(3):hover .challenge-2-risk-icon {
    color: #7C4DFF !important;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.2) 0%, rgba(124, 77, 255, 0.1) 100%) !important;
}

.challenge-2-insight-content .challenge-2-risk-card:nth-child(3):hover .challenge-2-risk-icon svg {
    color: #7C4DFF !important;
}

.challenge-2-insight-content .challenge-2-risk-card:nth-child(4):hover .challenge-2-risk-icon {
    color: var(--primary-blue) !important;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.2) 0%, rgba(11, 61, 145, 0.1) 100%) !important;
}

.challenge-2-insight-content .challenge-2-risk-card:nth-child(4):hover .challenge-2-risk-icon svg {
    color: var(--primary-blue) !important;
}

.challenge-2-insight-content .challenge-2-risk-card:hover .challenge-2-risk-description p,
.challenge-2-insight-content .challenge-2-risk-card.active .challenge-2-risk-description p {
    color: var(--text-dark);
}

.challenge-2-insight-content .challenge-2-risk-card.active {
    background: white;
}

.challenge-2-insight-content .challenge-2-risk-header {
    flex: 0 0 auto;
    padding: 1.25rem 1.5rem;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.challenge-2-insight-content .challenge-2-risk-card:hover .challenge-2-risk-header {
    padding-left: 1.75rem;
}

.challenge-2-insight-content .challenge-2-risk-title-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.challenge-2-insight-content .challenge-2-risk-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background: linear-gradient(135deg, rgba(0, 181, 166, 0.1) 0%, rgba(11, 61, 145, 0.1) 100%);
    border-radius: 12px;
    color: var(--accent-teal);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
    position: relative;
}

.challenge-2-insight-content .challenge-2-risk-card:hover .challenge-2-risk-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 181, 166, 0.15) 0%, rgba(11, 61, 145, 0.15) 100%);
    box-shadow: 0 4px 12px rgba(0, 181, 166, 0.2);
}

.challenge-2-insight-content .challenge-2-risk-card.active .challenge-2-risk-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(0, 181, 166, 0.15) 0%, rgba(11, 61, 145, 0.15) 100%);
}

.challenge-2-insight-content .challenge-2-risk-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.challenge-2-insight-content .challenge-2-risk-card:nth-child(1) .challenge-2-risk-icon {
    color: var(--accent-teal);
}

.challenge-2-insight-content .challenge-2-risk-card:nth-child(2) .challenge-2-risk-icon {
    color: var(--primary-blue);
}

.challenge-2-insight-content .challenge-2-risk-card:nth-child(3) .challenge-2-risk-icon {
    color: #7C4DFF;
}

.challenge-2-insight-content .challenge-2-risk-card:nth-child(4) .challenge-2-risk-icon {
    color: var(--primary-blue);
}

.challenge-2-insight-content .challenge-2-risk-header h3 {
    color: var(--text-dark);
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    display: block;
    word-wrap: normal;
    overflow-wrap: normal;
    hyphens: none;
    flex: 1;
    min-width: 0;
    white-space: normal;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.challenge-2-insight-content .challenge-2-risk-card:hover .challenge-2-risk-header h3 {
    color: var(--primary-blue);
}

.challenge-2-insight-content .challenge-2-risk-card.active .challenge-2-risk-header h3 {
    color: var(--text-dark);
}

.challenge-2-insight-content .challenge-2-risk-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.challenge-2-insight-content .challenge-2-risk-card.active .challenge-2-risk-description {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 0 1.5rem 1.25rem;
}

.challenge-2-insight-content .challenge-2-risk-description p {
    color: var(--text-secondary);
    font-family: var(--font-inter);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding-top: 0.75rem;
    transition: color 0.3s ease;
}

.challenge-2-insight-content .challenge-2-risk-description p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.challenge-2-insight-content .challenge-2-risk-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
}

.challenge-2-insight-content .challenge-2-risk-arrow svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.challenge-2-insight-content .challenge-2-risk-card:hover .challenge-2-risk-arrow {
    color: var(--accent-teal);
    background: rgba(0, 181, 166, 0.1);
    transform: scale(1.1);
}

.challenge-2-insight-content .challenge-2-risk-card.active .challenge-2-risk-arrow {
    color: var(--accent-teal);
    background: rgba(0, 181, 166, 0.15);
    transform: rotate(90deg) scale(1.1);
}

.challenge-2-insight-solution {
    font-weight: 600;
    font-size: 15px;
    color: white;
    padding-top: var(--spacing-md);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: var(--spacing-md);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: var(--spacing-xl) 0;
    background: #FFFFFF;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: stretch;
}

.services-header-left {
    position: static;
    width: 100%;
    max-width: 100%;
}

.services-header-left .section-title {
    font-weight: 400;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: stretch;
}

/* Ajuste para tablets grandes */
@media (max-width: 1200px) {
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.service-card {
    background: white;
    border: 1px solid rgba(11, 61, 145, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.1), 0 1px 3px rgba(11, 61, 145, 0.08);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

/* Contenedor visual de la tarjeta */
.service-card-visual {
    position: relative;
    width: 100%;
    padding: 1.25rem 1.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(245, 248, 251, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-bottom: 1px solid rgba(11, 61, 145, 0.05);
    overflow: hidden;
}

/* Mockup de dispositivo - Desktop */
.device-mockup {
    position: relative;
    width: 100%;
    margin: 0 auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.device-mockup-desktop {
    aspect-ratio: 16 / 10;
    max-width: 100%;
    width: 100%;
}

/* Pantalla del dispositivo */
.device-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: 
        inset 0 0 0 2px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contenido de la pantalla */
.device-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.case-study-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    display: block;
    opacity: 0;
    animation: imageFadeIn 0.6s ease forwards;
}

@keyframes imageFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.case-study-image.loaded {
    opacity: 1;
}

/* Frame del dispositivo (borde) */
.device-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #2a2a2a;
    border-radius: 8px 8px 0 0;
    pointer-events: none;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Base del ordenador (solo desktop) */
.device-base {
    position: relative;
    width: 100%;
    height: 8px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 0 0 4px 4px;
    margin-top: -1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.device-base::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 4px;
    background: #0a0a0a;
    border-radius: 2px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Mockup móvil */
.device-mockup-mobile {
    aspect-ratio: 9 / 16;
    max-width: 100%;
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
}

.device-mockup-mobile .device-screen {
    border-radius: 20px;
    box-shadow: 
        inset 0 0 0 3px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

.device-mockup-mobile .device-frame {
    border: 4px solid #1a1a1a;
    border-radius: 20px;
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Notch para móvil (opcional) */
.device-mockup-mobile .device-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Efectos hover en la tarjeta */
.service-card:hover .device-mockup {
    transform: translateY(-4px) scale(1.02);
}

.service-card:hover .case-study-image {
    transform: scale(1.05);
}

.service-card:hover .device-screen {
    box-shadow: 
        inset 0 0 0 2px rgba(0, 181, 166, 0.3),
        0 8px 24px rgba(0, 181, 166, 0.2);
}

/* Efecto de brillo sutil en la pantalla al hover */
.service-card:hover .device-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    animation: screenShine 1.5s ease-in-out;
    pointer-events: none;
    z-index: 5;
}

@keyframes screenShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Efecto de partículas tecnológicas (solo desktop) */
@media (min-width: 769px) {
    .service-card:hover .device-screen::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(0, 181, 166, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(11, 61, 145, 0.1) 0%, transparent 50%);
        animation: particleGlow 2s ease-in-out infinite;
        pointer-events: none;
        z-index: 1;
    }
    
    @keyframes particleGlow {
        0%, 100% {
            opacity: 0.5;
        }
        50% {
            opacity: 0.8;
        }
    }
}

/* Efecto de resplandor tecnológico */
.service-card:hover .device-frame {
    border-color: rgba(0, 181, 166, 0.4);
    box-shadow: 
        inset 0 1px 0 rgba(0, 181, 166, 0.2),
        0 0 20px rgba(0, 181, 166, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Placeholder para imágenes faltantes */
.case-study-image[src*="placeholder"],
.case-study-image:not([src]),
img[alt*="placeholder"] {
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.08) 0%, rgba(0, 181, 166, 0.08) 50%, rgba(11, 61, 145, 0.08) 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 200px;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.case-study-image[src*="placeholder"]::before,
.case-study-image:not([src])::before,
img[alt*="placeholder"]::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(11, 61, 145, 0.2);
    border-top-color: var(--accent-teal);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.case-study-image[src*="placeholder"]::after,
.case-study-image:not([src])::after,
img[alt*="placeholder"]::after {
    content: 'Caso de uso';
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgba(11, 61, 145, 0.5);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

/* Manejo de errores de carga de imagen */
.case-study-image[onerror] {
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.08) 0%, rgba(0, 181, 166, 0.08) 100%);
}

.service-card:hover {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%) !important;
    box-shadow: 0 8px 24px rgba(0, 181, 166, 0.3);
    transform: translateY(-2px);
    border-color: transparent;
}

.service-card:hover .service-card-visual {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-card-header h3 {
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: white !important;
}

.service-card:nth-child(1):hover .service-icon {
    color: var(--accent-teal) !important;
    background: white !important;
}

.service-card:nth-child(1):hover .service-icon svg {
    color: var(--accent-teal) !important;
}

.service-card:nth-child(2):hover .service-icon {
    color: var(--primary-blue) !important;
    background: white !important;
}

.service-card:nth-child(2):hover .service-icon svg {
    color: var(--primary-blue) !important;
}

.service-card:nth-child(3):hover .service-icon {
    color: #7C4DFF !important;
    background: white !important;
}

.service-card:nth-child(3):hover .service-icon svg {
    color: #7C4DFF !important;
}

.service-card:nth-child(4):hover .service-icon {
    color: var(--accent-teal) !important;
    background: white !important;
}

.service-card:nth-child(4):hover .service-icon svg {
    color: var(--accent-teal) !important;
}

.service-card:hover .service-card-description p {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.appearing {
    background: linear-gradient(135deg, rgba(0, 181, 166, 0.12) 0%, rgba(11, 61, 145, 0.1) 100%);
    box-shadow: 0 6px 16px rgba(0, 181, 166, 0.15), 0 2px 8px rgba(0, 181, 166, 0.1);
    border-color: rgba(0, 181, 166, 0.3);
    transform: scale(1.02);
}

.service-card.appearing .service-card-header h3 {
    color: var(--primary-blue);
}



.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4) {
    background: white;
    border-color: rgba(11, 61, 145, 0.1);
}

.service-card:nth-child(1):hover,
.service-card:nth-child(2):hover,
.service-card:nth-child(3):hover,
.service-card:nth-child(4):hover {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%) !important;
}


.service-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1rem 0.75rem;
    position: relative;
    flex-shrink: 0;
    flex-direction: row;
}


.service-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
    color: var(--accent-teal);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: scale(1);
}

/* Dinamismo igual que iconos de industrias */
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: white !important;
}

/* Efecto de brillo sutil en el icono al hover (mantener para efecto adicional) */
.service-card:hover .service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    animation: iconGlow 0.6s ease-out forwards;
}

@keyframes iconGlow {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

/* SVG del icono - transición suave */
.service-icon svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

/* Efecto de pulso desactivado para mantener consistencia con iconos de industrias */
@media (min-width: 769px) {
    .service-card:not(:hover) .service-icon {
        animation: none;
    }
}

.service-card:nth-child(1) .service-icon {
    color: var(--accent-teal);
}

.service-card:nth-child(2) .service-icon {
    color: var(--primary-blue);
}

.service-card:nth-child(3) .service-icon {
    color: #7C4DFF;
}

.service-card:nth-child(4) .service-icon {
    color: var(--accent-teal);
}

.service-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}


.service-card-header h3 {
    flex: 1;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}


.service-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-arrow svg {
    width: 20px;
    height: 20px;
}


.service-card-description {
    max-height: 500px;
    opacity: 1;
    padding: 0 1rem 0.75rem;
}

.service-card-description p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    padding-top: 0.5rem;
    transition: color 0.3s ease;
}

/* Mejorar legibilidad de texto en negrita dentro de descripciones */
.service-card-description p strong {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.service-card:hover .service-card-description p strong {
    color: rgba(255, 255, 255, 1);
}

/* Indicador "Ver más" en tarjetas de proyectos */
.service-card-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(11, 61, 145, 0.08);
    transition: all 0.3s ease;
}

.service-card-cta-text {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-teal);
    transition: color 0.3s ease;
}

.service-card-cta-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-teal);
    transition: all 0.3s ease;
    transform: translateX(0);
}

/* Efecto hover en el indicador "Ver más" */
.service-card:hover .service-card-cta {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-card-cta-text {
    color: white;
}

.service-card:hover .service-card-cta-icon {
    color: white;
    transform: translateX(4px);
}

/* Efecto de gradiente sutil en el borde de la tarjeta (solo desktop) */
@media (min-width: 769px) {
    .service-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 12px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(0, 181, 166, 0.1), rgba(11, 61, 145, 0.1));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }
    
    .service-card:hover::after,
    .service-card.keyboard-focus::after {
        opacity: 1;
    }
}

/* Mejorar accesibilidad: estilos para navegación por teclado */
.service-card:focus-visible {
    outline: 2px solid var(--accent-teal);
    outline-offset: 2px;
    border-radius: 12px;
}

.service-card.keyboard-focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 181, 166, 0.2);
}

/* ============================================
   Solution Modal
   ============================================ */
.solution-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.solution-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.solution-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 36, 0.85);
    backdrop-filter: blur(8px);
}

.solution-modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

/* Aumentar ancho máximo cuando es layout móvil */
.solution-modal-container.solution-modal-container-mobile {
    max-width: 1200px;
}

.solution-modal[aria-hidden="false"] .solution-modal-container {
    transform: scale(1) translateY(0);
}

.solution-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.solution-modal-close:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.solution-modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--text-dark);
}

.solution-modal-content {
    padding: 2.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Layout de dos columnas para modal móvil */
.solution-modal-content.solution-modal-mobile-layout {
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
    padding-top: 2rem;
}

.solution-modal-video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-modal-content.solution-modal-mobile-layout .solution-modal-video-container {
    width: auto;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.solution-modal-right-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.solution-modal-content.solution-modal-mobile-layout .solution-modal-right-content {
    min-width: 0;
    padding-top: 88px;
    align-self: flex-start;
    gap: 1.75rem;
}

/* Marco de ordenador Mac */
.mac-frame {
    width: 100%;
    max-width: 800px;
    position: relative;
}

.mac-frame-top {
    width: 100%;
    height: 28px;
    background: linear-gradient(180deg, #e8e8e8 0%, #d0d0d0 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.mac-frame-camera {
    width: 6px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.mac-frame-screen {
    width: 100%;
    background: #1a1a1a;
    border-left: 2px solid #2a2a2a;
    border-right: 2px solid #2a2a2a;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-placeholder {
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 181, 166, 0.1) 0%, rgba(11, 61, 145, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-family: var(--font-inter);
    font-size: 16px;
}

.mac-frame-screen .video-placeholder {
    aspect-ratio: 16/9;
    border-radius: 0;
}

.mobile-frame-screen .video-placeholder {
    aspect-ratio: 9/19.5;
    border-radius: 44px;
}

.mac-frame-bottom {
    width: 100%;
    height: 8px;
    background: linear-gradient(180deg, #d0d0d0 0%, #b8b8b8 100%);
    border-radius: 0 0 8px 8px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mac-frame-bottom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 4px;
    background: #0a0a0a;
    border-radius: 2px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Marco móvil para el modal */
.mobile-frame {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    position: relative;
}

/* Ajuste de dimensiones del móvil en layout de dos columnas - Dimensiones iPhone */
.solution-modal-content.solution-modal-mobile-layout .mobile-frame {
    max-width: 375px;
    width: 375px;
    margin: 0;
    flex-shrink: 0;
    align-self: flex-start;
}

.mobile-frame-screen {
    width: 100%;
    aspect-ratio: 9 / 19.5;
    background: #1a1a1a;
    border-radius: 47px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 0 0 3px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

.mobile-frame-screen .modal-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 44px;
}

/* En layout móvil, ajustar para mostrar todo el video */
.solution-modal-content.solution-modal-mobile-layout .mobile-frame {
    height: auto;
}

.solution-modal-content.solution-modal-mobile-layout .mobile-frame-screen {
    aspect-ratio: auto;
    max-height: calc(90vh - 6rem);
    height: auto;
    min-height: 600px;
}

.solution-modal-content.solution-modal-mobile-layout .mobile-frame-screen .modal-video {
    width: 100%;
    height: auto;
    max-height: calc(90vh - 6rem);
    object-fit: contain;
    display: block;
}

.mobile-frame-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid #1a1a1a;
    border-radius: 47px;
    pointer-events: none;
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Notch para móvil en el modal - Estilo iPhone */
.mobile-frame-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 126px;
    height: 37px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Badges del modal */
.solution-modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 0 0 0.5rem 0;
}

.solution-modal-content.solution-modal-mobile-layout .solution-modal-badges {
    justify-content: flex-start;
    margin: 0;
}

.solution-modal-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 181, 166, 0.1) 0%, rgba(11, 61, 145, 0.1) 100%);
    border: 1px solid rgba(0, 181, 166, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-blue);
    font-family: var(--font-inter);
    transition: all 0.3s ease;
}

.solution-modal-badge:hover {
    background: linear-gradient(135deg, rgba(0, 181, 166, 0.15) 0%, rgba(11, 61, 145, 0.15) 100%);
    border-color: rgba(0, 181, 166, 0.3);
    transform: translateY(-2px);
}

/* Texto del modal */
.solution-modal-text {
    text-align: center;
}

.solution-modal-content.solution-modal-mobile-layout .solution-modal-text {
    text-align: left;
}

.solution-modal-title {
    font-family: var(--font-poppins);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
}

.solution-modal-content.solution-modal-mobile-layout .solution-modal-title {
    margin-top: 0.5rem;
}

.solution-modal-description {
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.solution-modal-content.solution-modal-mobile-layout .solution-modal-description {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.solution-modal-description strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .solution-modal-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .solution-modal-content {
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    /* En móvil, volver a una columna incluso para app móvil */
    .solution-modal-content.solution-modal-mobile-layout {
        flex-direction: column;
    }
    
    .solution-modal-content.solution-modal-mobile-layout .mobile-frame {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .solution-modal-content.solution-modal-mobile-layout .solution-modal-badges {
        justify-content: center;
    }
    
    .solution-modal-content.solution-modal-mobile-layout .solution-modal-text {
        text-align: center;
    }
    
    .solution-modal-content.solution-modal-mobile-layout .solution-modal-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .solution-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
    }
    
    .solution-modal-close svg {
        width: 18px;
        height: 18px;
    }
    
    .solution-modal-title {
        font-size: 22px;
    }
    
    .solution-modal-description {
        font-size: 15px;
    }
    
    .mac-frame-top {
        height: 24px;
    }
    
    .mac-frame-bottom {
        height: 6px;
    }
    
    .mobile-frame {
        max-width: 240px;
    }
    
    .mobile-frame-screen {
        border-radius: 40px;
        aspect-ratio: 9 / 19.5;
    }
    
    .mobile-frame-screen::before {
        width: 100px;
        height: 30px;
        border-radius: 0 0 16px 16px;
    }
    
    .mobile-frame-frame {
        border-radius: 40px;
        border-width: 3px;
    }
    
    .solution-modal-content.solution-modal-mobile-layout .mobile-frame {
        max-width: 300px;
        width: 300px;
    }
}

/* ============================================
   Clients Carousel Section
   ============================================ */
.clients-carousel-section {
    padding: var(--spacing-xl) 0;
    background: #F5F8FB;
    overflow: hidden;
    position: relative;
}

.clients-carousel-header {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clients-carousel-header .section-badge {
    margin-bottom: var(--spacing-md);
}

.clients-carousel-header .section-title {
    font-weight: 400;
    margin-top: 0;
    display: block;
    width: 100%;
}

.clients-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.clients-carousel-track {
    display: flex;
    gap: 4rem;
    animation: scrollClients 30s linear infinite;
    will-change: transform;
}

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

.clients-carousel-slide {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid rgba(11, 61, 145, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.clients-carousel-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(11, 61, 145, 0.12), 0 4px 8px rgba(11, 61, 145, 0.08);
    border-color: rgba(0, 181, 166, 0.3);
}

.client-logo-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.client-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.clients-carousel-slide:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}


@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausar animación en dispositivos que prefieren movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .clients-carousel-track {
        animation: none;
    }
    
    .clients-carousel-wrapper {
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .clients-carousel-track {
        display: flex;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .clients-carousel-slide {
        width: 180px;
        height: 100px;
        padding: 1rem 1.5rem;
    }
    
    .clients-carousel-track {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .clients-carousel-section {
        padding: var(--spacing-lg) 0;
    }
    
    .clients-carousel-slide {
        width: 150px;
        height: 90px;
        padding: 1rem;
    }
    
    .clients-carousel-track {
        gap: 2rem;
    }
    
    .clients-carousel-header {
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .clients-carousel-slide {
        width: 120px;
        height: 80px;
        padding: 0.75rem;
    }
    
    .clients-carousel-track {
        gap: 1.5rem;
    }
}

/* ============================================
   Industries Section
   ============================================ */
.industries-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.industries-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.industries-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.industries-header .section-title {
    font-weight: 400;
    display: block;
}

.industries-header .section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: var(--spacing-md);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.industry-card {
    background: white;
    border: 1px solid rgba(11, 61, 145, 0.08);
    border-radius: 12px;
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.1), 0 1px 3px rgba(11, 61, 145, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    cursor: pointer;
    /* Estados iniciales para animación */
    opacity: 0;
    transform: translateY(20px);
    /* Mejora de área táctil en móvil */
    min-height: 44px;
    /* Optimización GPU */
    will-change: transform, opacity;
}

/* Pseudo-elemento para el background degradado - cambia más rápido que el texto */
.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    z-index: 0;
    pointer-events: none;
}

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

/* Asegurar que el contenido esté por encima del pseudo-elemento */
.industry-card-header,
.industry-card-description {
    position: relative;
    z-index: 1;
}


.industry-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    position: relative;
}

.industry-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
    color: var(--accent-teal);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: scale(1);
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.industry-card:hover .industry-icon {
    background: white !important;
}

.industry-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.industry-card:nth-child(1) .industry-icon {
    color: var(--accent-teal);
}

.industry-card:nth-child(2) .industry-icon {
    color: var(--primary-blue);
}

.industry-card:nth-child(3) .industry-icon {
    color: #7C4DFF;
}

.industry-card:nth-child(4) .industry-icon {
    color: var(--accent-teal);
}

.industry-card:nth-child(5) .industry-icon {
    color: var(--primary-blue);
}

.industry-card:nth-child(6) .industry-icon {
    color: #7C4DFF;
}

.industry-card:hover {
    /* El background ahora se maneja con ::before */
    background: transparent !important; /* Transparente para que se vea el ::before */
    box-shadow: 0 12px 32px rgba(0, 181, 166, 0.35), 0 4px 16px rgba(11, 61, 145, 0.2);
    transform: translateY(-4px) scale(1.02);
    border-color: transparent;
}

/* Estado activo para móvil (touch feedback) */
.industry-card:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus visible para accesibilidad */
.industry-card:focus-visible {
    outline: 2px solid var(--accent-teal);
    outline-offset: 2px;
    box-shadow: 0 8px 24px rgba(0, 181, 166, 0.3), 0 0 0 4px rgba(0, 181, 166, 0.1);
}

.industry-card:hover .industry-card-header h3 {
    color: white;
}

.industry-card:hover .industry-card-description p {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:nth-child(1):hover .industry-icon {
    color: var(--accent-teal) !important;
}

.industry-card:nth-child(1):hover .industry-icon svg {
    color: var(--accent-teal) !important;
}

.industry-card:nth-child(2):hover .industry-icon {
    color: var(--primary-blue) !important;
}

.industry-card:nth-child(2):hover .industry-icon svg {
    color: var(--primary-blue) !important;
}

.industry-card:nth-child(3):hover .industry-icon {
    color: #7C4DFF !important;
}

.industry-card:nth-child(3):hover .industry-icon svg {
    color: #7C4DFF !important;
}

.industry-card:nth-child(4):hover .industry-icon {
    color: var(--accent-teal) !important;
}

.industry-card:nth-child(4):hover .industry-icon svg {
    color: var(--accent-teal) !important;
}

.industry-card:nth-child(5):hover .industry-icon {
    color: var(--primary-blue) !important;
}

.industry-card:nth-child(5):hover .industry-icon svg {
    color: var(--primary-blue) !important;
}

.industry-card:nth-child(6):hover .industry-icon {
    color: #7C4DFF !important;
}

.industry-card:nth-child(6):hover .industry-icon svg {
    color: #7C4DFF !important;
}

.industry-card h3 {
    flex: 1;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card-description {
    max-height: 500px;
    opacity: 1;
    padding: 0 1rem 0.75rem;
    transition: opacity 0.3s ease;
}

.industry-card-description p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card-description p strong {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover .industry-card-description p strong {
    color: rgba(255, 255, 255, 0.95);
}

.industries-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
    background: var(--primary-blue);
    border-radius: 16px;
    border: 1px solid rgba(11, 61, 145, 0.1);
}

.industries-cta-text {
    font-size: 16px;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.industries-cta .btn {
    display: inline-block;
    width: auto;
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .challenge-2-layout {
        gap: var(--spacing-lg);
    }
    
    .challenge-2-insight-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .industry-card {
        /* Mejor área táctil en móvil */
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 16px;
        padding-right: 16px;
        min-height: auto;
    }
    
    .industry-card-header {
        padding: 0.875rem 1rem;
    }
    
    .industry-card-description {
        padding: 0 1rem 0.875rem;
    }
    
    /* Sin hover en móvil, solo active state */
    .industry-card::before {
        display: none; /* Desactivar el pseudo-elemento en móvil */
    }
    
    .industry-card:hover {
        transform: translateY(0) scale(1);
        background: white !important;
        box-shadow: 0 2px 8px rgba(11, 61, 145, 0.1), 0 1px 3px rgba(11, 61, 145, 0.08);
    }
    
    .industry-card:hover .industry-card-header h3 {
        color: var(--text-dark) !important;
    }
    
    .industry-card:hover .industry-card-description p {
        color: var(--text-secondary) !important;
    }
    
    .industry-card:hover .industry-card-description p strong {
        color: var(--text-dark) !important;
    }
    
    .industry-card:hover .industry-icon {
        transform: scale(1);
        background: transparent !important;
    }
    
    .industry-card:active {
        background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%) !important;
        transform: scale(0.98);
    }
    
    .industry-card:active .industry-card-header h3,
    .industry-card:active .industry-card-description p {
        color: white !important;
    }
    
    .industry-card:active .industry-card-description p strong {
        color: rgba(255, 255, 255, 0.95) !important;
    }
    
    .industries-cta {
        padding: 1.5rem;
    }
}

/* ============================================
   Process Section
   ============================================ */
.process-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.process-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.process-header-left {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.process-header-left .section-title {
    font-weight: 400;
    text-align: center;
    display: block;
}

.process-header-left .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.process-intro-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: var(--spacing-md);
    text-align: center;
}

.process-steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 0.25rem;
    align-items: stretch;
}

.process-step-card {
    background: white;
    border: 1px solid rgba(11, 61, 145, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.1), 0 1px 3px rgba(11, 61, 145, 0.08);
    backdrop-filter: blur(10px);
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(0, 181, 166, 0.4);
}

.process-step-card:hover {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    box-shadow: 0 8px 24px rgba(0, 181, 166, 0.3);
    transform: translateY(-2px);
    border-color: transparent;
}

.process-step-card:hover .process-step-number {
    background: white !important;
    color: var(--accent-teal) !important;
}

.process-step-card:hover .process-step-header h3 {
    color: white;
}

.process-step-card:hover .process-card-arrow {
    color: white;
}

.process-step-card:hover .process-step-description p {
    color: rgba(255, 255, 255, 0.9);
}

.process-step-card.active {
    border-color: var(--accent-teal);
    background: linear-gradient(135deg, rgba(0, 181, 166, 0.08) 0%, rgba(11, 61, 145, 0.08) 100%);
    box-shadow: 0 12px 32px rgba(0, 181, 166, 0.25), 0 6px 16px rgba(0, 181, 166, 0.15);
}

.process-step-card.active::before {
    height: 100%;
}

.process-step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    position: relative;
    text-align: center;
}

.process-step-number {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 18px;
    color: var(--accent-teal);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 181, 166, 0.1);
    border-radius: 8px;
}

.process-step-card:nth-child(2) .process-step-number {
    color: var(--primary-blue);
    background: rgba(11, 61, 145, 0.1);
}

.process-step-card:nth-child(3) .process-step-number {
    color: #7C4DFF;
    background: rgba(124, 77, 255, 0.1);
}

.process-step-card:nth-child(4) .process-step-number {
    color: var(--accent-teal);
    background: rgba(0, 181, 166, 0.1);
}

.process-step-card.active .process-step-number {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    color: white;
    transform: scale(1.1);
}

.process-step-card.active .process-step-header h3 {
    color: var(--text-dark);
}

.process-step-card.active .process-step-description p {
    color: var(--text-secondary);
}

.process-step-header h3 {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    text-align: center;
}

.process-step-card.active .process-step-header h3 {
    color: var(--primary-blue);
}

.process-card-arrow {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(90deg);
}

.process-card-arrow svg {
    width: 20px;
    height: 20px;
}

.process-step-card.active .process-card-arrow {
    color: var(--accent-teal);
    transform: rotate(-90deg);
}

.process-step-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1rem;
    text-align: center;
}

.process-step-card.active .process-step-description {
    max-height: 500px;
    opacity: 1;
    padding: 0 1rem 0.75rem;
}

.process-step-description p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
    text-align: center;
}

/* ============================================
   Process Timeline Section (Alternative Design)
   ============================================ */
.process-timeline-section {
    padding: var(--spacing-xl) 0;
    background: white;
    overflow: visible;
    position: relative;
}

.process-timeline-section .container {
    overflow: visible;
}

.process-timeline-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.process-timeline-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline-header .section-title {
    font-weight: 400;
    text-align: center;
    display: block;
}

.process-timeline-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.process-timeline-container {
    position: relative;
    margin-top: 3rem;
    padding: 3rem 0 2rem;
    width: 100%;
    overflow: visible;
}

/* Línea horizontal del timeline */
.process-timeline-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    z-index: 1;
}

/* Contenedor de los pasos */
.process-timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.process-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
    position: relative;
}

/* Números del timeline - con fondo que corta la línea */
.timeline-step-number {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 18px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 10px;
    color: var(--accent-teal);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
    border: 2px solid rgba(0, 181, 166, 0.2);
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.1);
}

.process-timeline-step:nth-child(1) .timeline-step-number {
    color: var(--accent-teal);
    border-color: rgba(0, 181, 166, 0.2);
}

.process-timeline-step:nth-child(2) .timeline-step-number {
    color: var(--primary-blue);
    border-color: rgba(11, 61, 145, 0.2);
}

.process-timeline-step:nth-child(3) .timeline-step-number {
    color: #7C4DFF;
    border-color: rgba(124, 77, 255, 0.2);
}

.process-timeline-step:nth-child(4) .timeline-step-number {
    color: var(--accent-teal);
    border-color: rgba(0, 181, 166, 0.2);
}

.process-timeline-step:hover .timeline-step-number,
.process-timeline-step.active .timeline-step-number {
    background: white !important;
    color: var(--accent-teal) !important;
    border-color: var(--accent-teal) !important;
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(0, 181, 166, 0.4), 0 0 0 4px var(--bg-light);
}

.timeline-step-title {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
    transition: color 0.3s ease;
}

.process-timeline-step:hover .timeline-step-title,
.process-timeline-step.active .timeline-step-title {
    color: var(--primary-blue);
}

/* Contenedor de descripciones */
.process-timeline-description-container {
    position: relative;
    margin-top: 2rem;
    width: 100%;
    min-height: 0;
    transition: min-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Descripción individual */
.process-timeline-description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(11, 61, 145, 0.15), 0 2px 8px rgba(11, 61, 145, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
    border: 1px solid rgba(0, 181, 166, 0.1);
}

.process-timeline-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(0, 181, 166, 0.4);
}

.process-timeline-description.active::before {
    height: 100%;
}

.process-timeline-description.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    box-shadow: 0 8px 32px rgba(0, 181, 166, 0.2), 0 4px 16px rgba(0, 181, 166, 0.15), 0 0 0 1px var(--accent-teal);
}

/* Flecha que apunta al número */
.timeline-description-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

.timeline-description-pointer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -12px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgba(0, 181, 166, 0.1);
    z-index: -1;
}

.process-timeline-description.active .timeline-description-pointer {
    opacity: 1;
    visibility: visible;
}

.process-timeline-description p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive para timeline */
@media (max-width: 768px) {
    .process-timeline-container {
        padding: 2rem 0 1rem;
    }
    
    .process-timeline-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .process-timeline-line {
        display: none;
    }
    
    .timeline-step-marker {
        padding: 0;
    }
    
    .timeline-step-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .process-timeline-description {
        position: relative;
        margin-bottom: 1rem;
    }
    
    .process-timeline-description-container {
        min-height: auto !important;
    }
    
    .timeline-description-pointer {
        display: none;
    }
}

.solution {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.solution-intro-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, rgba(11, 61, 145, 0.95) 100%);
    border-radius: 24px;
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    box-shadow: 0 12px 48px rgba(11, 61, 145, 0.2);
    color: white;
}

.solution-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.solution-intro-title {
    font-family: var(--font-poppins);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.solution-intro-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.solution-intro-text strong {
    color: var(--accent-teal);
    font-weight: 700;
}

/* Solution Pillars */
.solution-pillars {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

.solution-pillar {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11, 61, 145, 0.1);
    transition: var(--transition);
    border: 2px solid var(--neutral-gray);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 0;
}

.solution-pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 56px rgba(11, 61, 145, 0.2);
    border-color: var(--accent-teal);
}

.solution-pillar:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.solution-pillar:nth-child(even) .pillar-media {
    grid-column: 1;
}

.solution-pillar:nth-child(even) .pillar-header,
.solution-pillar:nth-child(even) .pillar-content {
    grid-column: 2;
}

.pillar-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--spacing-lg);
    background: var(--bg-light);
    position: relative;
    min-height: 120px;
    grid-row: 1;
    grid-column: 1;
}

.pillar-number {
    font-family: var(--font-poppins);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(11, 61, 145, 0.1);
    line-height: 1;
}

.solution-pillar:hover .pillar-number {
    color: var(--accent-teal);
}

.pillar-icon-wrapper {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 181, 166, 0.3);
}

.pillar-icon svg {
    width: 32px;
    height: 32px;
}

.pillar-media {
    width: 100%;
    height: 100%;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    grid-row: 1 / 3;
    grid-column: 2;
}

.pillar-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pillar-content {
    padding: var(--spacing-lg) var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: white;
    grid-row: 2;
    grid-column: 1;
}

.pillar-content h3 {
    font-family: var(--font-poppins);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.pillar-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.pillar-content p strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 0 0;
}

.pillar-features li {
    padding: var(--spacing-sm) 0;
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.pillar-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-teal);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Solution Process */
.solution-process {
    background: white;
    border-radius: 24px;
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    box-shadow: 0 8px 32px rgba(11, 61, 145, 0.1);
    border: 2px solid var(--neutral-gray);
}

.process-title {
    font-family: var(--font-poppins);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition);
}

.process-step:hover {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 181, 166, 0.3);
}

.process-step:hover .step-number,
.process-step:hover .step-content h4,
.process-step:hover .step-content p {
    color: white;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-sm);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: white;
    color: var(--accent-teal);
}

.step-content h4 {
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    transition: var(--transition);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.solution-process-arrow {
    font-size: 2rem;
    color: var(--accent-teal);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   Value Proposition Section
   ============================================ */
.value-proposition {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.value-highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, rgba(11, 61, 145, 0.95) 100%);
    border-radius: 24px;
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    box-shadow: 0 12px 48px rgba(11, 61, 145, 0.2);
    text-align: center;
}

.value-highlight-content {
    max-width: 900px;
    margin: 0 auto;
}

.value-highlight-title {
    font-family: var(--font-poppins);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.value-highlight-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.value-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11, 61, 145, 0.1);
    transition: var(--transition);
    border: 2px solid var(--neutral-gray);
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 56px rgba(11, 61, 145, 0.2);
    border-color: var(--accent-teal);
}

.value-card-primary {
    border-top: 5px solid var(--primary-blue);
}

.value-card-secondary {
    border-top: 5px solid var(--accent-teal);
}

.value-card-tertiary {
    border-top: 5px solid var(--accent-violet);
}

.value-card-header {
    padding: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--bg-light);
    position: relative;
}

.value-icon-wrapper {
    flex-shrink: 0;
}

.value-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.value-card-primary .value-icon {
    background: linear-gradient(135deg, var(--primary-blue), rgba(11, 61, 145, 0.8));
}

.value-card-secondary .value-icon {
    background: linear-gradient(135deg, var(--accent-teal), rgba(0, 181, 166, 0.8));
}

.value-card-tertiary .value-icon {
    background: linear-gradient(135deg, var(--accent-violet), rgba(124, 77, 255, 0.8));
}

.value-icon svg {
    width: 36px;
    height: 36px;
}

.value-percentage-wrapper {
    text-align: right;
    flex-shrink: 0;
}

.value-percentage {
    font-family: var(--font-poppins);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card-secondary .value-percentage {
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card-tertiary .value-percentage {
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-percentage-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-card-body {
    padding: var(--spacing-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.value-card h3 {
    font-family: var(--font-poppins);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.value-card p strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.value-card-secondary p strong {
    color: var(--accent-teal);
}

.value-card-tertiary p strong {
    color: var(--accent-violet);
}

.value-benefit {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-light);
    border-radius: 12px;
    margin-top: var(--spacing-sm);
    border-left: 3px solid var(--accent-teal);
}

.value-card-primary .value-benefit {
    border-left-color: var(--primary-blue);
}

.value-card-secondary .value-benefit {
    border-left-color: var(--accent-teal);
}

.value-card-tertiary .value-benefit {
    border-left-color: var(--accent-violet);
}

.benefit-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.value-benefit span:last-child {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Value CTA Box */
.value-cta-box {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    border-radius: 24px;
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    box-shadow: 0 12px 48px rgba(0, 181, 166, 0.3);
    text-align: center;
}

.value-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.value-cta-title {
    font-family: var(--font-poppins);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.value-cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: var(--spacing-xl) 0;
    background: white;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-main {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.about-intro {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: 20px;
    border-left: 5px solid var(--primary-blue);
}

.about-description {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.9;
}

.about-description:last-child {
    margin-bottom: 0;
}

.highlight-blue {
    color: var(--primary-blue);
    font-weight: 700;
    position: relative;
}

.highlight-teal {
    color: var(--accent-teal);
    font-weight: 700;
    position: relative;
}

.highlight-violet {
    color: var(--accent-violet);
    font-weight: 700;
    position: relative;
}

.about-purpose {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
    padding: var(--spacing-xl);
    border-radius: 24px;
    text-align: center;
    color: white;
    box-shadow: 0 12px 48px rgba(0, 181, 166, 0.3);
    position: relative;
    overflow: hidden;
}

.about-purpose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.purpose-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.purpose-title {
    font-family: var(--font-poppins);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.purpose-text {
    font-size: 1.375rem;
    color: white;
    font-style: italic;
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-principles {
    margin-top: var(--spacing-lg);
}

.principles-title {
    font-family: var(--font-poppins);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.principle-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(11, 61, 145, 0.08);
    transition: var(--transition);
    border: 2px solid var(--neutral-gray);
    text-align: center;
}

.principle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(11, 61, 145, 0.15);
}

.principle-card-1 {
    border-top: 5px solid var(--primary-blue);
}

.principle-card-1:hover {
    border-color: var(--primary-blue);
}

.principle-card-2 {
    border-top: 5px solid var(--accent-teal);
}

.principle-card-2:hover {
    border-color: var(--accent-teal);
}

.principle-card-3 {
    border-top: 5px solid var(--accent-violet);
}

.principle-card-3:hover {
    border-color: var(--accent-violet);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    line-height: 1;
}

.principle-card h4 {
    font-family: var(--font-poppins);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.principle-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.principle-card p strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.principle-card-2 p strong {
    color: var(--accent-teal);
}

.principle-card-3 p strong {
    color: var(--accent-violet);
}

/* ============================================
   Form Checkbox Group
   ============================================ */
.checkbox-group {
    margin: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--accent-teal);
}

.checkbox-label span {
    flex: 1;
    font-size: 14px;
}

.checkbox-label a {
    color: var(--accent-teal);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--primary-blue);
}


/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(11, 61, 145, 0.15);
    z-index: 2000;
    padding: var(--spacing-md);
    border-top: 3px solid var(--accent-teal);
}

.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h4 {
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.cookie-banner-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

.cookie-links {
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
}

.cookie-links a {
    color: var(--accent-teal);
    text-decoration: none;
}

.cookie-links a:hover {
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-text {
    background: transparent;
    color: var(--text-dark);
    border: none;
    text-decoration: underline;
}

.btn-text:hover {
    background: transparent;
    color: var(--primary-blue);
    transform: none;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #0F4093 0%, #0F1724 100%);
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-poppins);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.cta-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.contact-form {
    background: white;
    padding: 24px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: fit-content;
}

.form-group {
    margin-bottom: 16px;
    margin-top: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--neutral-gray);
    border-radius: 12px;
    font-family: var(--font-inter);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 181, 166, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
}

.form-success {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    text-align: center;
    margin-top: 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

.form-success p {
    color: var(--text-dark);
    font-size: 1.125rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    align-items: start;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.footer-email {
    margin-top: var(--spacing-sm);
}

.footer-email a {
    color: var(--accent-teal);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-email a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-social {
    margin-top: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.1);
}

.footer-social-link:hover {
    color: white;
    background: var(--accent-teal);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li:last-child {
    margin-bottom: 0;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.5;
}

.footer-column ul li a:hover {
    color: var(--accent-teal);
    transform: translateX(4px);
    padding-left: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-metrics {
        gap: 0.5rem 0.75rem;
    }
    
    .hero-metric-item {
        font-size: 0.875rem;
    }
    
    .metric-separator {
        display: none;
    }
    
    .hero-cta-text {
        font-size: 0.9375rem;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .about-description {
        font-size: 1.125rem;
    }
    
    .challenge-stats {
        grid-template-columns: 1fr;
    }
    
    .challenge-main-problem {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .problem-icon {
        font-size: 3rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .challenge-grid {
        grid-template-columns: 1fr;
    }
    
    .insight-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .insight-icon {
        font-size: 3rem;
        margin: 0 auto var(--spacing-sm);
    }
    
    .solution-pillar {
        grid-template-columns: 1fr !important;
        direction: ltr !important;
    }
    
    .solution-pillar:nth-child(even) {
        grid-template-columns: 1fr !important;
        direction: ltr !important;
    }
    
    .pillar-header {
        padding: var(--spacing-md);
    }
    
    .pillar-media {
        min-height: 300px;
    }
    
    .pillar-content {
        padding: var(--spacing-lg);
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .solution-process-arrow {
        transform: rotate(90deg);
        margin: var(--spacing-xs) 0;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .value-percentage {
        font-size: 4rem;
    }
    
    .value-highlight-title {
        font-size: 1.75rem;
    }
    
    .value-cta-title {
        font-size: 1.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column ul li a:hover {
        transform: none;
        padding-left: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: var(--spacing-md) 0;
        gap: var(--spacing-sm);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        margin-top: 0;
        padding: var(--spacing-lg) 0;
        min-height: 500px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-column-right {
        align-items: center;
    }
    
    .hero-metrics {
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .benefits-header-left {
        position: static;
        text-align: center;
    }
    
    .benefits-header-left .section-badge {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: var(--spacing-md);
    }
    
    .section-title-left {
        text-align: center;
    }
    
    .section-title-left::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Centrar todos los badges, títulos y subtítulos en móvil */
    .section-badge {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: fit-content;
        text-align: center;
    }
    
    .section-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Headers de secciones - centrar en móvil */
    .benefits-header-left,
    .services-header-left,
    .challenge-2-header,
    .industries-header,
    .process-header-left,
    .clients-carousel-header,
    .sobre-nosotros-header {
        text-align: center;
    }
    
    .services-header-left .section-badge {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: var(--spacing-md);
    }
    
    .challenge-2-header .section-badge {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: var(--spacing-md);
    }
    
    .challenge-2-header .section-subtitle {
        text-align: center;
    }
    
    .industries-header .section-subtitle {
        text-align: center;
    }
    
    .process-intro-text {
        text-align: center;
    }
    
    /* Sobre Nosotros - Responsive */
    .sobre-nosotros-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .sobre-nosotros-header {
        gap: var(--spacing-md);
    }
    
    /* Optimización de tarjetas de beneficios para móvil */
    .benefit-card-2 {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-card-2:hover {
        transform: translateY(-1px);
        /* Reducir transformación en móvil para mejor rendimiento */
    }
    
    .benefit-card-2::before {
        display: none;
        /* Desactivar efecto de brillo en móvil para mejor rendimiento */
    }
    
    .benefit-card-2::after {
        animation: none;
        /* Desactivar animación de gradiente en móvil */
    }
    
    .benefit-card-2 .benefit-card-header {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .benefit-card-2 .benefit-card-description {
        padding: 0 0.75rem 0.75rem;
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .benefit-card-2 .benefit-card-header h3 {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Mejorar área táctil en móvil */
    .benefit-card-2 {
        min-height: 60px;
        /* Área mínima táctil recomendada */
    }
    
    /* Optimizar imagen para móvil */
    .benefits-image-container {
        margin-top: var(--spacing-md);
    }
    
    .benefits-image-container:hover .benefits-image {
        transform: scale(1);
        /* Sin zoom en móvil */
    }
    
    .section-subtitle-left {
        text-align: center;
    }
    
    .benefits-image-container {
        margin-top: var(--spacing-md);
    }
    
    .services-layout {
        gap: var(--spacing-md);
    }
    
    .services-header-left {
        position: static;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Mejoras móviles para tarjetas de proyectos */
    .service-card {
        padding: 0;
    }
    
    .service-card-visual {
        padding: 1rem 1rem 0.5rem;
    }
    
    .device-mockup-desktop {
        aspect-ratio: 16 / 9;
    }
    
    .device-mockup-mobile {
        max-width: 140px;
        aspect-ratio: 9 / 16;
    }
    
    .service-card-header {
        padding: 1rem 1rem 0.75rem;
        gap: 0.875rem;
    }
    
    .service-card-header h3 {
        font-size: 15px;
        line-height: 1.5;
        letter-spacing: -0.01em;
    }
    
    .service-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }
    
    .service-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .service-card-description {
        padding: 0 1rem 0.75rem;
    }
    
    .service-card-description p {
        font-size: 14px;
        line-height: 1.7;
        padding-top: 0.5rem;
    }
    
    /* Indicador "Ver más" en móvil */
    .service-card-cta {
        padding: 0.75rem 1rem 1rem;
        gap: 0.5rem;
    }
    
    .service-card-cta-text {
        font-size: 14px;
    }
    
    .service-card-cta-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Mejor contraste y legibilidad en móvil */
    .service-card-description p strong {
        font-weight: 600;
    }
    
    /* Asegurar que el hover funcione bien en touch devices */
    .service-card:active {
        transform: scale(0.98);
    }
    
    /* Mejor feedback táctil en móvil */
    .service-card {
        -webkit-tap-highlight-color: rgba(0, 181, 166, 0.1);
    }
    
    /* Desactivar animaciones sutiles en móvil para mejor rendimiento */
    .service-card:not(:hover) .service-icon {
        animation: none;
    }
    
    /* Desactivar efecto de borde gradiente en móvil */
    .service-card::after {
        display: none;
    }
    
    /* Optimizar efectos en móvil */
    .service-card:hover .device-mockup {
        transform: translateY(-2px) scale(1.01);
    }
    
    .service-card:hover .case-study-image {
        transform: scale(1.02);
    }
    
    /* Desactivar animaciones complejas en móvil */
    .service-card:hover .device-screen::before {
        display: none;
    }
    
    .case-study-image[src*="placeholder"]::before {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
    
    .case-study-image[src*="placeholder"]::after {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
        bottom: 1rem;
    }
    
    /* Layout de 2 columnas a 1 columna en móvil */
    .challenge-2-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .challenge-2-header {
        text-align: center;
        margin-bottom: 32px;
    }
    
    .challenge-2-header .section-title {
        text-align: center;
    }
    
    .challenge-2-header .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .challenge-2-stats {
        gap: 12px;
    }
    
    .challenge-2-stat-item {
        width: 100%;
        text-align: center;
        align-items: center;
        min-height: 100px;
        padding: 16px;
    }
    
    .challenge-2-stat-number {
        font-size: 1.75rem;
    }
    
    .challenge-2-stat-label {
        font-size: 13px;
    }
    
    .challenge-2-stat-source {
        font-size: 0.75rem;
    }
    
    
    .challenge-2-insight-content .challenge-2-risks {
        gap: 0.75rem;
    }
    
    .challenge-2-insight-content {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .challenge-2-insight-header h3 {
        font-size: 1.5rem;
    }
    
    .challenge-2-insight-content p {
        font-size: 15px;
    }
    
    /* Mejor feedback táctil en móvil */
    .challenge-2-risk-card:active {
        transform: scale(0.98);
        background: rgba(255, 255, 255, 0.95) !important;
    }
    
    .challenge-2-insight-content .challenge-2-risk-card:active {
        transform: scale(0.98) translateY(-2px);
    }
    
    /* Indicador visual mejorado para móvil */
    .challenge-2-risk-card .challenge-2-risk-arrow {
        opacity: 0.8;
    }
    
    .challenge-2-risk-card.active .challenge-2-risk-arrow {
        opacity: 1;
    }
    
    .challenge-2-insight-content .challenge-2-risk-header {
        padding: 0.625rem 0.875rem;
        gap: 0.625rem;
        align-items: flex-start;
    }
    
    .challenge-2-insight-content .challenge-2-risk-title-container {
        gap: 0.625rem;
        flex: 1;
        min-width: 0;
    }
    
    .challenge-2-insight-content .challenge-2-risk-icon {
        width: 28px;
        height: 28px;
        margin-top: 0;
        flex-shrink: 0;
    }
    
    .challenge-2-insight-content .challenge-2-risk-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .challenge-2-insight-content .challenge-2-risk-header h3 {
        font-size: 14px;
        line-height: 1.5;
        word-wrap: normal;
        overflow-wrap: normal;
        hyphens: none;
        white-space: normal;
    }
    
    .challenge-2-insight-content .challenge-2-risk-arrow {
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .challenge-2-insight-content .challenge-2-risk-arrow {
        width: 20px;
        height: 20px;
    }
    
    .challenge-2-insight-content .challenge-2-risk-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .challenge-2-insight-content .challenge-2-risk-card.active .challenge-2-risk-description {
        padding: 0 0.875rem 0.625rem;
    }
    
    .challenge-2-insight-content .challenge-2-risk-description {
        padding: 0 0.875rem;
    }
    
    .process-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .process-header-left {
        position: static;
    }
    
    .process-header-left .section-title {
        text-align: center;
    }
    
    .process-header-left .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .process-intro-text {
        text-align: center;
    }
    
    .process-steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps-container-wrapper {
        padding-top: 0;
        padding-bottom: 0;
        position: relative;
    }
    
    /* Ocultar línea de conexión en móvil */
    .process-connection-line {
        display: none;
    }
    
    /* Números dentro de las tarjetas en móvil, encima del título */
    .process-step-number-3 {
        position: static;
        display: flex;
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin: 0 auto 0.75rem;
        transform: none;
        order: -1; /* Aparecer antes del header */
        flex-shrink: 0;
    }
    
    .process-step-card-3 {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        padding: 1.5rem 1rem 1rem;
        overflow: visible;
        cursor: default;
    }
    
    /* Desactivar efectos hover en móvil */
    .process-step-card-3::before,
    .process-step-card-3::after {
        display: none;
    }
    
    .process-step-card-3:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(11, 61, 145, 0.1), 0 1px 3px rgba(11, 61, 145, 0.08);
        border-color: rgba(11, 61, 145, 0.08);
        background: white;
    }
    
    /* Asegurar que el header venga después del número */
    .process-step-card-3 .process-step-header {
        order: 0;
        padding: 0;
        margin: 0;
    }
    
    .process-step-card-3 .process-step-description {
        order: 1;
        padding: 0;
        margin-top: 0.5rem;
    }
    
    /* Ajustar estilos appearing para móvil (números dentro de tarjetas) */
    .process-step-card-3.appearing .process-step-number-3 {
        transform: scale(1.15);
    }
    
    .process-step-card-3:nth-child(2).appearing .process-step-number-3 {
        transform: scale(1.15);
    }
    
    .process-step-card-3:nth-child(3).appearing .process-step-number-3 {
        transform: scale(1.15);
    }
    
    .process-step-card-3:nth-child(4).appearing .process-step-number-3 {
        transform: scale(1.15);
    }
    
    .challenge-2-header {
        margin-bottom: var(--spacing-lg);
    }
    
    .challenge-2-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .challenge-2-subclaim-risks {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .challenge-2-risks {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .challenge-2-stat-number {
        font-size: 2rem;
    }
    
    .challenge-2-stat-label {
        font-size: 1rem;
    }
    
    .process-step-card p {
        padding-left: 0;
        margin-top: 0.5rem;
    }
    
    .process-step-description {
        padding: 0 1rem;
    }
    
    .process-step-card.active .process-step-description {
        padding: 0 1rem 0.75rem;
    }
    
    .benefit-card-header h3 {
        font-size: 14px;
    }
    
    .benefit-card-header {
        padding: 0.625rem 0.875rem;
        gap: 0.625rem;
    }
    
    .benefit-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .benefit-card-description {
        padding: 0 0.875rem;
    }
    
    .benefit-card.active .benefit-card-description {
        padding: 0 0.875rem 0.625rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-video-overlay {
        background: linear-gradient(135deg, rgba(11, 61, 145, 0.9) 0%, rgba(10, 45, 107, 0.85) 50%, rgba(0, 0, 0, 0.7) 100%);
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .challenge-grid,
    .solution-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .challenge-card-solution {
        grid-column: 1;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .value-percentage {
        font-size: 3rem;
    }
}

/* Animaciones de scroll reveal */
[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

[data-animate-delay] {
    transition-delay: calc(var(--delay, 0) * 1ms);
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .challenge-2-stat-item {
        width: 100%;
        max-width: 280px;
    }
    
    .challenge-2-stat-number {
        font-size: 1.5rem;
    }
    
    .challenge-2-stat-label {
        font-size: 12px;
    }
    
    .challenge-2-insight-content {
        padding: 1.25rem;
    }
    
    .challenge-2-insight-header h3 {
        font-size: 1.25rem;
    }
    
    .challenge-2-insight-content p {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 0.375rem;
        align-items: flex-start;
    }
    
    .hero-metric-item {
        font-size: 0.8125rem;
        gap: 0.5rem;
        white-space: normal;
    }
    
    .metric-check {
        font-size: 0.875rem;
    }
    
    .metric-separator {
        display: none;
    }
    
    .hero-cta-text {
        font-size: 0.9375rem;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: fit-content;
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .contact-form {
        padding: var(--spacing-md);
    }
    
    /* Optimización adicional para pantallas muy pequeñas */
    .benefit-card-2 {
        padding: 0.875rem;
        margin-bottom: 0.625rem;
    }
    
    .benefit-card-2 .benefit-card-header {
        padding: 0.625rem;
        gap: 0.625rem;
    }
    
    .benefit-card-2 .benefit-card-header h3 {
        font-size: 13px;
    }
    
    .benefit-card-2 .benefit-card-description {
        padding: 0 0.625rem 0.625rem;
        font-size: 0.8125rem;
    }
    
    .benefits-image-container {
        margin-top: var(--spacing-md);
    }
}

