/* ========== HERO SOBRE ========== */
.sobre-hero {
    position: relative;
    height: calc(100vh - 71px);
    min-height: 500px;
    max-height: 780px;
    margin-top: 71px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

.sobre-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('images/imagem_igreja_hero.png');
    background-size: cover;
    background-position: center 30%;
    filter: saturate(1.1) brightness(0.85) contrast(1.05);
    z-index: 1;
}

.sobre-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 10, 40, 0.65) 0%,
        rgba(5, 10, 40, 0.30) 40%,
        rgba(5, 10, 40, 0.30) 60%,
        rgba(5, 10, 40, 0.80) 100%
    );
    z-index: 2;
}

.sobre-hero__content {
    position: relative;
    z-index: 3;
    max-width: 780px;
    padding: 20px;
}

.sobre-hero__tag {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fde68a;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.sobre-hero__title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 25px rgba(0,0,0,0.7);
    color: white;
}

.sobre-hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ========== INTRO ========== */
.sobre-intro {
    background: white;
}

.sobre-intro__lead {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.85;
    font-weight: 400;
    border-left: 4px solid #1e3a8a;
    padding-left: 24px;
    text-align: left;
}

/* ========== TIMELINE ========== */
.sobre-timeline {
    background: #f1f5f9;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Linha central */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #1e3a8a, #3b82f6, #8b5cf6);
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline__item {
    display: flex;
    margin-bottom: 48px;
    position: relative;
    align-items: flex-start;
}

.timeline__item--left {
    flex-direction: row-reverse;
}

/* Marcador central */
.timeline__marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(30,58,138,0.35);
    border: 3px solid #f1f5f9;
}

/* Conteúdo */
.timeline__content {
    width: calc(50% - 48px);
    background: white;
    border-radius: 18px;
    padding: 28px 30px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline__content:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(30,58,138,0.13);
}

.timeline__item--left .timeline__content {
    margin-right: 48px;
}

.timeline__item--right .timeline__content {
    margin-left: 48px;
}

.timeline__ano {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.timeline__titulo {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f2368;
    margin-bottom: 12px;
    line-height: 1.3;
}

.timeline__content p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 10px;
}

.timeline__content p:last-child {
    margin-bottom: 0;
}

.timeline__destaque {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-left: 3px solid #1e3a8a;
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 14px;
    position: relative;
}

.timeline__destaque i {
    color: #1e3a8a;
    font-size: 1.3rem;
    opacity: 0.4;
    margin-bottom: 6px;
    display: block;
}

.timeline__destaque p {
    font-style: italic;
    color: #1e3a8a;
    font-size: 0.9rem;
    margin: 0 !important;
    line-height: 1.6;
}

/* ========== CRENÇA ========== */
.sobre-crenca {
    background: white;
}

.crenca-card {
    background: linear-gradient(135deg, #f8faff, #eff6ff);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 2px solid #e8f0fe;
    transition: all 0.3s ease;
    height: 100%;
}

.crenca-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(30,58,138,0.12);
    border-color: #3b82f6;
}

.crenca-card__icone {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(59,130,246,0.3);
}

.crenca-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f2368;
    margin-bottom: 12px;
}

.crenca-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

/* ========== CTA ========== */
.sobre-cta {
    position: relative;
    background-image: url('images/imagem_igreja_hero_2.png');
    background-size: cover;
    background-position: center 55%;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.sobre-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,26,80,0.88), rgba(30,58,138,0.82));
}

.sobre-cta__content {
    position: relative;
    z-index: 2;
}

.sobre-cta__content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.sobre-cta__content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.sobre-cta__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 768px) {
    .sobre-hero__title { font-size: 2.2rem; }
    .sobre-hero__subtitle { font-size: 0.95rem; }

    .sobre-intro__lead { font-size: 1.05rem; }

    /* Timeline mobile — coluna única */
    .timeline::before {
        left: 24px;
    }

    .timeline__item,
    .timeline__item--left {
        flex-direction: row;
    }

    .timeline__marker {
        left: 24px;
    }

    .timeline__content {
        width: calc(100% - 72px);
        margin-left: 72px !important;
        margin-right: 0 !important;
        padding: 20px 20px;
    }

    .sobre-cta__content h2 { font-size: 1.9rem; }
    .sobre-cta__btns { flex-direction: column; align-items: center; }
    .sobre-cta__btns .btn { width: 100%; max-width: 300px; }
}

@media (max-width: 576px) {
    .sobre-hero__title { font-size: 1.9rem; }
    .timeline__content { padding: 16px; }
    .timeline__titulo { font-size: 1.05rem; }
}
