/**
 * ============================================
 * SPKR CLOUD - ABOUT PAGE STYLES
 * ============================================
 * Estilos específicos da página sobre.
 * Depende de: variables.css, base.css, layout.css, components.css
 * ============================================
 */

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.about-section {
    padding: var(--space-20) 0;
}

.about-section--alt {
    background: var(--color-gray-100);
}

.about-section__container {
    max-width: 800px;
    margin: 0 auto;
}

.about-section__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: var(--font-extrabold);
    color: var(--color-primary-dark);
    margin-bottom: var(--space-6);
}

.about-section__title--center {
    text-align: center;
}

.about-section__text {
    font-size: var(--text-lg);
    line-height: 1.8;
    margin-bottom: var(--space-5);
}

.about-section__text:last-child {
    margin-bottom: 0;
}

.about-section__list {
    font-size: var(--text-lg);
    line-height: 2;
    padding-left: var(--space-6);
    margin-bottom: var(--space-5);
}

.about-section__text a {
    color: var(--color-primary);
}

.about-section__text a:hover {
    text-decoration: underline;
}

/* ============================================
   TECH GRID
   ============================================ */

.tech-section__subtitle {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-12);
    font-size: var(--text-lg);
    opacity: 0.75;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6);
}

.tech-card {
    background: var(--color-gray-100);
    border-radius: var(--radius-xl);
    padding: var(--space-7, 1.75rem);
}

.tech-card__title {
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    color: var(--color-primary-dark);
    margin-bottom: var(--space-2);
}

.tech-card__description {
    font-size: var(--text-sm);
    line-height: 1.6;
    opacity: 0.8;
}

/* ============================================
   CTA SECTION (about page)
   ============================================ */

.about-cta {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0ea5e9 100%);
    color: #ffffff;
    text-align: center;
}

.about-cta__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: var(--font-extrabold);
    margin-bottom: var(--space-4);
}

.about-cta__text {
    font-size: var(--text-lg);
    max-width: 540px;
    margin: 0 auto var(--space-8);
    opacity: 0.85;
}

.about-cta .btn--white {
    font-size: var(--text-lg);
    padding: var(--space-4) var(--space-10);
}
