/* Tipografía de íconos personalizados */
@font-face {
    font-family: 'predi';
    src: url('/font/predi.eot?3205012');
    src: url('/font/predi.eot?3205012#iefix') format('embedded-opentype'),
         url('/font/predi.woff2?3205012') format('woff2'),
         url('/font/predi.woff?3205012') format('woff'),
         url('/font/predi.ttf?3205012') format('truetype'),
         url('/font/predi.svg?3205012#predi') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="solp-"]:before,
[class*=" solp-"]:before {
    font-family: "predi";
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.solp-icon-02:before {
    content: '\e800';
}

.solp-icon-03:before {
    content: '\e801';
}

.solp-icon-04:before {
    content: '\e802';
}

.solp-icon-05:before {
    content: '\e803';
}

.solp-icon-06:before {
    content: '\e804';
}

.solp-icon-07:before {
    content: '\e805';
}

.solp-icon-08:before {
    content: '\e806';
}

/* Sección About */
.about {
    background-color: #f5f5f5;
    padding: var(--spacing-2xl) var(--spacing-lg);
}

.about__container {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.about__panel {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 18px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about__panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.about__panel--primary {
    background-color: var(--color-primary);
    grid-row: 1;
    grid-column: 1 / 3;
}

.about__panel--primary .about__panel-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin: 0;
}

.about__panel--primary i {
    color: #ffffff;
    font-size: 80px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.about__panel--stat i {
    color: var(--color-secondary);
    font-size: 60px;
    margin-bottom: 8px;
}

.about__stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 4px;
    line-height: 1;
}

.about__stat-text {
    display: block;
    font-size: 0.95rem;
    color: #5a5a5a;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .about__container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .about__panel--primary {
        grid-row: 1;
        grid-column: 1 / 3;
    }
}

@media (max-width: 768px) {
    .about__container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .about__panel--primary {
        grid-row: 1;
        grid-column: 1;
    }
    
    .about__panel {
        padding: 15px 20px;
    }
    
    .about__panel--primary i {
        font-size: 60px;
    }
    
    .about__panel--stat i {
        font-size: 50px;
    }
    
    .about__stat-number {
        font-size: 2rem;
    }
}

