/* Estilos compartidos para páginas secundarias */

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image .image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image i {
    font-size: 120px;
    color: white;
    opacity: 0.3;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission-section {
    padding: 80px 0;
    background: var(--light-color);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i {
    font-size: 36px;
    color: white;
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.mission-card p {
    color: var(--gray-color);
    line-height: 1.8;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    background: var(--light-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo i {
    font-size: 60px;
    color: var(--gray-color);
}

.team-member h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.member-bio {
    color: var(--gray-color);
    font-size: 14px;
}

.stats-section {
    padding: 80px 0;
    background: var(--dark-color);
    color: white;
    text-align: center;
}

.stats-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.cta-section {
    padding: 80px 0;
    background: var(--light-color);
}

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

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--gray-color);
    font-size: 20px;
    margin-bottom: 32px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 80px 0;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image i {
    font-size: 60px;
    color: white;
    opacity: 0.5;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 12px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-title a {
    color: var(--dark-color);
    text-decoration: none;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 16px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    gap: 12px;
}

/* Cases Page */
.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 0;
}

.case-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.case-image {
    height: 200px;
    background: var(--light-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image i {
    font-size: 80px;
    color: var(--gray-color);
    opacity: 0.3;
}

.case-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.case-meta {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 14px;
}

.case-description {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 24px;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.result-item {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.result-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.result-label {
    font-size: 14px;
    color: var(--gray-color);
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content .effective-date {
    background: var(--light-color);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-weight: 600;
}

.legal-section {
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid, .case-card {
        grid-template-columns: 1fr;
    }

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }

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

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

    .case-results {
        grid-template-columns: 1fr;
    }
}