/* --- Sobre Page Styles --- */


/* MISSION SECTION */
.mission-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

.mission-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.mission-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.mission-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
    line-height: 0;
    border: 1px solid var(--border);
}

.mission-image:hover {
    transform: translateY(-5px);
}

.mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* PILLARS SECTION */
.pillars-section {
    background: var(--bg-dark);
    color: white;
    padding: 7rem 0;
    text-align: center;
    position: relative;
}

.pillars-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    z-index: 0;
}

.pillars-section .container {
    position: relative;
    z-index: 1;
}

.pillars-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: white;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #60a5fa;
    margin: 0 auto 1.5rem;
}

.pillar-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.pillar-desc {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* STORY SECTION (New) */
.story-section {
    padding: 6rem 0;
    background: var(--bg-gray);
}

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

.story-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.story-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
}

.story-card p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-card::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    font-size: 4rem;
    color: rgba(29, 78, 216, 0.05);
    z-index: 0;
}

.story-card>* {
    position: relative;
    z-index: 1;
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-image {
        display: none;
    }

    .story-card {
        padding: 2.5rem 1.5rem;
    }

    .about-hero {
        padding: 5rem 0 4rem;
    }
}

@media (max-width: 600px) {
    .mission-content h2,
    .story-title,
    .pillars-section h2 {
        font-size: 2rem;
    }
}
