/* Sobre - Página específica de sobre */

.hero--small {
    min-height: 40vh;
}

.hero--small .hero__content {
    padding: 60px 20px;
}

.hero--small h1 {
    font-size: 2.5rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.founder-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.founder-card__image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
}

.founder-card__content h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #000;
}

.founder-card__role {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FF0080;
    margin-bottom: 20px;
}

.founder-card__bio {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.founder-card__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    display: inline-block;
    background: #f0f0f0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #333;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #FF0080;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.reasons-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.reason-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.reason-item:last-child {
    border-bottom: none;
}

.reason-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF0080;
    line-height: 1;
}

.reason-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000;
}

.reason-content p {
    color: #666;
    line-height: 1.6;
}

.cta-wrapper {
    text-align: center;
    padding: 40px 20px;
}

.btn--large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.section--alt {
    background: #f9f9f9;
}

.section__subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}

.nav-links a.active {
    color: #FF0080;
    font-weight: 600;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 80px;
}

.footer__content p {
    margin: 8px 0;
}

@media (max-width: 768px) {
    .founder-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .founder-card__image {
        height: auto;
        max-height: 350px;
    }

    .hero--small h1 {
        font-size: 1.8rem;
    }

    .grid--3 {
        grid-template-columns: 1fr;
    }

    .reason-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }
}
