.about-section {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
    padding-bottom: 4rem;
}

/* =========================================
   LADO IZQUIERDO (Visual)
========================================= */
.about-left {
    flex: 1;
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}
.about-visual {
    flex: 1;
    width: 100%;
}
.about-floating-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(3, 20, 31, 0.95) 0%, rgba(7, 30, 43, 0.85) 100%);
    border: 1px solid var(--bl-1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 90%;
    box-shadow: 0 10px 30px var(--tr-6);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
}
.about-floating-badge:hover {
    border-color: var(--tq-4);
}
.badge-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--tq-1);
    border-radius: 8px;
    background-color: var(--tr-4);
    flex-shrink: 0;
}
.badge-text {
    color: var(--tx-2);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =========================================
   LADO DERECHO (Contenido)
========================================= */
.about-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}
.about-title-wrapper {
    margin-bottom: 2rem;
}
.about-title-wrapper h2 {
    font-size: 3.5rem;
    color: var(--tx-1);
    margin-bottom: 0.5rem;
}
.title-underline {
    display: flex;
    align-items: center;
    gap: 10px;
}
.title-underline .line {
    width: 60px;
    height: 2px;
    background-color: var(--tq-1);
    box-shadow: 0 0 10px var(--tq-1);
}
.title-underline .dot {
    width: 6px;
    height: 6px;
    background-color: var(--tq-1);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--tq-1);
}
.about-description {
    color: var(--tx-2);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* =========================================
   TARJETAS Y TIMELINE
========================================= */
.about-cards-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 2.5rem;
    margin-bottom: 3rem;
}
.about-timeline {
    position: absolute;
    left: 6px;
    top: 25px;
    bottom: 25px;
    width: 2px;
    background: linear-gradient(180deg, var(--tq-1) 0%, var(--tq-4) 50%, transparent 100%);
}
.about-card {
    background: linear-gradient(90deg, rgba(7, 30, 43, 0.6) 0%, rgba(3, 20, 31, 0.3) 100%);
    border: 1px solid var(--bl-1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}
.about-card:hover {
    border-color: var(--tq-4);
    box-shadow: 0 5px 20px var(--tr-6), inset 0 0 10px var(--tr-1);
}
.card-timeline-dot {
    position: absolute;
    left: -2.85rem; 
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-color: var(--bg-1);
    border: 2px solid var(--tq-1);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}
.about-card:hover .card-timeline-dot {
    background-color: var(--tq-1);
    box-shadow: 0 0 12px var(--tq-1);
}
.about-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid var(--tq-4);
    background-color: var(--bg-5);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.about-card:hover .about-card-icon {
    border-color: var(--tq-1);
    box-shadow: 0 0 12px var(--tr-4);
}
.about-card-content {
    flex: 1;
}
.about-card-content h3 {
    color: var(--tx-1);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.about-card-content p {
    color: var(--tx-3);
    font-size: 0.9rem;
    line-height: 1.6;
}
.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 0.8rem;
}
.valores-grid li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--tx-2);
    font-size: 0.85rem;
}
.dot-list {
    width: 5px;
    height: 5px;
    background-color: var(--tq-1);
    border-radius: 50%;
}

/* =========================================
   FOOTER ABOUT (Características)
========================================= */
.about-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: transparent;
    border: 1px solid var(--bl-1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--tx-2);
    font-size: 0.9rem;
}
.feature-dot {
    width: 4px;
    height: 4px;
    background-color: var(--tq-4);
    border-radius: 50%;
}
.feature-icon-placeholder {
    width: 16px;
    height: 16px;
    border: 1px dashed var(--tq-4);
    border-radius: 3px;
}
