/* =========================================================
   Daily Life Page - Hero Section
   ========================================================= */
.dl-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    background-color: #1c1511; /* Fundo quente escuro fallback */
}

/* --- Background com Efeito "Fraternal Zoom" --- */
.dl-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%; /* Foco otimizado nos rostos dos frades */
    z-index: 1;
    /* Zoom suave que traz a fraternidade "para perto" do usuário */
    animation: fraternalZoom 25s ease-out forwards;
}

@keyframes fraternalZoom {
    0% { transform: scale(1); filter: brightness(0.9); }
    100% { transform: scale(1.15); filter: brightness(1.05); }
}

/* --- Máscara (Scrim) Cinematic Vignette --- */
.dl-hero-scrim {
    position: absolute;
    inset: 0;
    /* Combinação de radial (escurece as bordas) e linear (escurece a base para o título e menu) */
    background: 
        radial-gradient(circle at center, rgba(0,0,0,0) 20%, rgba(15, 10, 5, 0.6) 100%),
        linear-gradient(to bottom, rgba(15, 10, 5, 0.4) 0%, rgba(15, 10, 5, 0) 25%, rgba(15, 10, 5, 0) 60%, rgba(15, 10, 5, 0.85) 100%);
    z-index: 2;
}

/* --- Container e Textos --- */
.dl-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.dl-hero-content {
    display: inline-block;
}

/* Tipografia do Título Central */
.dl-hero-title {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 5px 25px rgba(0,0,0,0.8); /* Sombra difusa pesada para saltar do fundo */
}

/* --- Animação "Focus Reveal" (Câmera entrando em foco) --- */
.dl-hero-title.reveal-on-scroll.focus-in {
    opacity: 0;
    transform: scale(0.85); /* Começa menor */
    filter: blur(15px); /* Totalmente desfocado */
    letter-spacing: -0.05em; /* Letras levemente comprimidas */
    transition: opacity 1.5s ease-out, transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 1.5s ease-out, letter-spacing 1.5s ease-out;
}

.dl-hero-title.reveal-on-scroll.focus-in.revealed {
    opacity: 1;
    transform: scale(1);
    filter: blur(0); /* Entra em foco perfeito */
    letter-spacing: 0; /* Espaçamento normal */
}

/* =========================================================
   Responsividade (Telas Menores)
   ========================================================= */
@media (max-width: 768px) {
    .dl-hero {
        min-height: 80vh;
        padding-top: 60px; /* Compensa o menu superior */
    }

    .dl-hero-bg {
        background-position: center 20%; /* Sobe um pouco o foco no mobile para não cortar as cabeças */
    }

    .dl-hero-scrim {
        /* No celular, aumenta o peso da sombra na base para garantir leitura do texto */
        background: 
            radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(15, 10, 5, 0.7) 100%),
            linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(15, 10, 5, 0.9) 100%);
    }

    .dl-hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
}

/* =========================================================
   Daily Life Page - Routine Section (Sessão 2)
   ========================================================= */
.dl-routine {
    background-color: var(--site-bg, #f8f8f7); /* Fundo claro fiel à arte */
    padding: 100px 20px;
    overflow: hidden;
}

.dl-routine-container {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Área de Textos --- */
.dl-routine-text {
    max-width: 850px;
    text-align: center;
    margin-bottom: 70px;
}

.dl-routine-text h2 {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    color: var(--primary-brown-dark, #412f22);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.dl-routine-text p {
    font-family: var(--font-body), 'Google Sans', sans-serif;
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.dl-routine-text p:last-child {
    margin-bottom: 0;
}

/* Entrada dos Textos (Slide-up) */
.dl-routine-text .reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dl-routine-text .reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Tríptico Acordeão (Triptych Accordion) --- */
.dl-triptych {
    display: flex;
    width: 100%;
    height: 60vh; /* Altura imersiva */
    min-height: 400px;
    max-height: 600px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    /* Entrada da galeria como um todo */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dl-triptych.revealed {
    opacity: 1;
    transform: translateY(0);
}

.triptych-item {
    position: relative;
    flex: 1; /* Divide o espaço igualmente entre as 3 fotos */
    overflow: hidden;
    cursor: pointer;
    /* A transição do FLEX é o que cria o efeito Acordeão suave */
    transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

.triptych-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* O texto revelado e o fundo gradiente */
.triptych-overlay {
    position: absolute;
    inset: 0;
    /* Gradiente que vem de baixo para proteger a leitura do texto */
    background: linear-gradient(to top, rgba(43, 29, 20, 0.9) 0%, rgba(43, 29, 20, 0) 50%);
    display: flex;
    align-items: flex-end; /* Texto fica na base */
    justify-content: center;
    padding-bottom: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.triptych-overlay span {
    color: #ffffff;
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    transform: translateY(20px); /* Começa um pouco pra baixo */
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- A Mágica Interativa --- */
/* 1. Quando passar o mouse no container, escurece todos os itens levemente */
.dl-triptych:hover .triptych-item {
    filter: brightness(0.6) grayscale(30%);
}

/* 2. O item focado expande, clareia e revela o texto */
.dl-triptych .triptych-item:hover {
    flex: 1.6; /* Faz essa imagem ficar maior que as outras */
    filter: brightness(1) grayscale(0%);
}

.dl-triptych .triptych-item:hover img {
    transform: scale(1.05); /* Zoom sutil interno */
}

.dl-triptych .triptych-item:hover .triptych-overlay {
    opacity: 1; /* Revela o degradê */
}

.dl-triptych .triptych-item:hover .triptych-overlay span {
    transform: translateY(0); /* O texto sobe pro lugar */
}

/* =========================================================
   Responsividade (Telas Menores)
   ========================================================= */
@media (max-width: 992px) {
    .dl-triptych {
        height: 45vh;
    }
}

@media (max-width: 768px) {
    .dl-routine {
        padding: 80px 20px;
    }

    .dl-routine-text {
        margin-bottom: 50px;
    }

    /* No celular, empilha as fotos verticalmente */
    .dl-triptych {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .triptych-item {
        height: 250px; /* Altura fixa para cada foto no mobile */
        flex: none !important; /* Desativa o acordeão no mobile */
    }

    /* Como não tem hover no mobile, deixa o texto sempre visível */
    .dl-triptych:hover .triptych-item {
        filter: none;
    }
    
    .triptych-overlay {
        opacity: 1;
        padding-bottom: 25px;
    }

    .triptych-overlay span {
        transform: translateY(0);
        font-size: 1.1rem;
    }
}

/* =========================================================
   Daily Life Page - Prayer Section (Sessão 3)
   ========================================================= */
.dl-prayer {
    background-color: #231a15; /* Marrom ultra escuro, puxado pro café */
    padding: 120px 20px;
    overflow: hidden;
    color: #ffffff;
}

.dl-prayer-container {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
}

/* --- Cabeçalho e Linha Animada --- */
.prayer-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.prayer-header h2 {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 600;
    margin: 0;
    white-space: nowrap; /* Impede a quebra do título */
    letter-spacing: -0.01em;
}

/* A linha que estica */
.prayer-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 0; /* Inicia zerada */
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prayer-header.revealed .prayer-line {
    width: 100%; /* Estica até preencher o espaço restante da tela */
}

/* --- Grid de Conteúdo --- */
.prayer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas */
    gap: 80px;
}

.prayer-intro 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: 1.5rem;
}

/* --- Efeito Interativo: Sacred Reveal --- */
.prayer-list {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre os blocos */
    margin-top: 30px;
}

.prayer-item {
    position: relative;
    padding: 15px 0 15px 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.1); /* Linha lateral sutil */
    cursor: pointer;
    transition: border-color 0.4s ease, background-color 0.4s ease;
}

.prayer-item h3 {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7); /* Título levemente opaco */
    letter-spacing: 0.05em;
    margin: 0;
    transition: color 0.4s ease;
}

/* A Mágica de esconder o texto animadamente usando CSS Grid */
.prayer-desc {
    display: grid;
    grid-template-rows: 0fr; /* Oculta definindo altura do grid como 0 */
    opacity: 0;
    transition: grid-template-rows 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease, padding 0.5s ease;
}

.prayer-desc-inner {
    overflow: hidden; /* Corta o conteúdo quando a altura é 0 */
}

.prayer-desc p {
    font-family: var(--font-body), 'Google Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

/* O que acontece no HOVER */
.prayer-item:hover {
    border-left-color: #c9a35e; /* Linha fica dourada */
    background-color: rgba(255, 255, 255, 0.03); /* Levíssimo fundo de destaque */
}

.prayer-item:hover h3 {
    color: #ffffff; /* Título acende */
}

.prayer-item:hover .prayer-desc {
    grid-template-rows: 1fr; /* O grid se expande para o tamanho real do texto! */
    opacity: 1; /* Revela o texto */
    padding-top: 10px; /* Dá um respiro */
}

/* Animações de entrada (Cascata Subindo) */
.prayer-intro.reveal-on-scroll,
.prayer-item.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prayer-intro.reveal-on-scroll.revealed,
.prayer-item.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   Responsividade (Telas Menores)
   ========================================================= */
@media (max-width: 992px) {
    .prayer-grid {
        grid-template-columns: 1fr; /* Empilha no tablet */
        gap: 20px;
    }
    
    .prayer-col-right {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .dl-prayer {
        padding: 80px 20px;
    }

    .prayer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .prayer-header h2 {
        white-space: normal; /* Permite quebrar linha no celular */
    }

    /* Como celulares não têm "Hover" (passar o mouse), nós forçamos o texto a ficar 
       aberto permanentemente no mobile, garantindo que ninguém perca o conteúdo! */
    .prayer-desc {
        grid-template-rows: 1fr;
        opacity: 1;
        padding-top: 10px;
    }
    .prayer-item h3 {
        color: #ffffff; /* Títulos sempre acesos no mobile */
    }
}

/* =========================================================
   Daily Life Page - Fraternity & Mission Section (Sessão 4)
   ========================================================= */
.dl-fraternity {
    background-color: var(--site-bg, #f8f8f7);
    padding: 100px 20px 140px 20px;
    overflow: hidden; /* Evita scroll horizontal mas permite as margens negativas atuarem */
}

.dl-frat-container {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 120px; /* Muito espaço para o vazamento das fotos respirar */
}

/* --- Cabeçalho e Destaque Desenhado --- */
.frat-header {
    text-align: center;
    margin-bottom: -20px;
}

.frat-header h2 {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: #121c26; /* Azul quase preto, muito elegante */
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.01em;
}

/* A mágica da caixa azul desenhada à mão */
.highlight-box {
    position: relative;
    display: inline-block;
    padding: 4px 8px;
    white-space: nowrap;
    z-index: 1;
}

.highlight-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid #5da2d5; /* Azul claro da arte */
    border-radius: 4px;
    z-index: -1;
    /* Inicia transparente e menor */
    opacity: 0;
    transform: scale(0.9) rotate(-2deg); 
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.frat-header.reveal-on-scroll.revealed .highlight-box::after {
    opacity: 1;
    transform: scale(1) rotate(0deg); /* Anima para o lugar como se estivesse sendo riscada */
    transition-delay: 0.5s;
}

/* --- Layout Zigue-Zague --- */
.frat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* --- Caixa Azul de Textos --- */
.frat-blue-box {
    background-color: var(--dark-navy, #122235);
    color: #ffffff;
    padding: 70px 60px;
    box-shadow: 0 20px 40px rgba(18, 34, 53, 0.1);
    transition: transform 0.6s ease;
    z-index: 1;
}

.frat-blue-box h3 {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
}

.frat-blue-box 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.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.frat-blue-box p:last-child {
    margin-bottom: 0;
}

/* --- A Imagem que Vaza (Bleeding Image) --- */
.frat-img-box {
    position: relative;
    width: 100%;
    /* ESTE É O SEGREDO DO VAZAMENTO: A imagem fica mais alta que o container e puxa para fora */
    margin-top: -60px;
    margin-bottom: -60px;
    aspect-ratio: 4 / 5;
    z-index: 2; /* Fica por cima da caixa azul */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
}

/* Ajustes finos de vazamento lateral para encavalar na caixa azul */
.leak-right {
    margin-left: -30px;
}
.leak-left {
    margin-right: -30px;
}

.frat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover Reveal - O texto que aparece ao passar o mouse */
.frat-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 34, 53, 0.9) 0%, rgba(18, 34, 53, 0) 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.frat-img-overlay span {
    color: #ffffff;
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* A Interação 3D Magnética */
.frat-row:hover .frat-img-box {
    transform: translateY(-10px); /* A foto levita */
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.frat-row:hover .frat-blue-box {
    transform: scale(0.98); /* A caixa azul afunda de leve para dar destaque à foto */
}

.frat-img-box:hover img {
    transform: scale(1.06); /* Zoom interno na foto */
}

.frat-img-box:hover .frat-img-overlay {
    opacity: 1; /* Revela o texto */
}

.frat-img-box:hover .frat-img-overlay span {
    transform: translateY(0);
}

/* --- Coreografia de Entrada (Reveal Animations) --- */
.dl-fraternity .reveal-on-scroll {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dl-fraternity .reveal-left { transform: translateX(-40px); }
.dl-fraternity .reveal-right { transform: translateX(40px); }
.frat-header.reveal-on-scroll { transform: translateY(30px); }

.dl-fraternity .reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* =========================================================
   Responsividade (Telas Menores)
   ========================================================= */
@media (max-width: 992px) {
    .dl-frat-container {
        gap: 80px; /* Reduz espaço entre as seções */
    }

    .frat-row {
        grid-template-columns: 1fr; /* Empilha colunas no tablet */
    }

    .frat-blue-box {
        padding: 50px 40px;
        order: 2; /* Texto sempre abaixo da foto no mobile */
    }

    .frat-img-box {
        max-width: 600px;
        margin: 0 auto !important; /* Desativa os vazamentos bizarros em tela pequena */
        order: 1;
        aspect-ratio: 16 / 10; /* Deixa a imagem mais paisagem no celular */
        z-index: 1;
    }

    .reverse-row .frat-img-box {
        order: 1;
    }
    .reverse-row .frat-blue-box {
        order: 2;
    }

    /* Muda a animação lateral para vertical no mobile */
    .dl-fraternity .reveal-left, 
    .dl-fraternity .reveal-right {
        transform: translateY(30px);
    }
}

@media (max-width: 768px) {
    .frat-header h2 br {
        display: none; /* Deixa o texto do topo fluir */
    }

    .frat-blue-box {
        padding: 40px 20px;
        text-align: center;
    }

    /* Em telas de toque, mantém o texto de hover visível sempre */
    .frat-img-overlay {
        opacity: 1;
        padding-bottom: 20px;
    }
    .frat-img-overlay span {
        transform: translateY(0);
        font-size: 1.1rem;
    }
    
    /* Desativa efeitos de hover magnéticos */
    .frat-row:hover .frat-img-box { transform: none; box-shadow: 0 15px 35px rgba(0,0,0,0.2); }
    .frat-row:hover .frat-blue-box { transform: none; }
    .frat-img-box:hover img { transform: none; }
}

/* =========================================================
   Daily Life Page - A Yes Renewed (Sessão 5)
   ========================================================= */
.dl-renewed {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-color: #050505;
    overflow: hidden;
}

/* --- Parallax Monocromático --- */
.dl-renewed-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    background-attachment: fixed; 
    filter: grayscale(100%) brightness(0.95); 
    z-index: 1;
}

.dl-renewed-scrim {
    position: absolute;
    inset: 0;
    /* Suavizamos o gradiente para não apagar a imagem */
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.dl-renewed-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Lado Esquerdo (Título) */
.renewed-title h2 {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: #ffffff;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Lado Direito (Texto) */
.renewed-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: 0;
}

/* Animações de Entrada ("Abraço") */
.renewed-title.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);
}
.renewed-title.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateX(0);
}

.renewed-text.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);
}
.renewed-text.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================================
   Daily Life Page - Faithful Daily (Sessão 6)
   ========================================================= */
.dl-faithful {
    background-color: var(--site-bg, #f8f8f7);
    padding: 120px 20px;
    text-align: center;
}

.dl-faithful-container {
    max-width: 900px;
    margin: 0 auto;
}

.dl-faithful-container p {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--dark-navy, #122235);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.01em;
}

/* --- A Mágica: "Marker Arrow" desenhada no scroll --- */
.highlight-arrow {
    position: relative;
    display: inline-block;
    padding: 2px 10px;
    white-space: nowrap;
    z-index: 1;
}

/* 1. O Corpo da Caixa Azul */
.highlight-arrow::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid #63a4ff; /* Azul da arte */
    border-radius: 2px;
    z-index: -1;
    width: 0%; /* Começa invisível e esmagado à esquerda */
    opacity: 0;
    transition: width 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, opacity 0.1s 0.3s;
}

/* 2. A Ponta da Seta no topo direito */
.highlight-arrow::after {
    content: '';
    position: absolute;
    top: -5px; /* Alinhado com a borda de cima */
    right: -10px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #63a4ff;
    border-right: 3px solid #63a4ff;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease 1.1s; /* Só aparece quando a caixa termina de desenhar */
}

/* Ativadores da Animação via Scroll */
.dl-faithful-container.revealed .highlight-arrow::before {
    width: 100%;
    opacity: 1;
}

.dl-faithful-container.revealed .highlight-arrow::after {
    opacity: 1;
}

/* Entrada do Texto em si (Sobe do chão) */
.dl-faithful-container.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dl-faithful-container.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   Responsividade (Telas Menores)
   ========================================================= */
@media (max-width: 992px) {
    .dl-renewed-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .dl-renewed-scrim {
        background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.7) 100%);
    }

    /* Muda a animação lateral para vertical no mobile */
    .renewed-title.reveal-on-scroll,
    .renewed-text.reveal-on-scroll {
        transform: translateY(30px);
    }
}

@media (max-width: 768px) {
    .dl-renewed {
        padding: 60px 0;
        min-height: 50vh;
    }

    .dl-renewed-bg {
        background-attachment: scroll; /* Desativa parallax no mobile por segurança */
    }

    .dl-faithful {
        padding: 80px 20px;
    }

    .renewed-title h2 br,
    .renewed-text p br,
    .dl-faithful-container p br {
        display: none; /* Deixa o texto fluir na tela do celular */
    }
}