/* ==========================================================================
   Sección Hero de la página Soluciones
   ========================================================================== */
.soluciones-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    background-image: url('../images/soluciones-team.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    overflow: hidden;
    z-index: 1;
}

/* Superposición oscura y degradado */
.soluciones-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, 
        rgba(6, 9, 19, 0.88) 0%, 
        rgba(6, 9, 19, 0.7) 45%, 
        rgba(6, 9, 19, 0.2) 75%, 
        rgba(6, 9, 19, 0.05) 100%
    );
    z-index: -1;
    pointer-events: none;
}

.soluciones-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -150px;
    left: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 76, 255, 0.25) 0%, rgba(0, 76, 255, 0.05) 50%, rgba(0, 76, 255, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.soluciones-hero-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Columna Izquierda: Texto y Botones */
.soluciones-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.soluciones-hero-tag {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-blue);
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.soluciones-hero-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(6, 9, 19, 0.5);
}

.soluciones-hero-title .title-blue {
    color: var(--primary-blue);
    display: block;
}

.soluciones-hero-description {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 300;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 540px;
    text-shadow: 0 2px 8px rgba(6, 9, 19, 0.5);
}

/* Acciones y Botones */
.soluciones-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.soluciones-hero-actions .btn {
    padding: 16px 28px;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.soluciones-hero-actions .btn-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    flex-shrink: 0;
}

.soluciones-hero-actions .btn-call {
    background-color: var(--primary-blue);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 76, 255, 0.35);
}

.soluciones-hero-actions .btn-call:hover {
    background-color: #1a60ff;
    box-shadow: 0 6px 24px rgba(0, 76, 255, 0.45);
    transform: translateY(-2px);
}

.soluciones-hero-actions .btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.soluciones-hero-actions .btn-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.soluciones-hero-actions .btn-arrow {
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.soluciones-hero-actions .btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Constelación de Fondo (Decorativa) */
.constellation-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.7;
    animation: slowSpin 40s linear infinite;
}

@keyframes slowSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Columna Derecha: Imagen y Tarjeta Flotante */
.soluciones-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 100%;
}

.soluciones-hero-img-container {
    display: none;
}

/* Tarjeta Flotante de Desempeño (Glassmorphism) */
.floating-performance-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    width: 310px;
    background: rgba(15, 23, 42, 0.45); /* Slate oscuro translúcido */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: floatCard 6s ease-in-out infinite alternate;
}

@keyframes floatCard {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(0.5deg); }
}

.floating-performance-card .card-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.floating-performance-card .chart-icon-box {
    width: 32px;
    height: 32px;
    background-color: rgba(0, 76, 255, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-performance-card .chart-icon-box svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-blue);
}

.floating-performance-card .card-header-text {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.floating-performance-card .card-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.floating-performance-card .score-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-performance-card .score-label {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.floating-performance-card .score-value-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.floating-performance-card .score-percent {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #ffffff;
    line-height: 1;
}

.floating-performance-card .score-trend {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #22c55e; /* Green matching trend */
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.floating-performance-card .trend-arrow-svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
}

/* Mini Bar Chart */
.floating-performance-card .mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 36px;
    padding-bottom: 2px;
}

.floating-performance-card .chart-bar {
    width: 6px;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.floating-performance-card .chart-bar.active {
    background-color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(0, 76, 255, 0.6);
}

/* ==========================================================================
   Responsive Soluciones Hero
   ========================================================================== */
@media (max-width: 1100px) {
    .soluciones-hero {
        padding: 140px 0 80px;
    }
    
    .soluciones-hero-container {
        gap: 40px;
        padding: 0 30px;
    }
    
    .soluciones-hero-title {
        font-size: 3rem;
    }
    
    .floating-performance-card {
        right: 0;
        bottom: 20px;
    }
}

@media (max-width: 900px) {
    .soluciones-hero {
        height: auto;
        padding: 120px 0 80px;
    }

    .soluciones-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .soluciones-hero-content {
        align-items: center;
    }

    .soluciones-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .soluciones-hero-actions {
        justify-content: center;
    }

    .soluciones-hero-visual {
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
    }

    .constellation-bg {
        left: 50%;
        top: 30%;
    }
    
    .floating-performance-card {
        right: -10px;
        bottom: -15px;
    }
}

@media (max-width: 580px) {
    .soluciones-hero {
        padding: 100px 0 60px;
    }

    .soluciones-hero-container {
        padding: 0 20px;
    }

    .soluciones-hero-title {
        font-size: 2.25rem;
    }

    .soluciones-hero-description {
        font-size: 1.05rem;
    }

    .soluciones-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .soluciones-hero-actions .btn {
        width: 100%;
    }

    .floating-performance-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        width: 100%;
        max-width: 320px;
        animation: none;
    }
}

/* Wave en el fondo inferior */
.soluciones-wave-bottom {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
    pointer-events: none;
}

.soluciones-wave-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 640px) {
    .soluciones-wave-bottom {
        height: 60px;
    }
}

/* ==========================================================================
   Sección Nuestras Soluciones (Página Soluciones)
   ========================================================================== */
.soluciones-nuestras {
    background-color: #ffffff;
    color: var(--text-black);
    padding: 100px 0;
    width: 100%;
    position: relative;
}

.nuestras-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: stretch;
}

/* Columna Izquierda: Composición de imágenes y rejilla de puntos */
.nuestras-visual {
    position: relative;
    width: 100%;
}

.nuestras-visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 580px; /* Asegura un alto mínimo para la alineación */
}

/* Rejilla de Puntos (Dot Grid) */
.nuestras-dot-grid {
    position: absolute;
    top: 10%;
    right: 24%;
    width: 90px;
    height: 90px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 12px;
    z-index: 3;
    opacity: 0.85;
}

.nuestras-dot-grid span {
    width: 6px;
    height: 6px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: inline-block;
}

/* Caja de Imagen Principal (Atrás - Formato Vertical) */
.nuestras-img-main-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 68%;
    height: 80%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

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

/* Caja de Imagen Flotante (Adelante y Solapada - Formato Cuadrado) */
.nuestras-img-floating-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 48%;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #ffffff; /* Borde blanco de 4px para delimitar la superposición */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    z-index: 4;
}

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

/* Columna Derecha: Contenido y Características */
.nuestras-content {
    display: flex;
    flex-direction: column;
}

.nuestras-tag {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-blue);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.nuestras-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background-color: var(--primary-blue);
}

.nuestras-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1.2;
    color: #0e1225;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.nuestras-description {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: #555866;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Rejilla de Características (2 Columnas) */
.nuestras-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
    margin-bottom: 40px;
}

.nuestras-feature-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nuestras-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.nuestras-feature-item .feature-check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 76, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.nuestras-feature-item .feature-check-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary-blue);
}

.nuestras-feature-item .feature-text h3 {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #0e1225;
    margin-bottom: 6px;
}

.nuestras-feature-item .feature-text p {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 0.88rem;
    color: #555866;
    line-height: 1.45;
}

/* Divisor y Botón de Explorar */
.nuestras-divider {
    height: 1px;
    background-color: #e2e8f0;
    width: 100%;
    margin-bottom: 30px;
}

.nuestras-action-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.btn-explore {
    background-color: var(--primary-blue);
    color: #ffffff;
    border: none;
    padding: 15px 32px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 76, 255, 0.25);
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-explore:hover {
    background-color: #1a60ff;
    box-shadow: 0 6px 20px rgba(0, 76, 255, 0.35);
    transform: translateY(-2px);
}

/* ==========================================================================
   Responsive Nuestras Soluciones
   ========================================================================== */
@media (max-width: 1100px) {
    .nuestras-container {
        gap: 50px;
        grid-template-columns: 1fr 1.1fr;
    }
    
    .nuestras-title {
        font-size: 2.25rem;
    }

    .nuestras-visual-wrapper {
        height: 460px;
    }
}

@media (max-width: 900px) {
    .soluciones-nuestras {
        padding: 80px 0;
    }

    .nuestras-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .nuestras-visual-wrapper {
        max-width: 580px;
        height: 480px;
        margin: 0 auto;
    }

    .nuestras-title {
        font-size: 2.25rem;
    }

    .nuestras-action-row {
        justify-content: center;
    }
}

@media (max-width: 580px) {
    .soluciones-nuestras {
        padding: 60px 0;
    }

    .nuestras-container {
        padding: 0 20px;
    }

    .nuestras-visual-wrapper {
        height: 360px;
    }

    .nuestras-dot-grid {
        top: 30px;
        right: 10%;
        width: 70px;
        height: 70px;
        gap: 8px;
    }
    
    .nuestras-dot-grid span {
        width: 5px;
        height: 5px;
    }

    .nuestras-img-floating-box {
        border-width: 5px;
    }

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

    .nuestras-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nuestras-feature-col {
        gap: 24px;
    }
}

/* ==========================================================================
   Sección ¿A qué tipo de empresas ayudamos? (Página Soluciones)
   ========================================================================== */
.soluciones-ayuda {
    background-color: #f7f9fc;
    color: var(--text-black);
    padding: 100px 0;
    width: 100%;
}

.ayuda-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Encabezado de la Sección */
.ayuda-header {
    text-align: center;
    margin-bottom: 60px;
}

.ayuda-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: #0e1225;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.ayuda-underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    margin: 0 auto;
    border-radius: 2px;
}

.ayuda-cards-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ayuda-row {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 0;
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 0.9fr 1fr;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
    overflow: hidden;
    align-items: stretch;
}

.ayuda-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.ayuda-col {
    display: flex;
    flex-direction: column;
}

.col-header {
    padding: 40px;
    border-right: 1px solid #e2e8f0;
}

.col-ideal {
    padding: 40px 10px 40px 40px;
}

.col-resolve {
    padding: 40px 10px 40px 20px;
}

.col-help {
    padding: 40px 40px 40px 20px;
}

/* Columna 1: Encabezado de la Fila */
.ayuda-header-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.col-header .ayuda-badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.col-header .ayuda-badge-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.col-header .ayuda-row-title {
    font-family: 'VinilaTest', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
}

.col-header .ayuda-row-subtitle {
    font-family: 'VinilaTest', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0e1225;
    line-height: 1.35;
    margin-bottom: 12px;
}

.col-header .ayuda-row-desc {
    font-family: 'VinilaTest', sans-serif;
    font-size: 0.9rem;
    color: #555866;
    line-height: 1.5;
}

/* Columnas 2, 3 y 4: Título de Columna Común */
.ayuda-col-title {
    font-family: 'VinilaTest', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 2px solid;
    display: inline-block;
    width: max-content;
}

/* Listas con viñetas */
.ayuda-bullet-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ayuda-bullet-list li {
    position: relative;
    padding-left: 18px;
    font-family: 'VinilaTest', sans-serif;
    font-size: 0.88rem;
    color: #4a4a50;
    line-height: 1.45;
    margin-bottom: 12px;
}

.ayuda-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.25rem;
    line-height: 1;
}

/* Columna 4: Cómo ayuda CapDev */
.col-help .ayuda-help-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.col-help .ayuda-help-icon svg {
    width: 26px;
    height: 26px;
}

.col-help .ayuda-help-desc {
    font-family: 'VinilaTest', sans-serif;
    font-size: 0.88rem;
    color: #4a4a50;
    line-height: 1.5;
    text-align: center;
}

.col-help .no-icon-desc {
    margin-top: 4px;
    text-align: center;
}

/* ==========================================================================
   Modificadores de Temas de Color (Green, Blue, Purple, Orange)
   ========================================================================== */

/* Green Theme */
.theme-green {
    border-color: rgba(22, 163, 74, 0.15);
}
.theme-green .col-header {
    background-color: #f0fdf4; /* Light green */
}
.theme-green .ayuda-badge-icon {
    background-color: #16a34a;
}
.theme-green .ayuda-row-title {
    color: #16a34a;
}
.theme-green .ayuda-col-title {
    color: #16a34a;
    border-color: rgba(22, 163, 74, 0.2);
}
.theme-green .ayuda-bullet-list li::before {
    color: #16a34a;
}
.theme-green .ayuda-help-icon {
    background-color: rgba(22, 163, 74, 0.08);
    color: #16a34a;
}

/* Blue Theme */
.theme-blue {
    border-color: rgba(0, 76, 255, 0.15);
}
.theme-blue .col-header {
    background-color: #eff6ff; /* Light blue */
}
.theme-blue .ayuda-badge-icon {
    background-color: var(--primary-blue);
}
.theme-blue .ayuda-row-title {
    color: var(--primary-blue);
}
.theme-blue .ayuda-col-title {
    color: var(--primary-blue);
    border-color: rgba(0, 76, 255, 0.2);
}
.theme-blue .ayuda-bullet-list li::before {
    color: var(--primary-blue);
}
.theme-blue .ayuda-help-icon {
    background-color: rgba(0, 76, 255, 0.08);
    color: var(--primary-blue);
}

/* Purple Theme */
.theme-purple {
    border-color: rgba(124, 58, 237, 0.15);
}
.theme-purple .col-header {
    background-color: #f5f3ff; /* Light purple */
}
.theme-purple .ayuda-badge-icon {
    background-color: #7c3aed;
}
.theme-purple .ayuda-row-title {
    color: #7c3aed;
}
.theme-purple .ayuda-col-title {
    color: #7c3aed;
    border-color: rgba(124, 58, 237, 0.2);
}
.theme-purple .ayuda-bullet-list li::before {
    color: #7c3aed;
}
.theme-purple .ayuda-help-icon {
    background-color: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
}

/* Orange Theme */
.theme-orange {
    border-color: rgba(234, 88, 12, 0.15);
}
.theme-orange .col-header {
    background-color: #fff7ed; /* Light orange */
}
.theme-orange .ayuda-badge-icon {
    background-color: #ea580c;
}
.theme-orange .ayuda-row-title {
    color: #ea580c;
}
.theme-orange .ayuda-col-title {
    color: #ea580c;
    border-color: rgba(234, 88, 12, 0.2);
}
.theme-orange .ayuda-bullet-list li::before {
    color: #ea580c;
}
.theme-orange .ayuda-help-icon {
    background-color: rgba(234, 88, 12, 0.08);
    color: #ea580c;
}

/* ==========================================================================
   Responsive ¿A qué tipo de empresas ayudamos?
   ========================================================================== */
@media (max-width: 1100px) {
    .ayuda-title {
        font-size: 2.25rem;
    }

    .ayuda-row {
        grid-template-columns: 1.15fr 0.9fr 0.9fr 1fr;
    }
}

@media (max-width: 960px) {
    .ayuda-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .col-header {
        grid-column: span 2;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 30px;
    }
    
    .col-ideal {
        padding: 30px 15px 30px 30px;
    }

    .col-resolve {
        padding: 30px 30px 30px 15px;
    }
    
    .col-help {
        grid-column: span 2;
        border-top: 1px solid #e2e8f0;
        padding: 30px;
    }
}

@media (max-width: 580px) {
    .soluciones-ayuda {
        padding: 60px 0;
    }

    .ayuda-container {
        padding: 0 20px;
    }

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

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

    .col-header {
        grid-column: span 1;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 24px;
    }

    .col-ideal {
        padding: 24px;
        border-bottom: 1px dashed #e2e8f0;
    }

    .col-resolve {
        padding: 24px;
        border-bottom: 1px solid #e2e8f0;
    }

    .col-help {
        grid-column: span 1;
        border-top: none;
        padding: 24px;
    }

    .ayuda-col-title {
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   Sección Más que Recruiting (Página Soluciones)
   ========================================================================== */
.soluciones-staffing {
    background-color: #ffffff;
    color: var(--text-black);
    padding: 100px 0;
    width: 100%;
}

.staffing-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: stretch;
}

/* Columna Izquierda: Imagen vertical */
.staffing-visual {
    width: 100%;
    position: relative;
}

.staffing-img-box {
    width: 100%;
    height: 100%;
    min-height: 580px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

/* Columna Derecha: Contenido y Características */
.staffing-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.staffing-tag {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-blue);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.staffing-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background-color: var(--primary-blue);
}

.staffing-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1.15;
    color: #0e1225;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.staffing-title .text-blue {
    color: var(--primary-blue);
    font-weight: 900;
}

.staffing-description {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: #555866;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Lista de Pilares */
.staffing-pillars-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.staffing-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.staffing-pillar-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pillar-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: rgba(0, 76, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-blue);
}

.pillar-icon-badge svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.pillar-text h3 {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0e1225;
    margin-bottom: 6px;
}

.pillar-text p {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #555866;
    line-height: 1.45;
}

/* Cita Destacada Al Final */
.staffing-quote {
    border-left: 3px solid var(--primary-blue);
    padding-left: 20px;
    margin-bottom: 40px;
}

.staffing-quote p {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-blue);
    line-height: 1.55;
    margin: 0;
}

/* Botón de Acción */
.staffing-action {
    display: flex;
    align-items: center;
}

/* Responsive Staffing */
@media (max-width: 1100px) {
    .staffing-container {
        gap: 50px;
    }
    
    .staffing-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 900px) {
    .soluciones-staffing {
        padding: 80px 0;
    }

    .staffing-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .staffing-img-box {
        min-height: 400px;
        max-height: 480px;
    }
}

@media (max-width: 580px) {
    .soluciones-staffing {
        padding: 60px 0;
    }

    .staffing-container {
        padding: 0 20px;
    }

    .staffing-title {
        font-size: 1.95rem;
    }

    .pillar-icon-badge {
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }

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

    .pillar-text h3 {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Sección Banner CTA (Página Soluciones)
   ========================================================================== */
.soluciones-banner-cta {
    background: linear-gradient(135deg, #0940f2 0%, #0324a6 100%);
    height: 160px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Left: Icon Badge */
.banner-icon-box {
    display: flex;
    align-items: center;
    margin-right: 32px;
}

.banner-bulb-badge {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.banner-bulb-badge svg {
    width: 38px;
    height: 38px;
    stroke: currentColor;
}

/* Middle: Text Contents */
.banner-text-box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 800;
    font-size: 1.85rem;
    color: #ffffff;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.banner-subtitle {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.3;
}

/* Right: Action Button */
.banner-action-box {
    margin-left: 40px;
    flex-shrink: 0;
}

.btn-banner-hablemos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 15px 30px;
    border-radius: var(--border-radius, 4px);
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-speed, 0.3s) ease;
}

.btn-banner-hablemos:hover {
    border-color: #ffffff;
    color: #0324a6;
    background-color: #ffffff;
    transform: translateY(-2px);
}

.btn-banner-hablemos .btn-arrow {
    font-size: 1.2rem;
    transition: transform var(--transition-speed, 0.3s) ease;
}

.btn-banner-hablemos:hover .btn-arrow {
    transform: translateX(4px);
}

/* Background Decorative elements */
.banner-stripe-left {
    position: absolute;
    left: -30px;
    top: -60px;
    width: 90px;
    height: 280px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(28deg);
    filter: blur(2px);
    pointer-events: none;
    z-index: 1;
    animation: stripePulse 4s infinite ease-in-out;
}

.banner-glow-circle-1 {
    position: absolute;
    right: 32%;
    top: 25%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.16);
    filter: blur(4px);
    pointer-events: none;
    z-index: 1;
    animation: circleFloat1 4.5s infinite ease-in-out;
}

.banner-glow-circle-2 {
    position: absolute;
    right: 3%;
    top: -15%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    filter: blur(8px);
    pointer-events: none;
    z-index: 1;
    animation: circleFloat2 6.5s infinite ease-in-out;
}

/* Animations Keyframes */
@keyframes stripePulse {
    0% { opacity: 0.4; transform: rotate(28deg) translate(-25px, -25px); }
    50% { opacity: 1; transform: rotate(28deg) translate(45px, 45px); }
    100% { opacity: 0.4; transform: rotate(28deg) translate(-25px, -25px); }
}

@keyframes circleFloat1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-18px, 18px) scale(1.3); opacity: 1; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
}

@keyframes circleFloat2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(24px, -18px) scale(1.18); opacity: 0.9; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
}

/* Responsive Banner CTA */
@media (max-width: 960px) {
    .soluciones-banner-cta {
        height: auto;
        padding: 50px 0;
    }

    .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .banner-icon-box {
        margin-right: 0;
    }

    .banner-action-box {
        margin-left: 0;
    }

    .banner-stripe-left {
        display: none;
    }
}

@media (max-width: 580px) {
    .banner-title {
        font-size: 1.6rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .btn-banner-hablemos {
        padding: 12px 28px;
        font-size: 1rem;
    }
}
