/* =========================================================
   Vocation Page - Hero Section
   ========================================================= */
.voc-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center; /* Centraliza o texto verticalmente */
    background-color: #1a100b; /* Fundo quente escuro (marrom/preto) */
}

/* --- Background com Efeito "Intimate Focus" --- */
.voc-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: left center; /* Foca nas mãos que estão na esquerda */
    z-index: 1;
    /* Zoom lento e profundo de 20s para gerar introspecção */
    animation: intimateFocus 20s ease-out forwards;
}

@keyframes intimateFocus {
    0% { transform: scale(1); filter: brightness(0.8); }
    100% { transform: scale(1.15); filter: brightness(1); }
}

/* --- Máscara (Scrim) Lateral --- */
.voc-hero-scrim {
    position: absolute;
    inset: 0;
    /* Gradiente vindo da direita, usando um tom quente para abraçar as cores da foto */
    background: linear-gradient(to left, rgba(25, 15, 10, 0.95) 0%, rgba(25, 15, 10, 0.7) 45%, rgba(25, 15, 10, 0) 100%);
    z-index: 2;
}

/* --- Container e Textos --- */
.voc-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end; /* Empurra o bloco de texto para a direita */
}

.voc-hero-content {
    max-width: 550px;
    text-align: right; /* Alinhamento fiel à arte */
}

/* Tipografia do Título */
.voc-hero-title {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8); /* Sombra para garantir impacto contra a roupa do frade */
}

/* Tipografia do Subtítulo */
.voc-hero-subtitle {
    font-family: var(--font-body), 'Google Sans', sans-serif;
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* Animação personalizada (Slide-in vindo da direita) */
.voc-hero-content .reveal-on-scroll {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.voc-hero-content .reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================================
   Responsividade (Telas Menores)
   ========================================================= */
@media (max-width: 992px) {
    .voc-hero-scrim {
        /* Aumenta a cobertura do gradiente no tablet */
        background: linear-gradient(to left, rgba(25, 15, 10, 0.95) 0%, rgba(25, 15, 10, 0.8) 60%, rgba(25, 15, 10, 0) 100%);
    }
}

@media (max-width: 768px) {
    .voc-hero {
        align-items: flex-end; /* Desce o texto para exibir bem as mãos no topo */
        padding-bottom: 80px;
        min-height: 80vh;
    }

    .voc-hero-bg {
        background-position: center 30%; /* Centraliza as mãos no mobile */
    }

    .voc-hero-scrim {
        /* Inverte o gradiente: no mobile a leitura é melhor se vier de baixo para cima */
        background: linear-gradient(to bottom, rgba(25, 15, 10, 0) 0%, rgba(25, 15, 10, 0.6) 40%, rgba(25, 15, 10, 0.95) 100%);
    }

    .voc-hero-container {
        justify-content: center; /* Centraliza o bloco todo */
        padding: 0 20px;
    }

    .voc-hero-content {
        max-width: 100%;
        text-align: center; /* Centraliza o texto no celular */
    }

    .voc-hero-subtitle br {
        display: none; /* Deixa o subtítulo fluir livremente em telas menores */
    }

    /* Muda a direção do efeito: agora sobe (slide-up) em vez de vir da lateral */
    .voc-hero-content .reveal-on-scroll {
        transform: translateY(30px);
    }
    .voc-hero-content .reveal-on-scroll.revealed {
        transform: translateY(0);
    }
}

/* =========================================================
   Vocation Page - The Call Section (Sessão 2)
   ========================================================= */
.voc-call {
    background-color: var(--primary-brown-dark, #453023); /* Fundo marrom fiel à arte */
    padding-top: 120px;
    /* Sem padding-bottom para permitir que a foto de baixo vaze sobre o branco do site */
}

.voc-call-container {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas */
    gap: 80px;
    align-items: center;
}

/* --- Área de Textos --- */
.voc-call-text {
    max-width: 500px;
    padding-bottom: 80px; /* Garante que o texto não cole embaixo */
}

.voc-call-text h2 {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(1.8rem, 2.8vw, 2.2rem);
    color: #ffffff;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.voc-call-text p {
    font-family: var(--font-body), 'Google Sans', sans-serif;
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.voc-call-text p strong {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-weight: 600;
    font-size: 1.05em;
    color: #ffffff;
}

/* Animação personalizada (Slide-in lateral da esquerda) */
.voc-call-text .reveal-on-scroll {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.voc-call-text .reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* --- Botão "Begin my discernment" --- */
.voc-btn {
    display: inline-block;
    background-color: var(--dark-navy, #122235);
    color: #ffffff;
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 2px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, background-color 0.4s ease;
}

.voc-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
    background-color: #1a2a3a;
    color: #ffffff;
}

/* --- Composição de Imagens --- */
.voc-call-visuals {
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.voc-call-img-top,
.voc-call-img-bottom {
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
}

/* Proporções baseadas na arte */
.voc-call-img-top {
    aspect-ratio: 4 / 3;
    z-index: 2;
}

.voc-call-img-bottom {
    aspect-ratio: 4 / 3;
    z-index: 3;
    /* O SEGREDO DO VAZAMENTO: Margem negativa que empurra a imagem para a área branca inferior */
    margin-bottom: -100px; 
}

.voc-call-visuals img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease;
}

/* O estado inicial da imagem de baixo: Preto e branco */
.voc-call-img-bottom img {
    filter: grayscale(100%);
}

/* A Interação Mágica no Hover (O Despertar) */
.voc-call-visuals:hover .voc-call-img-top {
    transform: translateY(-8px) translateX(-8px); /* Levita sutilmente */
    box-shadow: 10px 20px 40px rgba(0,0,0,0.4);
}

.voc-call-visuals:hover .voc-call-img-bottom {
    transform: translateY(8px) translateX(-8px); /* Abre uma leve fresta */
    box-shadow: 15px 25px 50px rgba(0,0,0,0.45);
}

.voc-call-visuals:hover .voc-call-img-top img {
    transform: scale(1.05); /* Zoom in top */
}

.voc-call-visuals:hover .voc-call-img-bottom img {
    transform: scale(1.05); /* Zoom in bottom */
    filter: grayscale(0%); /* A IMAGEM GANHA COR - Representando o Despertar da vocação */
}

/* =========================================================
   Responsividade (Telas Menores)
   ========================================================= */
@media (max-width: 992px) {
    .voc-call-container {
        grid-template-columns: 1fr; /* Empilha no tablet */
        gap: 50px;
    }

    /* INVERSÃO ESTRATÉGICA: No mobile, o texto fica em cima e as fotos embaixo.
       Isso permite que a foto continue vazando elegantemente para a próxima seção. */
    .voc-call-text {
        order: -1;
        max-width: 100%;
        text-align: center;
        padding-bottom: 0; /* Retira o padding inferior pois a imagem ficará abaixo */
    }
    
    .voc-call-text .reveal-on-scroll {
        transform: translateY(30px); /* Muda o slide para vertical */
    }

    .voc-call-visuals {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .voc-call {
        padding-top: 80px;
    }
    
    .voc-call-img-bottom {
        margin-bottom: -60px; /* Reduz o vazamento no celular */
    }
    
    /* Desativa a separação de layout no touch, mas mantém a transição de cor mágica se clicar */
    .voc-call-visuals:hover .voc-call-img-top,
    .voc-call-visuals:hover .voc-call-img-bottom {
        transform: none;
    }
}