/* ============================================
   ABOUT SECTION — "¿Qué es Seamos Genios?"
   Bento Grid Layout + Trust Bar
   ============================================ */

.about-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0f0505 0%, #1a0808 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ====== BENTO GRID ====== */
.about-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 3.5rem;
}

/* Base bento card */
.bento-card {
    background: #0f0a0a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover {
    border-color: rgba(255, 107, 0, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.6);
}

.bento-card:hover::before {
    opacity: 1;
}

/* Logo Card — spans first column, 2 rows */
.bento-logo-card {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-height: 340px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.04) 0%, #0f0a0a 70%);
}

.bento-logo-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 220px;
    height: 220px;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 107, 0, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbitSpin 20s linear infinite;
}

.orbit-ring-2 {
    width: 260px;
    height: 260px;
    border-color: rgba(220, 38, 38, 0.08);
    animation-duration: 30s;
    animation-direction: reverse;
}

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

.bento-logo-img {
    width: 280px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.15));
    transition: transform 0.5s ease;
}

.bento-logo-card:hover .bento-logo-img {
    transform: scale(1.08);
}

.bento-logo-tagline {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.bento-logo-tagline strong {
    color: #f97316;
}

/* Feature Cards */
.bento-card-feature {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.bento-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(249, 115, 22, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
}

.bento-card-icon svg {
    stroke: #f97316;
}

.bento-card:hover .bento-card-icon {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.25), rgba(249, 115, 22, 0.25));
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.15);
}

.bento-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.3px;
}

.bento-card-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

.bento-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    width: fit-content;
}

/* Stats Card — spans 2 columns */
.bento-card-stats {
    grid-column: 2 / 4;
    background: radial-gradient(ellipse at top left, rgba(220, 38, 38, 0.08) 0%, #0f0a0a 60%);
    border-color: rgba(220, 38, 38, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.bento-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.2rem 0.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.bento-stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    border-color: rgba(249, 115, 22, 0.2);
}

.bento-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(180deg, #FFFFFF 30%, #ff9e4f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.bento-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    font-weight: 600;
}

/* ====== TRUST BAR ====== */
.about-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.trust-item svg {
    stroke: #f97316;
    flex-shrink: 0;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

/* ====== RESPONSIVE — About Section ====== */
@media (max-width: 968px) {
    .about-section {
        padding: 4rem 1.5rem;
    }

    .about-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .bento-logo-card {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 250px;
    }

    .bento-card-stats {
        grid-column: 1 / -1;
    }

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

    .about-trust-bar {
        gap: 1rem;
        padding: 1rem 1.5rem;
        border-radius: 20px;
    }

    .trust-divider {
        display: none;
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 3rem 1rem;
    }

    .about-bento-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 2.5rem;
    }

    .bento-logo-card {
        min-height: 220px;
    }

    .bento-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .bento-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .bento-stat-number {
        font-size: 1.6rem;
    }

    .bento-card-title {
        font-size: 1rem;
    }

    .bento-card-desc {
        font-size: 0.78rem;
    }

    .about-trust-bar {
        flex-direction: column;
        gap: 0.8rem;
        border-radius: 16px;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 2.5rem 0.8rem;
    }

    .bento-card {
        padding: 1.2rem;
        border-radius: 16px;
    }

    .bento-logo-img {
        width: 100px;
    }

    .bento-stat-number {
        font-size: 1.4rem;
    }

    .bento-stat-item {
        padding: 0.8rem 0.3rem;
    }
}
