/* ============================================================
   ABOUT / QUIÉNES SOMOS - Estilos (Fondo Claro)
   ============================================================ */

/* --------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------- */
.about-hero {
    padding: 1rem 0 3rem;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.about-hero__decor {
    position: absolute;
    pointer-events: none;
}

.about-hero__decor--circle-1 {
    top: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.02) 100%);
    border-radius: 50%;
}

.about-hero__decor--circle-2 {
    bottom: -150px;
    right: 15%;
    width: 300px;
    height: 300px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.06) 0%, rgba(139, 92, 246, 0.01) 100%);
    border-radius: 50%;
}

.about-hero__decor--dots {
    top: 80px;
    right: 20%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, #8b5cf6 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.4;
}

.about-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-hero__content {
    max-width: 600px;
}

.about-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    color: #7c3aed;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.about-hero__title--accent {
    color: #8b5cf6;
}

.about-hero__separator {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6 0%, #06b6d4 100%);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.about-hero__description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Stats en línea */
.about-hero__stats-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-primary);
}

.about-hero__stat-item {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #8b5cf6;
}

.about-hero__stat-separator {
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* Botón CTA del Hero */
.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    color: #FFFFFF;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.9375rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
}

.about-hero__btn:hover {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}

/* --------------------------------------------------------
   HERO VISUAL COMPOSITION
   -------------------------------------------------------- */
.about-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.about-hero__image-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.about-hero__image-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-hero__floating-icon {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.about-hero__arrow {
    position: absolute;
    bottom: -30px;
    right: 20px;
    opacity: 0.8;
}

/* --------------------------------------------------------
   STATS CARDS
   -------------------------------------------------------- */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.about-stats__item {
    background: #fff;
    border: 1px solid #e8e8ef;
    border-radius: 16px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-stats__item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
    transform: translateY(-2px);
}

.about-stats__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.about-stats__icon i {
    font-size: 1.25rem;
}

.about-stats__icon--purple {
    background: rgba(139, 92, 246, 0.1);
}
.about-stats__icon--purple i {
    color: #8b5cf6;
}

.about-stats__icon--blue {
    background: rgba(59, 130, 246, 0.1);
}
.about-stats__icon--blue i {
    color: #3b82f6;
}

.about-stats__icon--cyan {
    background: rgba(6, 182, 212, 0.1);
}
.about-stats__icon--cyan i {
    color: #06b6d4;
}

.about-stats__icon--pink {
    background: rgba(236, 72, 153, 0.1);
}
.about-stats__icon--pink i {
    color: #ec4899;
}

.about-stats__number {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.about-stats__item:nth-child(1) .about-stats__number { color: #8b5cf6; }
.about-stats__item:nth-child(2) .about-stats__number { color: #3b82f6; }
.about-stats__item:nth-child(3) .about-stats__number { color: #06b6d4; }
.about-stats__item:nth-child(4) .about-stats__number { color: #ec4899; }

.about-stats__label {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.3;
}

/* --------------------------------------------------------
   HISTORIA / TIMELINE HORIZONTAL
   -------------------------------------------------------- */
.about-history {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, #f8f7fc 0%, #f0f4ff 50%, #f5f0fa 100%);
    position: relative;
    overflow: hidden;
}

/* Decoraciones de fondo */
.about-history::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-history::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 70%;
    background:
        radial-gradient(ellipse at 100% 100%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(139, 92, 246, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.about-history__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Dot pattern decorativo - esquina superior derecha */
.about-history__dots-decor {
    display: none;
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(139, 92, 246, 0.3) 2px, transparent 2px);
    background-size: 10px 10px;
    pointer-events: none;
}

/* Ilustración cohete - esquina inferior izquierda */
.about-history__rocket-decor {
    display: none;
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    opacity: 0.6;
    pointer-events: none;
}

/* Ilustración montaña con bandera - esquina inferior derecha */
.about-history__mountain-decor {
    display: none;
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    width: 80px;
    height: 60px;
    opacity: 0.5;
    pointer-events: none;
}

.about-history__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-history__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    color: #7c3aed;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.about-history__title {
    font-size: clamp(1.5rem, 5vw, 3.4rem);
    font-weight: var(--font-weight-extrabold);
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.about-history__title--accent {
    color: #8b5cf6;
}

.about-history__subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
}

.about-timeline__item {
    position: relative;
    display: flex;
    flex-direction: column;
}

.about-timeline__card {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    flex: 1;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Borde inferior de color */
.about-timeline__card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.about-timeline__item--purple .about-timeline__card::after {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.about-timeline__item--blue .about-timeline__card::after {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.about-timeline__item--cyan .about-timeline__card::after {
    background: linear-gradient(90deg, #06b6d4, #22d3ee);
}

.about-timeline__item--green .about-timeline__card::after {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.about-timeline__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.12);
}

/* Header con icono y año en línea */
.about-timeline__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.about-timeline__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    flex-shrink: 0;
}

.about-timeline__icon i {
    font-size: 1.125rem;
    color: #8b5cf6;
}

.about-timeline__item--purple .about-timeline__icon {
    background: rgba(139, 92, 246, 0.1);
}
.about-timeline__item--purple .about-timeline__icon i {
    color: #8b5cf6;
}

.about-timeline__item--blue .about-timeline__icon {
    background: rgba(59, 130, 246, 0.1);
}
.about-timeline__item--blue .about-timeline__icon i {
    color: #3b82f6;
}

.about-timeline__item--cyan .about-timeline__icon {
    background: rgba(6, 182, 212, 0.1);
}
.about-timeline__item--cyan .about-timeline__icon i {
    color: #06b6d4;
}

.about-timeline__item--green .about-timeline__icon {
    background: rgba(16, 185, 129, 0.1);
}
.about-timeline__item--green .about-timeline__icon i {
    color: #10b981;
}

.about-timeline__year {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.08);
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
}

.about-timeline__item--blue .about-timeline__year {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.08);
}

.about-timeline__item--cyan .about-timeline__year {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.08);
}

.about-timeline__item--green .about-timeline__year {
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
}

.about-timeline__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.about-timeline__text {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

/* Dots debajo de cada card - móvil ocultos */
.about-timeline__dot {
    display: none;
}

/* Línea de tiempo - móvil oculta */
.about-timeline__line {
    display: none;
}

/* Contenedor de timeline con línea y dots */
.about-timeline__track {
    display: none;
}

/* --------------------------------------------------------
   MISIÓN Y VISIÓN
   -------------------------------------------------------- */
.about-mission {
    padding: 4rem 0;
    background: #fff;
}

.about-mission__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-mission__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-mission__card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: visible;
}

.about-mission__card:hover {
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

/* Icono flotante sobre el borde */
.about-mission__icon {
    position: absolute;
    top: -28px;
    left: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
    z-index: 2;
}

.about-mission__card--vision .about-mission__icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.about-mission__icon i {
    font-size: 1.5rem;
    color: #fff;
}

.about-mission__card--vision .about-mission__icon i {
    color: #fff;
}

/* Título con color accent y línea decorativa */
.about-mission__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-mission__card-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.3) 0%, transparent 100%);
    border-radius: 1px;
}

.about-mission__card--vision .about-mission__card-title::after {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.3) 0%, transparent 100%);
}

/* Palabra "Misión" en morado, "Visión" en turquesa */
.about-mission__card-title .title-accent {
    color: #8b5cf6;
}

.about-mission__card--vision .about-mission__card-title .title-accent {
    color: #06b6d4;
}

.about-mission__card-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-top: 1rem;
}

/* --------------------------------------------------------
   VALORES Y ALIANZAS - WRAPPER CON FONDOS DECORATIVOS
   -------------------------------------------------------- */
.about-values-partners-wrapper {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f4ff 50%, #f5f8ff 100%);
    overflow: hidden;
}

/* Dot pattern - esquina superior izquierda */
.about-values-partners-wrapper::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(139, 92, 246, 0.4) 3px, transparent 3px);
    background-size: 14px 14px;
    pointer-events: none;
    z-index: 1;
}

/* Ocultar decoraciones en móvil para evitar superposición con texto */
@media (max-width: 768px) {
    .about-values-partners-wrapper::before,
    .about-decor-circles,
    .about-decor-wave-left,
    .about-decor-wave-right {
        display: none;
    }
}

/* Círculos concéntricos - esquina superior derecha */
.about-decor-circles {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 120px;
    height: 120px;
    pointer-events: none;
    z-index: 1;
}

.about-decor-circles::before,
.about-decor-circles::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 50%;
}

.about-decor-circles::before {
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
}

.about-decor-circles::after {
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
}

/* Curvas fluidas en la base */
.about-decor-wave-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35%;
    height: 150px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 0 100% 0 0;
    pointer-events: none;
    z-index: 0;
}

.about-decor-wave-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 120px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.2) 100%);
    border-radius: 100% 0 0 0;
    pointer-events: none;
    z-index: 0;
}

/* --------------------------------------------------------
   VALORES
   -------------------------------------------------------- */
.about-values {
    padding: 4rem 0 3rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.about-values__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-values__header {
    text-align: center;
    margin-bottom: 1rem;
}

.about-values__title {
    font-size: clamp(1.5rem, 5vw, 3.4rem);
    font-weight: var(--font-weight-extrabold);
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.about-values__subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.about-values__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-values__item {
    background: transparent;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

/* Líneas divisorias verticales entre columnas */
.about-values__item::after {
    display: none;
}

/* Contenedor del icono con glow */
.about-values__icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Soft glow de fondo */
.about-values__icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    filter: blur(8px);
}

.about-values__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 2px solid rgba(139, 92, 246, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-values__icon i {
    font-size: 2rem;
    color: #8b5cf6;
}

/* Colores por valor */
/* Compromiso - Morado */
.about-values__item:nth-child(1) .about-values__icon-wrapper::before {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
}
.about-values__item:nth-child(1) .about-values__icon {
    border-color: rgba(139, 92, 246, 0.2);
}
.about-values__item:nth-child(1) .about-values__icon i {
    color: #8b5cf6;
}

/* Innovación - Azul/Cyan */
.about-values__item:nth-child(2) .about-values__icon-wrapper::before {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
}
.about-values__item:nth-child(2) .about-values__icon {
    border-color: rgba(6, 182, 212, 0.2);
}
.about-values__item:nth-child(2) .about-values__icon i {
    color: #06b6d4;
}

/* Cercanía - Verde */
.about-values__item:nth-child(3) .about-values__icon-wrapper::before {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
}
.about-values__item:nth-child(3) .about-values__icon {
    border-color: rgba(16, 185, 129, 0.2);
}
.about-values__item:nth-child(3) .about-values__icon i {
    color: #10b981;
}

/* Confianza - Amarillo/Naranja */
.about-values__item:nth-child(4) .about-values__icon-wrapper::before {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
}
.about-values__item:nth-child(4) .about-values__icon {
    border-color: rgba(245, 158, 11, 0.2);
}
.about-values__item:nth-child(4) .about-values__icon i {
    color: #f59e0b;
}

/* Título del valor con color y línea decorativa */
.about-values__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

/* Línea decorativa debajo del título */
.about-values__content h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    border-radius: 2px;
    margin: 0.5rem auto 0;
}

/* Colores de títulos y líneas */
.about-values__item:nth-child(1) .about-values__content h3 {
    color: #8b5cf6;
}
.about-values__item:nth-child(1) .about-values__content h3::after {
    background: #8b5cf6;
}

.about-values__item:nth-child(2) .about-values__content h3 {
    color: #06b6d4;
}
.about-values__item:nth-child(2) .about-values__content h3::after {
    background: #06b6d4;
}

.about-values__item:nth-child(3) .about-values__content h3 {
    color: #10b981;
}
.about-values__item:nth-child(3) .about-values__content h3::after {
    background: #10b981;
}

.about-values__item:nth-child(4) .about-values__content h3 {
    color: #f59e0b;
}
.about-values__item:nth-child(4) .about-values__content h3::after {
    background: #f59e0b;
}

/* Calidad y confiabilidad - Morado */
.about-values__item:nth-child(5) .about-values__icon-wrapper::before {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
}
.about-values__item:nth-child(5) .about-values__icon {
    border-color: rgba(139, 92, 246, 0.2);
}
.about-values__item:nth-child(5) .about-values__icon i {
    color: #8b5cf6;
}
.about-values__item:nth-child(5) .about-values__content h3 {
    color: #8b5cf6;
}
.about-values__item:nth-child(5) .about-values__content h3::after {
    background: #8b5cf6;
}

/* Profesionalismo - Azul/Cyan */
.about-values__item:nth-child(6) .about-values__icon-wrapper::before {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
}
.about-values__item:nth-child(6) .about-values__icon {
    border-color: rgba(6, 182, 212, 0.2);
}
.about-values__item:nth-child(6) .about-values__icon i {
    color: #06b6d4;
}
.about-values__item:nth-child(6) .about-values__content h3 {
    color: #06b6d4;
}
.about-values__item:nth-child(6) .about-values__content h3::after {
    background: #06b6d4;
}

/* Disciplina financiera - Rosa/Magenta */
.about-values__item:nth-child(7) .about-values__icon-wrapper::before {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
}
.about-values__item:nth-child(7) .about-values__icon {
    border-color: rgba(236, 72, 153, 0.2);
}
.about-values__item:nth-child(7) .about-values__icon i {
    color: #ec4899;
}
.about-values__item:nth-child(7) .about-values__content h3 {
    color: #ec4899;
}
.about-values__item:nth-child(7) .about-values__content h3::after {
    background: #ec4899;
}

.about-values__content p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin-top: 0.75rem;
}

/* --------------------------------------------------------
   ALIANZAS / PARTNERS
   -------------------------------------------------------- */
.about-partners {
    padding: 3rem 0 5rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.about-partners__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-partners__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-partners__title {
    font-size: clamp(1.5rem, 5vw, 3.4rem);
    font-weight: var(--font-weight-extrabold);
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.about-partners__subtitle {
    font-size: 1rem;
    color: #64748b;
}

.about-partners__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 480px) {
    .about-partners__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.about-partners__item {
    background: transparent;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Líneas divisorias verticales */
.about-partners__item::after {
    display: none;
}

.about-partners__logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    margin-bottom: 1rem;
}

.about-partners__logo-wrapper--dark {
    background-color: #0a0a0a;
    border-radius: 12px;
    padding: 1rem;
}

.about-partners__logo {
    height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.about-partners__item:hover .about-partners__logo {
    transform: scale(1.05);
}

.about-partners__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 480px) {
    .about-partners__name {
        font-size: 1rem;
    }
}

/* Línea decorativa en la base de cada logo */
.about-partners__line {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    margin-top: 0.5rem;
}

/* Colores de líneas por partner */
.about-partners__item:nth-child(1) .about-partners__line {
    background: #8b5cf6;
}

.about-partners__item:nth-child(2) .about-partners__line {
    background: #3b82f6;
}

.about-partners__item:nth-child(3) .about-partners__line {
    background: #06b6d4;
}

.about-partners__item:nth-child(4) .about-partners__line {
    background: #10b981;
}

/* --------------------------------------------------------
   PRESENCIA EN TODA LA REPÚBLICA MEXICANA
   -------------------------------------------------------- */
.about-presence {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.about-presence__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Dot patterns decorativos */
.about-presence__dots {
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(139, 92, 246, 0.3) 2px, transparent 2px);
    background-size: 10px 10px;
    pointer-events: none;
    z-index: 0;
}

.about-presence__dots--top-left {
    top: 2rem;
    left: 2rem;
}

.about-presence__dots--bottom-right {
    bottom: 2rem;
    right: 2rem;
}

/* Header */
.about-presence__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-presence__title {
    font-size: clamp(1.5rem, 5vw, 3.4rem);
    font-weight: var(--font-weight-extrabold);
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.about-presence__title--accent {
    color: #8b5cf6;
}

.about-presence__subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* Grid principal - móvil: una columna */
.about-presence__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Columna del mapa */
.about-presence__map-col {
    width: 100%;
    max-width: 420px;
}

.about-presence__map {
    position: relative;
}

.about-presence__map img {
    width: 100%;
    height: auto;
    display: block;
}

/* Columna de estadísticas */
.about-presence__stats-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    max-width: 400px;
}

/* Estadística individual */
.about-presence__stat {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

/* Icono con caja de color */
.about-presence__stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-presence__stat-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.about-presence__stat-icon--purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.about-presence__stat-icon--blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.about-presence__stat-icon--cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Contenido de la estadística */
.about-presence__stat-content {
    display: flex;
    flex-direction: column;
}

.about-presence__stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.about-presence__stat-label {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 0.375rem;
}

.about-presence__stat-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Card contenedora de estados */
.about-presence__states-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

@media (min-width: 480px) {
    .about-presence__states-card {
        padding: 1.5rem;
    }
}

.about-presence__states-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .about-presence__states-grid {
        gap: 0.75rem;
    }
}

.about-presence__states-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .about-presence__states-pill {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
        gap: 0.5rem;
    }
}

.about-presence__states-pill:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: #fff;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.about-presence__states-pill i {
    font-size: 0.75rem;
    color: #8b5cf6;
}

/* --------------------------------------------------------
   PRESENCIA - RESPONSIVE TABLET
   -------------------------------------------------------- */
@media (min-width: 768px) {
    .about-presence {
        padding: 5rem 0;
    }

    .about-presence__dots {
        width: 100px;
        height: 100px;
    }

    .about-presence__grid {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
    }

    .about-presence__map-col {
        max-width: 480px;
    }

    .about-presence__stats-col {
        flex-direction: row;
        justify-content: center;
        max-width: 100%;
        gap: 3rem;
    }

    .about-presence__stat-icon {
        width: 60px;
        height: 60px;
    }

    .about-presence__stat-icon i {
        font-size: 1.625rem;
    }

    .about-presence__stat-number {
        font-size: 2.5rem;
    }

    .about-presence__stat-label {
        font-size: 1.125rem;
    }

    .about-presence__stat-desc {
        font-size: 0.9375rem;
    }

    .about-presence__states-card {
        padding: 2rem;
    }

    .about-presence__states-pill {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* --------------------------------------------------------
   PRESENCIA - RESPONSIVE DESKTOP
   -------------------------------------------------------- */
@media (min-width: 1025px) {
    .about-presence {
        padding: 6rem 0;
    }

    .about-presence__dots {
        width: 120px;
        height: 120px;
    }

    .about-presence__dots--top-left {
        top: 3rem;
        left: 4rem;
    }

    .about-presence__dots--bottom-right {
        bottom: 3rem;
        right: 4rem;
    }

    .about-presence__header {
        margin-bottom: 4rem;
    }

    .about-presence__grid {
        flex-direction: row;
        gap: 6rem;
        margin-bottom: 5rem;
    }

    .about-presence__map-col {
        max-width: 650px;
    }

    .about-presence__stats-col {
        flex-direction: column;
        max-width: 420px;
        gap: 3rem;
    }

    .about-presence__stat-icon {
        width: 68px;
        height: 68px;
        border-radius: 16px;
    }

    .about-presence__stat-icon i {
        font-size: 1.75rem;
    }

    .about-presence__stat-number {
        font-size: 3rem;
    }

    .about-presence__stat-label {
        font-size: 1.25rem;
    }

    .about-presence__stat-desc {
        font-size: 1rem;
    }

    .about-presence__states-card {
        padding: 2.5rem 3.5rem;
        max-width: 950px;
        margin: 0 auto;
    }
}

/* --------------------------------------------------------
   CONTACTO / CTA
   -------------------------------------------------------- */
.about-contact {
    padding: 4rem 0;
    background: #fff;
}

.about-contact__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-contact__card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.about-contact__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.about-contact__text {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.about-contact__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-contact__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.9375rem;
}

.about-contact__item i {
    font-size: 1.25rem;
    color: #8b5cf6;
}

.about-contact__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-contact__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    color: #FFFFFF;
}

/* --------------------------------------------------------
   RESPONSIVE - TABLET
   -------------------------------------------------------- */
@media (min-width: 768px) {
    .about-hero {
        padding: 1.5rem 0 3rem;
    }

    .about-hero__container {
        padding: 0 2rem;
    }

    .about-hero__decor--dots {
        width: 100px;
        height: 100px;
    }

    .about-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .about-stats__item {
        padding: 1.5rem 1rem;
    }

    .about-hero__floating-icon {
        width: 80px;
        height: 80px;
        right: -30px;
    }

    /* Timeline horizontal en tablet+ */
    .about-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .about-timeline__card {
        padding: 1.5rem;
    }

    /* Dots ocultos individualmente - usamos track */
    .about-timeline__dot {
        display: none;
    }

    /* Línea individual oculta - usamos track */
    .about-timeline__line {
        display: none;
    }

    /* Track de timeline con línea y dots perfectamente alineados */
    .about-timeline__track {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        margin-top: 2rem;
        padding: 0 calc(12.5% - 8px);
    }

    /* Línea continua gris clara */
    .about-timeline__track::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 5%;
        right: 5%;
        height: 2px;
        background: #e2e8f0;
        transform: translateY(-50%);
        z-index: 1;
    }

    /* Nodos de colores */
    .about-timeline__node {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        position: relative;
        z-index: 2;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .about-timeline__node--purple {
        background: #8b5cf6;
    }

    .about-timeline__node--blue {
        background: #3b82f6;
    }

    .about-timeline__node--cyan {
        background: #06b6d4;
    }

    .about-timeline__node--green {
        background: #10b981;
    }

    /* Decoraciones visibles en tablet+ */
    .about-history__dots-decor {
        display: block;
    }

    .about-history__rocket-decor,
    .about-history__mountain-decor {
        display: block;
    }

    .about-mission__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Valores - flexbox para centrar filas */
    .about-values__grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .about-values__item {
        padding: 2rem 1rem;
        width: 25%;
        flex: 0 0 25%;
    }

    /* Los 3 últimos valores centrados */
    .about-values__item:nth-child(n+5) {
        width: 25%;
        flex: 0 0 25%;
    }

    /* Líneas divisorias verticales entre valores */
    .about-values__item::after {
        content: '';
        display: block;
        position: absolute;
        top: 20%;
        right: 0;
        width: 1px;
        height: 60%;
        background: #e2e8f0;
    }

    /* Quitar línea del último de cada fila visual */
    .about-values__item:nth-child(4)::after,
    .about-values__item:last-child::after {
        display: none;
    }

    /* Partners - 4 columnas con líneas divisorias */
    .about-partners__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    /* Líneas divisorias verticales entre partners */
    .about-partners__item:not(:last-child)::after {
        content: '';
        display: block;
        position: absolute;
        top: 20%;
        right: 0;
        width: 1px;
        height: 60%;
        background: #e2e8f0;
    }

    .about-contact__info {
        flex-direction: row;
        justify-content: center;
    }

    .about-contact__card {
        padding: 3rem;
    }
}

/* --------------------------------------------------------
   RESPONSIVE - DESKTOP
   -------------------------------------------------------- */
@media (min-width: 1025px) {
    .about-hero {
        padding: 1.5rem 0 4rem;
    }

    .about-hero__container {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .about-hero__content {
        flex: 1;
        max-width: 550px;
    }

    .about-hero__title {
        font-size: 2.75rem;
    }

    .about-hero__description {
        font-size: 1.0625rem;
    }

    .about-hero__stats-line {
        gap: 0.75rem;
    }

    .about-hero__stat-item {
        font-size: 1rem;
    }

    .about-hero__btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .about-hero__visual {
        flex: 1;
        justify-content: flex-end;
    }

    .about-hero__image-wrapper {
        max-width: 480px;
    }

    .about-hero__decor--circle-1 {
        width: 500px;
        height: 500px;
        top: -150px;
        right: -100px;
    }

    .about-hero__decor--circle-2 {
        width: 400px;
        height: 400px;
        bottom: -200px;
    }

    .about-hero__floating-icon {
        width: 90px;
        height: 90px;
        right: -40px;
    }

    .about-hero__floating-icon svg {
        width: 50px;
        height: 50px;
    }

    .about-stats {
        margin-top: 2rem;
    }

    .about-history {
        padding: 6rem 0;
    }

    .about-history__title {
        font-size: clamp(2.2rem, 3.15vw, 2.85rem);
    }

    /* Decoraciones más grandes en desktop */
    .about-history__dots-decor {
        width: 100px;
        height: 100px;
        top: 3rem;
        right: 4rem;
    }

    .about-history__rocket-decor {
        width: 80px;
        height: 80px;
        bottom: 4rem;
        left: 4rem;
    }

    .about-history__mountain-decor {
        width: 100px;
        height: 75px;
        bottom: 3rem;
        right: 5rem;
    }

    .about-mission {
        padding: 6rem 0;
    }

    .about-mission__card {
        padding: 3rem;
    }

    .about-values {
        padding: 6rem 0;
    }

    .about-values__title {
        font-size: clamp(2.2rem, 3.15vw, 2.85rem);
    }

    .about-values__grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-partners {
        padding: 5rem 0;
    }

    .about-partners__title {
        font-size: clamp(2.2rem, 3.15vw, 2.85rem);
    }

    .about-presence__title {
        font-size: clamp(2.2rem, 3.15vw, 2.85rem);
    }

    .about-contact {
        padding: 5rem 0;
    }
}

/* --------------------------------------------------------
   LARGE DESKTOP (1366px+)
   -------------------------------------------------------- */
@media (min-width: 1366px) {
    .about-history__title {
        font-size: 50px;
    }

    .about-values__title {
        font-size: 50px;
    }

    .about-partners__title {
        font-size: 50px;
    }

    .about-presence__title {
        font-size: 50px;
    }
}
