/* ========================================
   ABOUT PAGE STYLES
   Modern About Us page design with RevBridge branding
   ======================================== */

/* CSS Variables - Scoped to about page content only */
.about-page {
    /* Cores herdadas do tema */
    --red-primary: var(--primary-color, #e81111);
    --red-dark: var(--primary-color-dark, #cc2d14);
    --green: var(--success-color, #10b981);
}

/* Body background */
body.about-page {
    background: hsl(24, 43%, 98%);
}

/* Base Styles */
.about-page {
    background: hsl(24, 43%, 98%);
}

.about-main {
    width: 100%;
    background: hsl(24, 43%, 98%);
    font-family: var(--font-family-primary, 'SystemFont', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    color: var(--gray-800, #1f2937);
}

.about-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4, 1rem);
}

@media (min-width: 768px) {
    .about-main .container {
        padding: 0 var(--space-8, 2rem);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.about-hero {
    padding: 6rem 0 4rem;
    background: transparent;
    text-align: center;
}

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

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-semibold);
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   MISSION SECTION
   ======================================== */

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

.about-mission .mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-mission .mission-content h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-semibold);
    color: #111827;
    margin-bottom: 1.5rem;
}

.about-mission .mission-content p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
}

.about-mission .mission-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 24px 64px -32px rgba(27, 31, 45, 0.25);
}

.about-mission .placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 1rem;
    padding: 4rem;
    min-height: 400px;
}

.about-mission .placeholder-image svg {
    color: #9ca3af;
}

/* ========================================
   STATS SECTION
   ======================================== */

.about-stats {
    padding: 4rem 0;
    background: var(--red-primary, var(--primary-color, #e81111));
    color: #ffffff;
}

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

.about-stats .stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.about-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-stats .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* ========================================
   VALUES SECTION
   ======================================== */

.about-values {
    padding: 5rem 0;
    background: hsl(24, 43%, 98%);
}

.about-values .section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.about-values .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.about-values .section-title p {
    font-size: 1.125rem;
    color: #6b7280;
}

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

.about-values .value-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 24px 64px -32px rgba(27, 31, 45, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    z-index: 1;
}

.about-values .value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px -32px rgba(27, 31, 45, 0.3);
}

.about-values .value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color, #e81111) 0%, #dc2626 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-values .value-icon svg {
    color: #ffffff;
}

.about-values .value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.about-values .value-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   STORY SECTION
   ======================================== */

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

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

.about-story h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    text-align: center;
}

.about-story .story-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
}

.about-story .story-text p {
    margin-bottom: 1.5rem;
}

.about-story .story-text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   TEAM SECTION
   ======================================== */

.about-team {
    padding: 5rem 0;
    background: hsl(24, 43%, 98%);
}

.about-team .section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.about-team .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.about-team .section-title p {
    font-size: 1.125rem;
    color: #6b7280;
}

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

.about-team .team-member {
    text-align: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 24px 64px -32px rgba(27, 31, 45, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    z-index: 1;
}

.about-team .team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px -32px rgba(27, 31, 45, 0.3);
}

.about-team .member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.about-team .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-team .placeholder-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-team .placeholder-avatar svg {
    color: #9ca3af;
}

.about-team .member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.about-team .member-role {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

/* Final CTA styles are in css/4-components/final-cta.css */
/* All final-cta styles are centralized there for consistency across all pages */


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .about-hero .hero-title {
        font-size: 3rem;
    }
    
    .about-mission .mission-grid {
        gap: 3rem;
    }
    
    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-team .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .about-mission {
        padding: 3rem 0;
    }
    
    .about-mission .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-mission .mission-content h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        padding: 3rem 0;
    }
    
    .about-stats .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-stats .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .about-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .about-values {
        padding: 3rem 0;
    }
    
    .about-values .section-title {
        margin-bottom: 2rem;
    }
    
    .about-values .section-title h2 {
        font-size: 2rem;
    }
    
    .about-values .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-values .value-card {
        padding: 2rem;
    }
    
    .about-story {
        padding: 3rem 0;
    }
    
    .about-story h2 {
        font-size: 2rem;
    }
    
    .about-story .story-text {
        font-size: 1rem;
    }
    
    .about-team {
        padding: 3rem 0;
    }
    
    .about-team .section-title h2 {
        font-size: 2rem;
    }
    
    .about-team .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Final CTA responsive styles are in css/4-components/final-cta.css */
    
}


