*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    /* Amarelo Esperança (base espiritual vibrante) */
    --color-primary: #FFD500;
    /* Amarelo escurecido para hover */
    --color-primary-dark: #CCAA00;
    /* Amarelo claro para fundos sutis */
    --color-primary-light: #FFF3B0;

    /* Cores Secundárias */
    /* Azul Profundo - sobriedade, contraste */
    --color-secondary: #1F2937;
    /* Variante para fundos ou menus */
    --color-secondary-light: #374151;
    /* Vermelho queimado - destaque para botões de ação */
    --color-accent: #C53030;

    /* Fundo e Elementos Neutros */
    /* Fundo claro geral */
    --color-background: #F9FAFB;
    /* Cards e blocos */
    --color-surface: #ececec;
    /* Bordas e divisores sutis */
    --color-border: #E5E7EB;

    /* Tipografia */
    /* Preto suave para leitura principal */
    --color-text-primary: #111827;
    /* Cinza escuro para textos secundários */
    --color-text-secondary: #4B5563;
    /* Para textos em fundo escuro ou botões */
    --color-text-inverted: #FFFFFF;

    /* Outros */
    --color-shadow: rgba(0, 0, 0, 0.1);
    --radius-base: 8px;
    --transition-fast: 0.2s ease-in-out;



    --border-radius: 28px;

}


body {
    margin: 0;
    background-color: var(--color-primary);
    /* fundo amarelo */
    font-family: "Open Sans", sans-serif;

}

.fontaspas {
    font-family: Arial, serif;
    color: var(--color-primary);
    font-size: 80px;
    line-height: 0;
}

section {

    background-color: var(--color-surface);
}

.text-destaque {
    text-decoration: underline;
    font-weight: bold;
    color: #ffd500;
}

.color-primary {
    color: var(--color-primary);
}

.color-secondary {
    color: var(--color-background);
}

.font-bold {
    font-weight: bold;
}

h1 {
    font-weight: bold;
}

.section-com-recorte {
    background-color: var(--color-surface);
    clip-path: polygon(66% 1%, 100% 7%, 100% 0, 100% 100%, 0 100%, 0% 0%, 0 7%);
    position: relative;
    z-index: 0;
    padding-top: 80px;
    padding-bottom: 90px;
}

#convite-chamada .coluna-esquerda {
    display: flex;
    justify-content: flex-end;
    padding-right: 34px;
}

.topbar {
    background-color: #FFD500;
}

.banner-principal {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner-principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/fundo_bannerprincipal.png) no-repeat center center;
    background-size: cover;
    filter: brightness(0.5);
    z-index: -1;
}

.banner-principal-coluna-esquerda {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.banner-principal .conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 40px;
    flex-wrap: wrap;
}

.banner-principal .texto {
    max-width: 600px;
    color: white;
}

.banner-principal h1 {
    position: relative;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.3;
    border: 2px solid var(--color-highlight);
    display: inline-block;
    border-radius: 8px;
}

.banner-principal h1::before {}

.banner-principal p {
    font-size: 18px;
    margin: 20px 0;
    color: #E5E7EB;
    text-align: justify;
    width: 370px;
}

.btn-cta {
    background-color: var(--color-primary);
    color: var(--color-button-text);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: background-color 0.3s ease;
    max-width: 370px;
}

.btn-cta:hover {
    background-color: #e6c400;
}

.banner-principal .imagem {

    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    background-color: blue;
}


.banner-principal .imagem2 {

    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    background-color: blue;
}

.img-felipe {
    position: absolute;
    bottom: -52px;
    right: 0;
    max-height: 580px;
    z-index: 1;
}

.img-livro {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: rotate(-8deg);
    max-height: 268px;
    z-index: 5;
}




#conteudo-comunidade {
    position: relative;
    background: url(../img/felipepregando.png) no-repeat center center;
    background-size: cover;
    padding: 60px 20px 0;
    overflow: hidden;
    padding-top: 169px;
    padding-bottom: 0;
    background-color: white;
}


#convite-comunidade {
    padding-top: 60px;

}

.section-degrade-black {
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(87, 87, 81, 1) 100%);
}

.section-degrade-black h1 {
    color: white;
}

.section-degrade-black {
    background: linear-gradient(#000, #222);
    color: white;
}

.text-destaque {
    color: #d4d600;
    font-weight: bold;
    text-decoration: underline;
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card-comunidade {
    border: 2px solid #ffd500;
    padding: 20px;
    width: 200px;
    background: #111;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.btn-comunidade {
    background-color: #ffd500;
    color: black;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
}

.btn-comunidade:hover {
    background-color: #e6c200;
    text-decoration: none;
}

.texto-secundario {
    font-size: 14px;
    color: #ccc;
}


.section-cinza {
    background-image: linear-gradient(to right, rgb(0 0 0 / 0%), rgb(0 0 0 / 88%)), url(../img/fundo_painel4.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left -2px;
    color: white;
}

.text-destaque {
    color: #ffd500;
}

.img-felipe {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.depoimentos-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.depoimento {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}



.section-com-recorte .container {
    position: relative;
    z-index: 2;
}

.jornada-blocos .bloco {
    background-color: #d9d9d9;
    margin: 10px auto;
    padding: 15px 20px;
    border-radius: 5px;
    max-width: 700px;
    font-weight: 500;
    font-size: 1.1rem;
}

.descricao-jornada {
    color: #333;
    font-size: 0.95rem;
}

.btn-jornada {
    background: linear-gradient(to right, #ffdc00, #ffd500);
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.section-impacto {
    background-image: url('../img/fotorua.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
}

.overlay-gradient {
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
    padding: 60px 20px 40px;
}

.impacto-texto {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

.text-destaque {
    color: #ffd500;
    text-decoration: underline;
}

.section-convocacao {
    background-image: linear-gradient(to top, rgb(0 0 0), rgb(0 0 0 / 80%) 60%, rgb(12 12 12 / 0%) 100%), url(../img/imagempainel6_pessoas.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.section-convocacao p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.section-convocacao .destaque {
    color: #ffd500;
    font-weight: bold;
}

.section-convocacao .btn-convocacao {
    background: linear-gradient(to right, #ffdc00, #ffd500);
    color: black;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
}


.section-fechamento {
    background: white;
    position: relative;
    padding-top: 0;
}

.recorte-topo-amarelo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #ffd500;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
    z-index: 1;
}

.section-fechamento .container {
    position: relative;
    z-index: 2;
}

.texto-grande {
    font-size: 1.5rem;
    color: #111;
    line-height: 1.6;
    margin-bottom: 30px;
}

.assinatura {
    font-size: 0.95rem;
    color: #444;
}


@media (max-width: 1700px) {
    .banner-principal h1::before {
        width: 85vw;
    }
}


@media (max-width: 1200px) {
    .banner-principal h1::before {
        width: 90vw;
    }
}

@media (max-width: 992px) {
    .banner-principal h1::before {
        width: 75vw;
    }

    #convite-chamada .coluna-esquerda {
        display: flex;
        justify-content: flex-start;
        padding-right: 34px;
    }

    .banner-principal .imagem {
        display: none;
    }

    .banner-principal .conteudo {
        justify-content: center;
    }





}

@media (max-width: 768px) {
    .banner-principal h1::before {
        width: 86vw;
    }

    .banner-principal h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .banner-principal h1::before {
        width: 90vw;
    }

    .section-com-recorte {
        background-color: var(--color-surface);
        clip-path: polygon(66% 1%, 100% 7%, 100% 0, 100% 100%, 0 100%, 0% 0%, 0 7%);
        position: relative;
        z-index: 0;
        padding-top: 80px;
        padding-bottom: 90px;
    }


    .banner-principal-coluna-esquerda {
        padding-top: 50px;
    }

    .banner-principal img {
        width: 100%;
        margin-top: 30px;
    }

}