/* SOBRE CSS - SECOOLINDA */

body {
    margin: 0;
    padding: 0;
}

/* ========== PAGE HERO ========== */
.page-hero {
    max-width: 1400px;
    margin: 2rem auto 3rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #7A0E13 0%, #A32025 100%);
    color: white;
    border-radius: 8px;
    text-align: center;
}

.hero-overlay {
    display: none;
}

.hero-content-wrapper {
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
}

.page-subtitle {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

/* ========== BREADCRUMB ========== */
.breadcrumb-container {
    background: #f9f9f9;
    padding: 1rem 2rem;
    max-width: 100%;
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    gap: 0.5rem;
}

.breadcrumb-item {
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: #7A0E13;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #F05A5C;
}

/* ========== ABOUT INTRO SECTION ========== */
.about-intro-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-intro-section .section-title {
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.about-text {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
    max-width: 900px;
    margin: 2rem auto 0;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.about-image {
    background: linear-gradient(135deg, #7A0E13, #A32025);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

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

.about-icon-large {
    font-size: 8rem;
    color: white;
    opacity: 0.3;
}

/* ========== TIMELINE SECTION ========== */
.timeline-section {
    padding: 80px 20px;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    color: #7A0E13;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #7A0E13 0%, #A32025 50%, #7A0E13 100%);
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 3rem;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #F05A5C;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #F05A5C;
    z-index: 2;
}

.timeline-content {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #F05A5C;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: 3px solid #F05A5C;
}

.timeline-item:nth-child(odd) .timeline-content {
    border-right: 3px solid #F05A5C;
    border-left: none;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: #7A0E13;
    margin-bottom: 0.3rem;
    font-weight: bold;
}

.timeline-year {
    color: #F05A5C;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========== MVV SECTION ========== */
.mvv-section {
    background: linear-gradient(135deg, #f5f5f5 0%, white 100%);
    padding: 80px 20px;
}

.mvv-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mvv-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #F05A5C;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(122,14,19,0.15);
}

.mvv-icon {
    font-size: 3rem;
    color: #F05A5C;
    margin-bottom: 1rem;
}

.mvv-card h3 {
    font-size: 1.5rem;
    color: #7A0E13;
    margin-bottom: 1rem;
    font-weight: bold;
}

.mvv-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ========== IMPACT SECTION ========== */
.impact-section {
    background: linear-gradient(135deg, #7A0E13 0%, #A32025 100%);
    padding: 80px 20px;
    color: white;
}

.impact-section .section-title {
    color: white;
    margin-bottom: 0.5rem;
}

.impact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.impact-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    border-color: #F05A5C;
}

.impact-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #F05A5C;
}

.impact-number span {
    font-size: 1.8rem;
}

.impact-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.impact-description {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ========== TEAM SECTION ========== */
.team-section {
    padding: 80px 20px;
    background: white;
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid transparent;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(122,14,19,0.15);
    border-color: #F05A5C;
}

.member-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #7A0E13 0%, #A32025 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    border: 3px solid #F05A5C;
}

.team-member h4 {
    font-size: 1.2rem;
    color: #7A0E13;
    margin-bottom: 0.3rem;
    font-weight: bold;
}

.member-position {
    color: #F05A5C;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.member-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ========== DIFERENTIALS SECTION ========== */
.diferentials-section {
    background: linear-gradient(135deg, #f5f5f5 0%, white 100%);
    padding: 80px 20px;
}

.diferentials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.diferential-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.diferential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(122,14,19,0.15);
}

.diferential-icon {
    font-size: 2.5rem;
    color: #F05A5C;
    margin-bottom: 1rem;
}

.diferential-item h4 {
    font-size: 1.1rem;
    color: #7A0E13;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.diferential-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ========== CTA SECTION ========== */
.sobre-cta {
    background: linear-gradient(135deg, #7A0E13 0%, #A32025 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.sobre-cta .container {
    max-width: 800px;
}

.sobre-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.sobre-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    padding: 16px 40px;
    background: white;
    color: #7A0E13;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cta:hover {
    background: #F05A5C;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* ========== MAIN CONTAINER ========== */
.sobre-main {
    background: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        margin-left: 100px;
        margin-right: 0;
        padding-left: 2rem;
        padding-right: 0;
        text-align: left;
    }

    .timeline-marker {
        left: 0;
        transform: translateX(0);
    }

    .timeline-content {
        border-left: 3px solid #F05A5C;
        border-right: none;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 20px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .about-intro-section {
        padding: 40px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text {
        padding: 25px;
    }

    .about-image {
        min-height: 200px;
    }

    .about-icon-large {
        font-size: 5rem;
    }

    .about-paragraph {
        font-size: 1rem;
        text-align: left;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .timeline-section,
    .mvv-section,
    .impact-section,
    .team-section,
    .diferentials-section {
        padding: 50px 20px;
    }

    .mvv-grid,
    .impact-grid,
    .team-grid,
    .diferentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .timeline-item {
        margin-bottom: 1.5rem;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .timeline-content {
        padding: 1.2rem;
    }

    .impact-number {
        font-size: 2rem;
    }

    .member-image {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 30px 15px;
    }

    .page-title {
        font-size: 1.4rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .about-intro-section {
        padding: 30px 15px;
    }

    .about-paragraph {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .timeline-section,
    .mvv-section,
    .impact-section,
    .team-section,
    .diferentials-section {
        padding: 30px 15px;
    }

    .mvv-grid,
    .impact-grid,
    .team-grid,
    .diferentials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline {
        padding: 1rem 0;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        margin-left: 70px;
        margin-right: 0;
        padding-left: 1.5rem;
        padding-right: 0;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-content {
        padding: 1rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .impact-number {
        font-size: 1.8rem;
    }

    .member-image {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .sobre-cta h2 {
        font-size: 1.5rem;
    }

    .sobre-cta p {
        font-size: 0.95rem;
    }
}




