/* ===================================== */
/* RESET */
/* ===================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: "Poppins", sans-serif;

    background: #0d0d0d;

    color: #ffffff;

    line-height: 1.6;

    overflow-x: hidden;

}

img {

    display: block;

    max-width: 100%;

}

a {

    color: inherit;

    text-decoration: none;

}

ul {

    list-style: none;

}

button,
input,
textarea {

    font: inherit;

    border: none;

    outline: none;

}

button {

    cursor: pointer;

}

textarea {

    resize: vertical;

}

/* ===================================== */
/* VARIÁVEIS */
/* ===================================== */

:root {

    --primary: #d4af37;

    --primary-dark: #b8941f;

    --secondary: #ffffff;

    --background: #0d0d0d;

    --surface: #181818;

    --surface-light: #222222;

    --text: #ffffff;

    --text-light: #cfcfcf;

    --border: rgba(255,255,255,.08);

    --shadow:

        0 12px 30px rgba(0,0,0,.25);

    --radius:

        16px;

    --transition:

        .3s ease;

}

/* ===================================== */
/* CONTAINER */
/* ===================================== */

.container {

    width: min(1200px, 92%);

    margin: 0 auto;

}


/* ===================================== */
/* SEÇÕES */
/* ===================================== */

section {

    padding: 100px 0;

}

/* ===================================== */
/* TÍTULOS DAS SEÇÕES */
/* ===================================== */

.section-title {

    text-align: center;

    margin-bottom: 60px;

}

.section-title span {

    display: inline-block;

    color: var(--primary);

    font-size: .95rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 12px;

}

.section-title h2 {

    font-size: clamp(2rem,4vw,3rem);

    color: var(--text);

}

/* ===================================== */
/* BOTÕES */
/* ===================================== */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: .6rem;

    padding: 14px 32px;

    border-radius: 999px;

    background: var(--primary);

    color: #111;

    font-weight: 600;

    transition: var(--transition);

}

.btn:hover {

    background: var(--primary-dark);

    transform: translateY(-3px);

}

.btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 32px;

    border: 2px solid var(--primary);

    border-radius: 999px;

    color: var(--primary);

    transition: var(--transition);

}

.btn-outline:hover {

    background: var(--primary);

    color: #111;

}

p {
    margin-bottom: 30px;
}

h3 {
    text-align: center;
    margin-bottom: 30px;
}

/* ===================================== */
/* RESPONSIVIDADE BASE */
/* ===================================== */

@media (max-width: 992px) {

    section {

        padding: 80px 0;

    }

}

@media (max-width: 768px) {

    section {

        padding: 70px 0;

    }

    .section-title {

        margin-bottom: 40px;

    }

}

@media (max-width: 576px) {

    .container {

        width: 94%;

    }

}

/* ===================================== */
/* HEADER */
/* ===================================== */

header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    transition: .35s ease;

}

header.header-scroll {

    background: rgba(13, 13, 13, .95);

    backdrop-filter: blur(12px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);

}

/* ===================================== */
/* NAVBAR */
/* ===================================== */

.navbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 85px;

}

/* ===================================== */
/* LOGO */
/* ===================================== */

.logo img {

    width: 70px;

    transition: var(--transition);

}

.logo img:hover {

    transform: scale(1.05);

}

/* ===================================== */
/* MENU DESKTOP */
/* ===================================== */

.menu {

    display: flex;

    align-items: center;

    gap: 2rem;

}

.menu li {

    list-style: none;

}

.menu a {

    position: relative;

    color: var(--secondary);

    font-weight: 500;

    transition: var(--transition);

}

.menu a:hover {

    color: var(--primary);

}

.menu a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .3s ease;

}

.menu a:hover::after {

    width: 100%;

}

/* ===================================== */
/* BOTÃO ENTRAR */
/* ===================================== */

.admin-link a {

    padding: 10px 22px;

    border: none;

    background-color: var(--primary-dark);

    border-radius: 999px;

    color: #111;

}

.admin-link a:hover {

    background: var(--primary);

    color: #111;

}

/* ===================================== */
/* MENU HAMBÚRGUER */
/* ===================================== */

.menu-mobile {

    display: none;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    background: transparent;

    color: var(--secondary);

    font-size: 1.5rem;

    border-radius: 10px;

    transition: var(--transition);

}

.menu-mobile:hover {

    color: var(--primary);

}

/* ===================================== */
/* OVERLAY */
/* ===================================== */

.menu-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.6);

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 998;

}

.menu-overlay.active {

    opacity: 1;

    visibility: visible;

}

.menu-mobile i{

    transition: .3s ease;

}

.menu-mobile.active i{

    transform: rotate(180deg);

}

/* ===================================== */
/* RESPONSIVO */
/* ===================================== */

@media (max-width: 992px) {

    .menu {

        position: fixed;

        top: 0;

        right: -100%;

        width: 280px;

        height: 100vh;

        background: var(--surface);

        flex-direction: column;

        justify-content: center;

        gap: 2rem;

        transition: .35s ease;

        z-index: 999;

        box-shadow: -5px 0 20px rgba(0,0,0,.3);

    }

    .menu.active {

        right: 0;

    }

    .menu-mobile {

        display: flex;

        z-index: 1001;

    }

}

@media (max-width: 576px) {

    .navbar {

        height: 75px;

    }

    .logo img {

        width: 58px;

    }

    .menu {

        width: 100%;

    }

}

.menu-backdrop {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.6);

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 998;

}

.menu-backdrop.active {

    opacity: 1;

    visibility: visible;

}

/* ===================================== */
/* HERO */
/* ===================================== */

.hero {

    position: relative;

    min-height:92vh;

    display: flex;

    align-items: center;

    background:

        url("../images/banner.png")

        center/cover

        no-repeat;

    overflow: hidden;

}

/* ===================================== */
/* OVERLAY */
/* ===================================== */

.hero .overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .65);

}

/* ===================================== */
/* CONTEÚDO */
/* ===================================== */

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 700px;

    color: var(--text);

}

/* ===================================== */
/* SUBTÍTULO */
/* ===================================== */

.subtitle {

    display: inline-block;

    margin-bottom: 1rem;

    color: var(--primary);

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

}

/* ===================================== */
/* TÍTULO */
/* ===================================== */

.hero-content h1 {

    font-size: clamp(2.8rem, 5vw, 4.3rem);

    line-height: 1.1;

    margin-bottom: 1rem;

}

/* ===================================== */
/* TEXTO */
/* ===================================== */

.hero-content p {

    font-size: 1.05rem;

    margin-bottom: 1.6rem;

    line-height: 1.7;

}

/* ===================================== */
/* BOTÕES */
/* ===================================== */

.hero-buttons {

    display: flex;

    gap: 1rem;

    flex-wrap: wrap;

}

/* ===================================== */
/* RESPONSIVIDADE */
/* ===================================== */

@media (max-width: 992px) {

    .hero {

        text-align: center;

    }

    .hero-content {

        max-width: 100%;

    }

    .hero-content p {

        margin-left: auto;

        margin-right: auto;

    }

    .hero-buttons {

        justify-content: center;

    }

}

@media (max-width: 768px) {

    .hero {

        min-height: 90vh;

    }

    .hero-content h1 {

        font-size: 2.5rem;

    }

    .hero-content p {

        font-size: 1rem;

    }

}

@media (max-width: 576px) {

    .hero {

        padding-top: 90px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .hero-buttons .btn,

    .hero-buttons .btn-outline {

        width: 100%;

        justify-content: center;

    }

}

/* ===================================== */
/* SOBRE */
/* ===================================== */

.sobre {

    background: var(--surface);

}

/* ===================================== */
/* CONTEÚDO */
/* ===================================== */

.sobre-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 4rem;

}

/* ===================================== */
/* TEXTO */
/* ===================================== */

.sobre-text h3 {

    font-size: 2rem;

    margin-bottom: 1.5rem;

    color: var(--text);

}

.sobre-text p {

    color: var(--text-light);

    margin-bottom: 1.5rem;

    text-align: justify;

}

.sobre-btn {

    margin-top: 2rem;

}

/* ===================================== */
/* IMAGEM */
/* ===================================== */

.sobre-img {

    display: flex;

    justify-content: center;

}

.sobre-img img {

    width: 100%;

    max-width: 520px;

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition: var(--transition);

}

.sobre-img img:hover {

    transform: scale(1.03);

}

/* ===================================== */
/* RESPONSIVIDADE */
/* ===================================== */

@media (max-width: 992px) {

    .sobre-content {

        grid-template-columns: 1fr;

        gap: 3rem;

    }

    .sobre-text {

        text-align: center;

    }

    .sobre-text p {

        text-align: center;

    }

    .sobre-btn {

        display: flex;

        justify-content: center;

    }

}

@media (max-width: 576px) {

    .sobre-text h3 {

        font-size: 1.7rem;

    }

}

/* ===================================== */
/* MISSÃO */
/* ===================================== */

.missao {

    background: var(--background);

}

/* ===================================== */
/* GRID */
/* ===================================== */

.missao-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;

}

/* ===================================== */
/* CARD */
/* ===================================== */

.missao-card {

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 2.5rem;

    text-align: center;

    transition: var(--transition);

    box-shadow: var(--shadow);

}

.missao-card:hover {

    transform: translateY(-8px);

    border-color: var(--primary);

}

/* ===================================== */
/* ÍCONE */
/* ===================================== */

.missao-card i {

    font-size: 3rem;

    color: var(--primary);

    margin-bottom: 1.5rem;

}

/* ===================================== */
/* TÍTULO */
/* ===================================== */

.missao-card h3 {

    margin-bottom: 1rem;

    font-size: 1.5rem;

    color: var(--text);

}

/* ===================================== */
/* TEXTO */
/* ===================================== */

.missao-card p {

    color: var(--text-light);

    line-height: 1.8;

}

.card-hover {

    transition: var(--transition);

}

.card-hover:hover {

    transform: translateY(-8px);

}

/* ===================================== */
/* RESPONSIVIDADE */
/* ===================================== */

@media (max-width: 992px) {

    .missao-grid {

        grid-template-columns: 1fr;

    }

}

/* ===================================== */
/* PASTORES */
/* ===================================== */

.pastores {

    background: var(--surface);

}

/* ===================================== */
/* GRID */
/* ===================================== */

.pastores-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 2rem;

}

/* ===================================== */
/* CARD */
/* ===================================== */

.pastor-card {

    background: var(--background);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 2.5rem;

    text-align: center;

    transition: var(--transition);

    box-shadow: var(--shadow);

}

.pastor-card:hover {

    transform: translateY(-8px);

    border-color: var(--primary);

}

/* ===================================== */
/* FOTO */
/* ===================================== */

.pastor-card img {

    width: 180px;

    height: 180px;

    margin: 0 auto 1.5rem;

    border-radius: 50%;

    object-fit: cover;

    border: 4px solid var(--primary);

}

/* ===================================== */
/* NOME */
/* ===================================== */

.pastor-card h3 {

    font-size: 1.6rem;

    color: var(--text);

    margin-bottom: .5rem;

}

/* ===================================== */
/* CARGO */
/* ===================================== */

.pastor-card span {

    display: inline-block;

    color: var(--primary);

    font-weight: 600;

    margin-bottom: 1.2rem;

}

/* ===================================== */
/* DESCRIÇÃO */
/* ===================================== */

.pastor-card p {

    color: var(--text-light);

    line-height: 1.8;

}

/* ===================================== */
/* RESPONSIVIDADE */
/* ===================================== */

@media (max-width: 992px) {

    .pastores-grid {

        grid-template-columns: 1fr;

    }

}

@media (max-width: 576px) {

    .pastor-card {

        padding: 2rem;

    }

    .pastor-card img {

        width: 150px;

        height: 150px;

    }

    .pastor-card h3 {

        font-size: 1.4rem;

    }

}

/* ===================================== */
/* MINISTÉRIOS */
/* ===================================== */

.ministerios {

    background: var(--background);

}


.ministerios-grid {

    display: grid;

    grid-template-columns: repeat(

        auto-fit,

        minmax(320px, 1fr)

    );

    column-gap: 2.5rem;

    row-gap: 2.8rem;

    margin-top: 4rem;

}

/* ===================================== */
/* CARD */
/* ===================================== */

.card{

    text-align:center;

}

.card i{

    display:block;

    font-size:3rem;

    margin-bottom:1.2rem;

    color:var(--cor-dourado);

}

.card h3{

    margin-bottom:1rem;

    font-size:1.6rem;

}

.card p{

    line-height:1.8;

}

/* ===================================== */
/* RESPONSIVIDADE */
/* ===================================== */

@media (max-width: 1200px) {

    .cards {

        grid-template-columns: repeat(3, 1fr);

    }

}

@media (max-width: 992px) {

    .cards {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width: 576px) {

    .cards {

        grid-template-columns: 1fr;

    }

    .card {

        padding: 2rem 1.5rem;

    }

}

/* ===================================== */
/* CULTOS */
/* ===================================== */

.cultos {

    background: var(--surface);

}

/* ===================================== */
/* GRID */
/* ===================================== */

.cultos-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;

}

/* ===================================== */
/* CARD */
/* ===================================== */

.culto-card {

    background: var(--background);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 2.5rem;

    text-align: center;

    transition: var(--transition);

    box-shadow: var(--shadow);

}

.culto-card:hover {

    transform: translateY(-8px);

    border-color: var(--primary);

}

/* ===================================== */
/* ÍCONE */
/* ===================================== */

.culto-card i {

    font-size: 3rem;

    color: var(--primary);

    margin-bottom: 1.5rem;

}

/* ===================================== */
/* TÍTULO */
/* ===================================== */

.culto-card h3 {

    color: var(--text);

    font-size: 1.5rem;

    margin-bottom: .8rem;

}

/* ===================================== */
/* DIA */
/* ===================================== */

.culto-card h4 {

    color: var(--primary);

    font-size: 1.1rem;

    font-weight: 600;

    margin-bottom: .8rem;

}

/* ===================================== */
/* HORÁRIO */
/* ===================================== */

.culto-card p {

    font-size: 1.4rem;

    font-weight: 700;

    color: var(--text-light);

}

/* ===================================== */
/* RESPONSIVIDADE */
/* ===================================== */

@media (max-width: 992px) {

    .cultos-grid {

        grid-template-columns: 1fr;

    }

}

/* ===================================== */
/* EVENTOS */
/* ===================================== */

.eventos {

    background: var(--background);

}

/* ===================================== */
/* GRID */
/* ===================================== */

.eventos-grid {

    display: flex;

    flex-direction: column;

    gap: 2rem;

}

/* ===================================== */
/* CARD */
/* ===================================== */

.evento-card {

    display: flex;

    align-items: center;

    gap: 2rem;

    padding: 2rem;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition: var(--transition);

}

.evento-card:hover {

    transform: translateY(-5px);

    border-color: var(--primary);

}

/* ===================================== */
/* DATA */
/* ===================================== */

.data{

    width:90px;

    height:90px;

    border-radius:18px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    background:var(--cor-dourado);

}

.data h3{

    font-size:2.3rem;

    line-height:1;

    margin:0;

    font-weight:700;

}

.data span{

    margin-top:4px;

    font-size:.9rem;

    letter-spacing:2px;

    font-weight:700;

}
/* ===================================== */
/* INFORMAÇÕES */
/* ===================================== */

.evento{

    display:flex;

    align-items:center;

    gap:2rem;

}

.evento-info {

    flex: 1;

}

.evento-info h3 {

    margin-bottom: 1rem;

    font-size:1.8rem;

    color: var(--text);

}

.evento-info p {

    margin-bottom: 1.5rem;

    font-size:1.05rem;

    color: var(--text-light);

    line-height: 2;

}

.evento-info .btn{

    margin-top:1.5rem;

}


/* ===================================== */
/* BOTÃO */
/* ===================================== */

.btn-evento {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: .8rem 1.5rem;

    border: 2px solid var(--primary);

    border-radius: 999px;

    color: var(--primary);

    font-weight: 600;

    transition: var(--transition);

}

.btn-evento:hover {

    background: var(--primary);

    color: #111;

}

/* ===================================== */
/* RESPONSIVIDADE */
/* ===================================== */

@media (max-width: 768px) {

    .evento-card {

        flex-direction: column;

        text-align: center;

    }

    .data {

        width: 100px;

        height: 100px;

    }

}

/* ===================================== */
/* GALERIA */
/* ===================================== */

.galeria {

    background: var(--surface);

}

/* ===================================== */
/* GRID */
/* ===================================== */

.galeria-grid {

    display: grid;

    grid-template-columns: repeat(

        auto-fit,

        minmax(280px, 1fr)

    );

    gap: 1.5rem;

}

/* ===================================== */
/* FOTO */
/* ===================================== */

.foto {

    position: relative;

    overflow: hidden;

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    cursor: pointer;

}

/* ===================================== */
/* IMAGEM */
/* ===================================== */

.foto img {

    width: 100%;

    height: 300px;

    object-fit: cover;

    transition: transform .5s ease;

}

/* ===================================== */
/* HOVER */
/* ===================================== */

.foto:hover img {

    transform: scale(1.08);

}

/* ===================================== */
/* RESPONSIVIDADE */
/* ===================================== */

@media (max-width: 768px) {

    .foto img {

        height: 240px;

    }

}

@media (max-width: 576px) {

    .galeria-grid {

        grid-template-columns: 1fr;

    }

    .foto img {

        height: 220px;

    }

}

/* ===================================== */
/* CONTATO */
/* ===================================== */

.contato {

    background: var(--background);

}

/* ===================================== */
/* CONTEÚDO */
/* ===================================== */

.contato-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 3rem;

    align-items: start;

}

/* ===================================== */
/* INFORMAÇÕES */
/* ===================================== */

.contato-info h3 {

    font-size: 2rem;

    color: var(--text);

    margin-bottom: 1rem;

}

.contato-info p {

    color: var(--text-light);

    line-height: 1.8;

    margin-bottom: 2rem;

}

/* ===================================== */
/* ITENS */
/* ===================================== */

.info-item {

    display: flex;

    align-items: center;

    gap: 1rem;

    margin-bottom: 1.5rem;

}

.info-item i {

    width: 50px;

    height: 50px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: var(--primary);

    color: #111;

    border-radius: 50%;

    font-size: 1.2rem;

}

.info-item span {

    color: var(--text-light);

}

/* ===================================== */
/* REDES SOCIAIS */
/* ===================================== */

.redes-sociais {

    display: flex;

    gap: 1rem;

    margin-top: 2rem;

}

.redes-sociais a {

    width: 50px;

    height: 50px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: var(--surface);

    color: var(--primary);

    border: 1px solid var(--border);

    border-radius: 50%;

    transition: var(--transition);

}

.redes-sociais a:hover {

    background: var(--primary);

    color: #111;

    transform: translateY(-4px);

}

/* ===================================== */
/* FORMULÁRIO */
/* ===================================== */

.contato-form {

    display: flex;

    flex-direction: column;

    gap: 1.2rem;

}

.contato-form input,

.contato-form textarea {

    width: 100%;

    padding: 1rem;

    background: var(--surface);

    color: var(--text);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    transition: var(--transition);

}

.contato-form input:focus,

.contato-form textarea:focus {

    border-color: var(--primary);

}

.contato-form textarea {

    min-height: 180px;

}

/* ===================================== */
/* RESPONSIVIDADE */
/* ===================================== */

@media (max-width: 992px) {

    .contato-content {

        grid-template-columns: 1fr;

    }

}

@media (max-width: 576px) {

    .contato-info h3 {

        font-size: 1.7rem;

    }

    .redes-sociais {

        justify-content: center;

    }

    .info-item {

        align-items: flex-start;

    }

}

/* ===================================== */
/* LOCALIZAÇÃO */
/* ===================================== */

.localizacao {

    background: var(--surface);

}

/* ===================================== */
/* MAPA */
/* ===================================== */

.mapa {

    overflow: hidden;

    border-radius: var(--radius);

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

}

.mapa iframe {

    display: block;

    width: 100%;

    height: 500px;

    border: none;

}

/* ===================================== */
/* RESPONSIVIDADE */
/* ===================================== */

@media (max-width: 992px) {

    .mapa iframe {

        height: 420px;

    }

}

@media (max-width: 768px) {

    .mapa iframe {

        height: 350px;

    }

}

@media (max-width: 576px) {

    .mapa iframe {

        height: 280px;

    }

}

/* ===================================== */
/* FOOTER */
/* ===================================== */

footer {

    background: #090909;

    border-top: 1px solid var(--border);

    padding: 2.5rem 0;

}

/* ===================================== */
/* CONTAINER */
/* ===================================== */

footer .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 1rem;

    flex-wrap: wrap;

}

/* ===================================== */
/* TEXTOS */
/* ===================================== */

footer p {

    color: var(--text-light);

    font-size: .95rem;

}

footer strong {

    color: var(--primary);

    font-weight: 600;

}

/* ===================================== */
/* RESPONSIVIDADE */
/* ===================================== */

@media (max-width: 768px) {

    footer .container {

        flex-direction: column;

        text-align: center;

    }

}

/* ===================================== */
/* RESPONSIVIDADE GERAL */
/* ===================================== */

/* ---------- NOTEBOOK ---------- */

@media (max-width: 1200px) {

    .container {

        width: min(95%, 1100px);

    }

}

/* ---------- TABLET ---------- */

@media (max-width: 992px) {

    h1 {

        font-size: clamp(2.4rem, 5vw, 3.5rem);

    }

    h2 {

        font-size: 2rem;

    }

    .section-title {

        margin-bottom: 3rem;

    }

    .hero {

        text-align: center;

    }

    .hero-content {

        margin: 0 auto;

    }

    .hero-buttons {

        justify-content: center;

    }

}

/* ---------- CELULAR ---------- */

@media (max-width: 768px) {

    section {

        padding: 80px 0;

    }

    .container {

        width: 92%;

    }

    .section-title h2 {

        font-size: 1.8rem;

    }

    .section-title span {

        font-size: .9rem;

    }

    .hero-content h1 {

        font-size: 2.3rem;

    }

    .hero-content p {

        font-size: 1rem;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .btn,

    .btn-outline {

        width: 100%;

    }

}

/* ---------- CELULAR PEQUENO ---------- */

@media (max-width: 576px) {

    body {

        font-size: .95rem;

    }

    section {

        padding: 70px 0;

    }

    .section-title {

        margin-bottom: 2.5rem;

    }

    .section-title h2 {

        font-size: 1.6rem;

    }

    .hero-content h1 {

        font-size: 2rem;

    }

    .hero-content p {

        font-size: .95rem;

    }

}

/* ---------- TELAS MUITO PEQUENAS ---------- */

@media (max-width: 360px) {

    .hero-content h1 {

        font-size: 1.8rem;

    }

    .hero-content p {

        font-size: .9rem;

    }

    .btn,

    .btn-outline {

        padding: 12px 20px;

        font-size: .9rem;

    }

}

/* ===================================== */
/* ANIMAÇÕES */
/* ===================================== */

@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

@keyframes zoomIn {

    from {

        opacity: 0;

        transform: scale(.95);

    }

    to {

        opacity: 1;

        transform: scale(1);

    }

}


/* ===================================== */
/* SCROLLBAR */
/* ===================================== */

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: var(--background);

}

::-webkit-scrollbar-thumb {

    background: var(--primary);

    border-radius: 999px;

}

::-webkit-scrollbar-thumb:hover {

    background: var(--primary-dark);

}

/* ===================================== */
/* SELEÇÃO DE TEXTO */
/* ===================================== */

::selection {

    background: var(--primary);

    color: #111;

}

/* ===================================== */
/* FOCO */
/* ===================================== */

a:focus-visible,

button:focus-visible,

input:focus-visible,

textarea:focus-visible {

    outline: 3px solid var(--primary);

    outline-offset: 3px;

}

/* ===================================== */
/* IMAGENS */
/* ===================================== */

img {

    user-select: none;

    -webkit-user-drag: none;

}

/* ===================================== */
/* TRANSIÇÕES */
/* ===================================== */

a,

button,

input,

textarea,

img {

    transition: var(--transition);

}

/* ===================================== */
/* REVEAL */
/* ===================================== */

.hero-content,

.section-title,

.sobre-content,

.missao-card,

.pastor-card,

.card,

.culto-card,

.evento-card,

.foto,

.contato-content,

.mapa{

    opacity: 0;

    transform: translateY(40px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.show{

    opacity: 1;

    transform: translateY(0);

}

