/* ================================
   PASTOR PAGE STYLES - Clean & Modern
   ================================ */

/* Hero Section - Título */
.pastor-hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pastor-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.pastor-hero .hero-content {
    position: relative;
    z-index: 1;
}

.pastor-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.pastor-hero .subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

/* Main Section - Two Columns */
.pastor-main {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.pastor-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column - Photo & Education */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.photo-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.photo-container img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.experience-badge .number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.experience-badge .label {
    display: block;
    font-size: 0.75rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.education-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.education-section h3 {
    font-size: 1.5rem;
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #F59E0B;
}

.education-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.education-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 1rem;
    border-left: 3px solid #2563EB;
}

.education-item .year {
    font-size: 0.875rem;
    font-weight: 700;
    color: #F59E0B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.education-item .degree {
    font-size: 1rem;
    font-weight: 600;
    color: #1E3A8A;
}

.education-item .institution {
    font-size: 0.875rem;
    color: #6B7280;
}

/* Right Column - Biography */
.right-column {
    display: flex;
    flex-direction: column;
}

.biography {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.biography h3 {
    font-size: 2rem;
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.biography h4 {
    font-size: 1.25rem;
    color: #1E3A8A;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.biography p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #F59E0B;
    margin: 2rem 0;
}

.highlight-box h4 {
    margin-top: 0;
    color: #92400E;
}

.highlight-box p {
    color: #78350F;
    margin-bottom: 0;
}

.family-note {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2563EB;
    margin-top: 2rem;
}

.family-note p {
    font-style: italic;
    color: #1E40AF;
    margin: 0;
    font-weight: 500;
}

/* CTA Section */
.pastor-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    position: relative;
    overflow: hidden;
}

.pastor-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
    color: #78350F;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #1E3A8A;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pastor-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .left-column {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pastor-hero {
        padding: 6rem 0 3rem;
    }

    .pastor-main {
        padding: 3rem 0;
    }

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

    .biography {
        padding: 2rem;
    }

    .education-section {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .pastor-hero h1 {
        font-size: 2rem;
    }

    .pastor-hero .subtitle {
        font-size: 1.1rem;
    }

    .biography {
        padding: 1.5rem;
    }

    .biography h3 {
        font-size: 1.5rem;
    }

    .education-section h3 {
        font-size: 1.25rem;
    }

    .experience-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }

    .experience-badge .number {
        font-size: 1.5rem;
    }
}
