/* =========================================================
   Hero Section & Carousel
   ========================================================= */
.hero-section {
    position: relative;
    height: 100vh; /* Ocupa 100% da altura da tela */
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-navy);
}

.carousel-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.8s var(--ease-in-out);
}

.carousel-slide {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagem de Fundo */
.hero-bg {
    position: absolute;
    inset: 0; /* Substitui top:0, left:0, width:100%, height:100% */
    background-size: cover;
    background-position: center 20%; /* Foca mais no rosto do frade */
    z-index: 1;
}

/* Sobreposição escura para destacar o texto */
.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 2;
}

/* Conteúdo Principal */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    width: var(--container-width);
    max-width: var(--container-max);
    padding: 0 20px;
    margin-top: 50px; /* Compensa o espaço do header transparente */
}

/* Título Dividido */
.hero-title-wrapper {
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem); /* Tamanho fluido: cresce com a tela */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
    display: flex;
    justify-content: space-between; /* Empurra os textos para as bordas, deixando o centro livre para o rosto */
    align-items: center;
    margin: 0;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.hero-title span {
    text-align: left;
}

.hero-title .title-right {
    text-align: right;
}

/* Subtítulo */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    opacity: 0.95;
}

/* Grupo de Botões */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap; /* Permite quebrar linha no celular */
}

/* Design Base dos Botões */
.btn {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border: 1px solid transparent;
    transition: var(--hover-transition);
    cursor: pointer;
}

/* Botão Azul Escuro */
.btn-navy {
    background-color: var(--dark-navy);
    color: #fff;
}

.btn-navy:hover {
    background-color: transparent;
    border-color: #fff;
    transform: translateY(-3px); /* Animação de flutuação */
}

/* Botão Marrom Escuro */
.btn-brown {
    background-color: var(--primary-brown-dark);
    color: #fff;
    opacity: 0.9;
}

.btn-brown:hover {
    background-color: transparent;
    border-color: #fff;
    opacity: 1;
    transform: translateY(-3px);
}

/* Ocultando indicadores do carrossel se houver só 1 slide */
.carousel-indicators {
    display: none;
}

/* =========================================================
   Responsividade (Telas Menores)
   ========================================================= */
@media (max-width: 992px) {
    .hero-title {
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-title span {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   About / History Section
   ========================================================= */
.about-section {
    background-color: var(--site-bg); /* Puxa a cor de fundo do seu variables.css */
    padding: 120px 20px;
    overflow: hidden;
}

.about-container {
    width: 100%;
    max-width: var(--container-max); /* Respeita o tamanho máximo do site */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide em 2 colunas iguais */
    gap: 60px;
    align-items: center; /* Centraliza verticalmente */
}

/* --- Tipografia do Texto --- */
.about-text {
    max-width: 540px; /* Evita que o texto fique muito esticado */
}

.about-text h2 {
    font-family: 'Montreal', var(--font-display);
    font-weight: 500; /* Montreal Medium */
    color: var(--primary-brown-dark); /* Marrom escuro elegante */
    font-size: clamp(2rem, 3.5vw, 2.6rem); /* Tamanho fluido */
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.about-text p {
    font-family: 'Google Sans', var(--font-body);
    font-weight: 400; /* Google Sans Regular */
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* --- Composição de Imagens Sobrepostas --- */
.about-images {
    position: relative;
    width: 100%;
    height: 550px; /* Altura base da composição no desktop */
}

/* Imagem de Trás (Maior) */
.img-back {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 85%;
    overflow: hidden;
    /* Sombra suave para dar profundidade */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
    transition: transform 0.6s var(--ease-out);
}

.img-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Imagem da Frente (Menor) */
.img-front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 65%;
    /* A borda grossa com a cor do site cria o recorte perfeito na imagem de trás */
    border: 12px solid var(--site-bg); 
    overflow: hidden;
    box-shadow: -10px 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.6s var(--ease-out);
    z-index: 2;
}

.img-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Efeito Interativo ao passar o mouse */
.about-images:hover .img-back {
    transform: scale(1.03) translate(5px, -5px);
}
.about-images:hover .img-front {
    transform: scale(1.03) translate(-5px, 5px);
}

/* =========================================================
   Responsividade (Telas Menores)
   ========================================================= */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr; /* Quebra para 1 coluna */
        gap: 50px;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-images {
        height: 480px;
        max-width: 650px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 70px 20px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }

    .about-images {
        height: 380px;
    }
    
    .img-front {
        border-width: 8px; /* Borda menor no celular */
        width: 65%; /* Ocupa um pouco mais de espaço no celular */
    }
}

/* =========================================================
   Sessão 3 - Charism Section
   ========================================================= */
.charism-section {
    position: relative;
    width: 100%;
    min-height: 90vh; /* Altura generosa para acomodar o texto */
    display: flex;
    align-items: center;
    background-color: var(--dark-navy); /* Cor de fallback */
    overflow: hidden;
}

.charism-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: left center; /* Foca na esquerda onde está o rosto */
    filter: grayscale(100%) contrast(1.1); /* Mantém o clima P&B dramático da arte */
    z-index: 1;
}

.charism-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 45%, rgba(0,0,0,0.95) 100%);
    z-index: 2;
}

.charism-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    justify-content: flex-end; /* Empurra o container de texto para a direita */
}

.charism-content {
    max-width: 680px; /* Largura ideal para não ficar muito largo */
    text-align: right; /* Alinha o texto à direita como na arte */
    color: #fff;
}

.charism-content h2 {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.charism-content p {
    font-family: var(--font-body), 'Google Sans', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.charism-content p:last-child {
    margin-bottom: 0;
}

.charism-content strong {
    font-weight: 700;
    color: #fff;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out, ease-out), transform 0.8s var(--ease-out, ease-out);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   Responsividade (Telas Menores)
   ========================================================= */
@media (max-width: 992px) {
    .charism-scrim {
        background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.95) 100%);
    }

    .charism-container {
        justify-content: center;
        align-items: flex-end;
    }

    .charism-content {
        margin-top: 250px; /* Dá espaço para ver o frade no topo */
        text-align: center; /* Centraliza o texto no celular */
    }
}

/* =========================================================
   Sessão 4 - Mission / Hope Section
   ========================================================= */
.mission-section {
    background-color: #F8F8F7; /* Fundo off-white da arte */
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
}

.mission-container {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
}

/* Textos da sessão */
.mission-header {
    max-width: 850px;
    margin: 0 auto 50px auto;
}

.mission-header h2 {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: #3b2818; /* Marrom escuro parecido com sua arte */
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-header h3 {
    font-family: var(--font-body), 'Google Sans', sans-serif;
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: #4a4a4a;
    font-weight: 400;
    margin-bottom: 25px;
}

.mission-header p {
    font-family: var(--font-body), 'Google Sans', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Galeria de Imagens (Scroll Flexível) */
.mission-gallery-wrapper {
    position: relative;
    width: 100%;
}

.mission-gallery {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Faz a imagem "encaixar" na tela no celular */
    scrollbar-width: none; /* Esconde barra de rolagem no Firefox */
    -ms-overflow-style: none; /* Esconde barra de rolagem no IE/Edge */
}

.mission-gallery::-webkit-scrollbar {
    display: none; /* Esconde barra de rolagem no Chrome/Safari */
}

.gallery-item {
    flex: 0 0 33.3333%; /* Mostra 3 imagens por vez no Desktop */
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    aspect-ratio: 4 / 5; /* Mantém as imagens em formato retrato */
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animação de Hover (Efeito e Texto) */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-overlay span {
    color: #fff;
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

.gallery-item:hover img {
    transform: scale(1.08); /* Zoom sutil na imagem */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1; /* Mostra o escuro */
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0); /* Sobe o texto */
}

/* Pontinhos de navegação (Dots) */
.mission-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.mission-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d1d1;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    padding: 0;
}

.mission-dots .dot.active {
    background-color: #3b2818; /* Cor marrom ativa */
    transform: scale(1.3);
}

/* =========================================================
   Responsividade (Telas Menores)
   ========================================================= */
@media (max-width: 992px) {
    .gallery-item {
        flex: 0 0 50%; /* Mostra 2 por vez no Tablet */
    }
}

@media (max-width: 650px) {
    .mission-section {
        padding: 70px 20px;
    }
    
    .gallery-item {
        flex: 0 0 100%; /* Mostra 1 por vez no Celular */
    }
    
    /* No celular, mantemos o texto sempre visível por conta do toque */
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    }
    .gallery-overlay span {
        transform: translateY(0);
        font-size: 1.1rem;
    }
}

/* =========================================================
   Sessão 5 - Vocation & Call to Action
   ========================================================= */
.vocation-section {
    position: relative;
    width: 100%;
    /* Fundo claro para a parte superior, herdando o padrão do site */
    background-color: var(--site-bg, #F8F8F7); 
    display: flex;
    flex-direction: column;
}

/* --- Container Superior & Card Azul --- */
.vocation-top {
    padding: 80px 20px 0 20px;
    position: relative;
    z-index: 2; /* Garante que fique acima da parte marrom */
}

.vocation-card-container {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    position: relative;
}

.vocation-card {
    background-color: var(--dark-navy);
    display: flex;
    align-items: stretch;
    margin-left: 60px; /* Espaço para a imagem "vazar" pela esquerda */
    padding: 60px 60px 60px 0; /* Padding apenas nos cantos sem imagem */
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.vocation-image {
    width: 45%;
    flex-shrink: 0;
    position: relative;
    /* Move a imagem para fora do card (esquerda e para baixo) para dar o efeito 3D */
    transform: translateX(-60px) translateY(40px); 
    z-index: 3;
}

.vocation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 5px 15px 35px rgba(0,0,0,0.3);
}

.vocation-text {
    width: 55%;
    color: #fff;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vocation-text h3 {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    font-weight: 500;
    margin-bottom: 15px;
    color: #f1ede6; /* Tom levemente areia como na arte */
    letter-spacing: 0.02em;
}

.vocation-text h3:not(:first-child) {
    margin-top: 40px; /* Dá respiro entre os blocos de texto */
}

.vocation-text p {
    font-family: var(--font-body), 'Google Sans', sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.05rem);
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
}

/* --- Container Inferior Marrom --- */
.vocation-bottom {
    background-color: var(--primary-brown-dark, #412f22);
    /* Muito padding no topo para compensar a margem negativa que puxa o fundo pra cima */
    padding: 160px 20px 90px 20px; 
    margin-top: -80px; /* Puxa a sessão marrom para trás do card azul */
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff;
}

.vocation-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.vocation-cta-content h2 {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 15px;
}

.vocation-subtitle {
    font-family: var(--font-body), 'Google Sans', sans-serif;
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.9;
}

.vocation-poem {
    font-family: var(--font-body), 'Google Sans', sans-serif;
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 50px;
}

.vocation-discernment {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 25px;
    opacity: 0.85;
}

/* =========================================================
   Responsividade (Sessão 5)
   ========================================================= */
@media (max-width: 992px) {
    .vocation-card {
        flex-direction: column;
        margin-left: 0;
        padding: 40px 30px;
        align-items: center;
        text-align: center;
    }

    .vocation-image {
        width: 100%;
        max-width: 600px;
        /* No mobile/tablet a imagem sobe, vazando pelo topo em vez da lateral */
        transform: translateX(0) translateY(-70px); 
        margin-bottom: -40px; 
    }

    .vocation-text {
        width: 100%;
        padding-left: 0;
    }
    
    .vocation-text h3 {
        text-align: center;
    }
    
    .vocation-bottom {
        padding-top: 120px;
    }
}

@media (max-width: 576px) {
    .vocation-top {
        padding-top: 50px;
    }

    .vocation-card {
        padding: 20px;
    }

    .vocation-image {
        transform: translateX(0) translateY(-50px);
        margin-bottom: -20px;
    }
    
    .vocation-bottom {
        padding-top: 90px;
        padding-bottom: 60px;
    }
}

/* =========================================================
   Sessão 6 - Join the Mission
   ========================================================= */
.join-mission-section {
    background-color: var(--site-bg, #F8F8F7);
    padding: 120px 20px;
    overflow: hidden;
}

.join-mission-container {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide meio a meio no Desktop */
    gap: 80px;
    align-items: center;
}

/* --- Lado Esquerdo: Textos --- */
.join-text-content {
    max-width: 480px;
}

.join-text-content h2 {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
    color: var(--primary-brown-dark, #412f22);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.join-text-content .intro-text {
    font-family: var(--font-body), 'Google Sans', sans-serif;
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.join-text-content .list-title {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-navy, #1a2a3a);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.mission-roles {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.mission-roles li {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: 1.25rem;
    color: var(--primary-brown-dark, #412f22);
    font-weight: 500;
    line-height: 1.4;
}

.join-text-content .outro-text {
    font-family: var(--font-body), 'Google Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

/* --- Lado Direito: Grid de Imagens 2x2 --- */
.images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0; /* Imagens coladas como no design original */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); /* Sombra elegante no bloco todo */
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* Mantém o grid perfeitamente quadrado */
}

.grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Interação / Gracinhas no Mouse (Hover) */
.grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 42, 58, 0.8); /* Cor dark-navy translúcida */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.grid-overlay span {
    color: #fff;
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 0 15px;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.grid-item:hover img {
    transform: scale(1.1); /* Zoom suave na foto */
}

.grid-item:hover .grid-overlay {
    opacity: 1; /* Revela a máscara azul escuro */
}

.grid-item:hover .grid-overlay span {
    transform: translateY(0); /* O texto sobe suavemente */
}

/* =========================================================
   Responsividade (Sessão 6)
   ========================================================= */
@media (max-width: 992px) {
    .join-mission-container {
        grid-template-columns: 1fr; /* Quebra para coluna única no Tablet/Mobile */
        text-align: center;
        gap: 50px;
    }

    .join-text-content {
        margin: 0 auto;
    }
    
    .mission-roles li {
        display: inline-block;
        margin: 0 10px; /* Transforma a lista em linha no celular para economizar espaço */
    }

    .images-grid {
        max-width: 550px; /* Limita o tamanho do quadrado no mobile */
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .join-mission-section {
        padding: 80px 20px;
    }
    
    .mission-roles li {
        display: block; 
        margin: 5px 0;
    }
    
    .grid-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
        align-items: flex-end;
        padding-bottom: 15px;
    }
    
    .grid-overlay span {
        transform: translateY(0);
        font-size: 0.8rem;
    }
}

/* =========================================================
   Sessão 7 - Support / Donation
   ========================================================= */
.support-section {
    position: relative;
    width: 100%;
    min-height: 70vh; /* Tamanho elegante, sem exageros */
    display: flex;
    align-items: center;
    background-color: var(--dark-navy, #1a2a3a);
    overflow: hidden;
}

.support-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.support-scrim {
    position: absolute;
    inset: 0;
    /* Gradiente escuro que vem da esquerda para garantir a leitura do texto */
    background: linear-gradient(to right, rgba(20, 15, 10, 0.9) 0%, rgba(20, 15, 10, 0.6) 45%, rgba(20, 15, 10, 0.1) 100%);
    z-index: 2;
}

.support-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    padding: 80px 20px;
}

.support-content {
    max-width: 500px; /* Mantém o texto em um bloco compacto à esquerda */
    color: #fff;
}

.support-content h2 {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    color: #f1ede6; /* Tom levemente areia */
    text-transform: uppercase;
}

.support-content p {
    font-family: var(--font-body), 'Google Sans', sans-serif;
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.support-content .btn {
    margin-top: 1rem;
    display: inline-block;
}

/* =========================================================
   Sessão 8 - Bible Quote
   ========================================================= */
.quote-section {
    background-color: var(--site-bg, #F8F8F7);
    padding: 100px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-container h2 {
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: var(--dark-navy, #162b45);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2.5rem;
}

/* Truque de CSS: Borda estilo "desenhada à mão" */
.quote-citation {
    display: inline-block;
    font-family: var(--font-display), 'Montreal', sans-serif;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    color: var(--dark-navy, #162b45);
    padding: 12px 35px;
    border: 4px solid #84bbf2; /* Cor azul claro do traço */
    /* Valores irregulares de borda criam o formato orgânico */
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    background-color: transparent;
}

/* =========================================================
   Responsividade (Sessões 7 e 8)
   ========================================================= */
@media (max-width: 992px) {
    /* No mobile/tablet, o gradiente muda para baixo para destacar o texto e deixar a imagem no topo */
    .support-scrim {
        background: linear-gradient(to bottom, rgba(20, 15, 10, 0.3) 0%, rgba(20, 15, 10, 0.8) 50%, rgba(20, 15, 10, 0.95) 100%);
    }
    
    .support-section {
        min-height: 60vh;
        align-items: flex-end; /* Empurra o texto mais para o fundo */
    }

    .support-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .quote-section {
        padding: 80px 20px;
    }
}