/* about.css - Estilos específicos de about.html */

/* Hero fixed override for about */
.about-hero-section-fixed {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* History section spacing */
.history-section--spaced {
    padding-top: 80px;
}

/* Philosophy/manifesto section */
.philosophy-section--about {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding-bottom: 80px;
    padding-top: 100px;
}

.manifesto-glass-card {
    padding: 4rem 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

/* Tech label */
.tech-label {
    color: #888;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

/* Manifesto text highlight */
.manifesto-highlight {
    color: #fff;
    font-weight: 500;
}

/* Manifesto description */
.manifesto-description {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Metrics section */
.metrics-section--about {
    background-color: #000000;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metrics-description {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.metric-cell {
    padding: 2rem;
}

.metric-number {
    font-size: 5.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.metric-number-suffix {
    font-size: 2.5rem;
    color: #aaa;
}

.metric-label {
    color: #888;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-weight: 600;
}

.metric-divider {
    position: relative;
}

.metric-divider-line {
    position: absolute;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.metric-divider-line--left {
    left: 0;
}

.metric-divider-line--right {
    right: 0;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .philosophy-section--about {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .manifesto-glass-card {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section-fixed {
        min-height: 80vh;
    }

    .history-section--spaced {
        padding-top: 50px;
    }

    .philosophy-section--about {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .manifesto-glass-card {
        padding: 2rem 1.2rem;
        margin-bottom: 2rem;
    }

    .manifesto-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .metrics-section--about {
        padding: 60px 0;
    }

    .metric-cell {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .tech-label {
        letter-spacing: 2px;
        font-size: 0.72rem;
    }

    .metrics-description {
        font-size: 0.9rem;
    }
}
