/* Estilos específicos para página Sobre Nosotros */

/* Secciones */
.section-light {
    background: #f8f9fa;
}

.section-dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.section-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

/* Headers de sección */
.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-header.white h2,
.section-header.white p {
    color: white;
}

.section-description {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 1rem auto 0;
}

/* Dividers */
.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.divider.white {
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.7) 100%);
}

/* Grids y Layouts */
.row-centered {
    display: flex;
    justify-content: center;
    margin: 0 -1rem;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 1rem;
}

.row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Mission Card */
.mission-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mission-card h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.mission-text {
    margin-top: 2rem;
}

.mission-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 1rem;
}

.mission-text p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.8;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.team-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.team-info h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.team-role {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.team-card-body {
    padding: 2rem;
}

.team-quote {
    font-style: italic;
    color: #4b5563;
    background: #f9fafb;
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-section {
    margin-bottom: 1.5rem;
}

.team-section:last-child {
    margin-bottom: 0;
}

.team-section h4 {
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.compact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compact-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.6;
}

.compact-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.process-step h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.step-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.step-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-items li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.step-items li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.info-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

/* Disclaimer Card */
.disclaimer-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 6px solid #f59e0b;
    border-radius: 12px;
    padding: 2.5rem;
}

.disclaimer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.disclaimer-card h3 {
    font-size: 1.5rem;
    color: #92400e;
    margin-bottom: 1rem;
}

.disclaimer-card p {
    color: #78350f;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.disclaimer-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.disclaimer-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #78350f;
    font-weight: 500;
}

.disclaimer-card ul li::before {
    content: "⚡";
    position: absolute;
    left: 0;
}

.disclaimer-card a {
    color: #92400e;
    text-decoration: underline;
    font-weight: 600;
}

.disclaimer-card a:hover {
    color: #78350f;
}

/* CTA Content */
.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.btn-lg {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .col-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-2 {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    .mission-card {
        padding: 2rem 1.5rem;
    }

    .mission-card h2 {
        font-size: 1.5rem;
    }

    .mission-text .lead {
        font-size: 1.1rem;
    }

    .team-card-header {
        flex-direction: column;
        text-align: center;
    }

    .avatar {
        width: 100px;
        height: 100px;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .section-cta {
        padding: 3rem 0;
    }
}
