@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;700&display=swap');

/* Main Container Base styling */
.sol-container-0ab7298f {
    background-color: #f7fbfa;
    padding: 60px 20px;
	border-radius: 0px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.sol-header-0ab7298f {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
}

.sol-title-0ab7298f {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #06262d;
    margin: 0;
	text-align: center;
}

.sol-title-0ab7298f span {
    color: #3db4ae;
}

/* Track and horizontal glide styles */
.sol-slider-wrapper-0ab7298f {
    overflow: hidden;
    position: relative;
    cursor: grab;
    width: 100%;
    padding: 20px 0;
}

.sol-slider-wrapper-0ab7298f:active {
    cursor: grabbing;
}

.sol-slider-track-0ab7298f {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Card base setup */
.sol-card-0ab7298f {
    width: 320px;
    flex-shrink: 0;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(14, 92, 102, 0.08);
    box-shadow: 0 8px 30px rgba(6, 38, 45, 0.02);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
    overflow: hidden;
}

.sol-card-inner-0ab7298f {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

/* Icon Box styles */
.sol-icon-wrapper-0ab7298f {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(61, 180, 174, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sol-icon-0ab7298f {
    font-size: 24px;
    line-height: 1;
}

/* Headings and descriptions */
.sol-card-title-0ab7298f {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #06262d;
    margin: 0 0 12px 0;
    transition: color 0.4s ease;
}

.sol-card-desc-0ab7298f {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5d61;
    margin: 0;
    transition: opacity 0.4s ease;
}

/* Hidden Unveil text container styling */
.sol-card-unveil-0ab7298f {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 0;
}

.sol-card-unveil-text-0ab7298f {
    font-size: 13.5px;
    line-height: 1.6;
    color: #354a4d;
    border-top: 1px dashed rgba(6, 38, 45, 0.1);
    padding-top: 16px;
    margin: 0;
}

/* Active Hover Card States */
.sol-card-0ab7298f:hover {
    transform: scale(1.03);
    z-index: 10;
    background: #ffffff;
}

.sol-card-0ab7298f:hover .sol-card-unveil-0ab7298f {
    max-height: 150px;
    opacity: 1;
    margin-top: 16px;
}

/* Unhovered card dim and blur styling */
.sol-slider-track-0ab7298f.is-hovering-card .sol-card-0ab7298f:not(:hover) {
    opacity: 0.6;
    filter: blur(1px);
    transform: scale(0.97);
}

/* INDIVIDUAL SECTORS (Theme Accent customization) */

/* Industria y manufactura */
.sector-manufactura-0ab7298f:hover {
    box-shadow: 0 12px 30px rgba(14, 92, 102, 0.15);
    border-color: #0e5c66;
}

/* Comercio y retail */
.sector-retail-0ab7298f:hover {
    box-shadow: 0 12px 30px rgba(253, 147, 50, 0.15);
    border-color: #fd9332;
}
.sector-retail-0ab7298f:hover .sol-icon-wrapper-0ab7298f {
    background: rgba(253, 147, 50, 0.15);
}

/* Educación */
.sector-educacion-0ab7298f:hover {
    box-shadow: 0 12px 40px rgba(61, 180, 174, 0.2);
    border-color: #3db4ae;
}

/* Construcción y finca raíz */
.sector-construccion-0ab7298f::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fd9332, #fea24b);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.sector-construccion-0ab7298f:hover::before {
    opacity: 1;
}
.sector-construccion-0ab7298f:hover {
    box-shadow: 0 12px 30px rgba(254, 162, 75, 0.15);
    border-color: #fea24b;
}

/* Pymes en general */
.sector-pymes-0ab7298f:hover {
    border-image: linear-gradient(135deg, #0e5c66 0%, #3db4ae 100%) 1;
    box-shadow: 0 12px 30px rgba(14, 92, 102, 0.12);
}
