@import url(https://fonts.googleapis.com/css?family=Overpass:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

/* VARIAVEIS */
:root {
    --primary-color: #E1A10B;
    --color-grey: #999999;
    --color-black: #252525;
    --color-white: #fff;
    --color-shadow-white: #E1A10B;
    --color-shadow-white: #E1A10B;
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Overpass', sans-serif;
}

/* RESET PADRÃO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--secondary-font);
    margin-bottom: 1rem;
}

/* CLASSES PRÉC.CONFIG */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-primary {
    color: var(--primary-color);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.btn {
    display: inline-block;
    max-width: max-content;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
}

button.btn,
.menu-btn,
.back-to-top,
.color-toggle-button {
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #E1A10B;
}

.btn:disabled {
    cursor: wait;
    opacity: 0.7;
}

.btn-secondary {
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--color-white);
}


/************titulo cabeçalho****************/
.titulo-artigo {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.titulo-heading {
    font-size: 3rem;
    max-width: 600px;
    font-weight: bold;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}


.section-subheading {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 3rem;
    max-width: 600px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.section-heading.left {
    margin-right: auto;
}

.section-heading.right {
    margin-left: auto;
}

/* Estilizando a barra de rolagem */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--color-white);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #E1A10B;
}

/* ESTILO GLOBAL */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    color: var(--color-black);
    background-color: var(--color-white);
}

body.home-page {
    background-color: #080c0d;
}

body.articles-page {
    background-color: #090d0e;
}

body.liturgia-page {
    background-color: #f7f7f4;
}

section {
    position: relative;
    padding-top: 8rem !important;
    padding-bottom: 5rem !important;
}

.color-toggle-button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-toggle-button i {
    color: inherit;
}



/* Estilo para o botão "Voltar ao Topo" */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    display: none;
    border: none;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.back-to-top.show {
    display: flex;
}


/* HEADER */
header {
    padding: 1rem 0;
    width: 100%;
    position: absolute;
    z-index: 999;
}

header .container {
    position: relative;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 0 10px rgba(80, 80, 80, 0.4);
}


.header__menu {
    gap: 1rem;
}

.header__menu li a {
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.3s;
}

.header__menu li a:hover {
    color: var(--primary-color);
}

.header__menu li a.active {
    color: var(--primary-color);
    font-weight: bold;
}

header .right {
    gap: 1rem;
}

.site-crest {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 5.15rem;
    height: 5.15rem;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.site-crest__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.25s ease;
}

.site-crest__image--dark {
    opacity: 0;
}

body.dark-mode .site-crest__image--light,
.home-page header:not(.sticky) .site-crest__image--light,
.articles-page header:not(.sticky) .site-crest__image--light {
    opacity: 0;
}

body.dark-mode .site-crest__image--dark,
.home-page header:not(.sticky) .site-crest__image--dark,
.articles-page header:not(.sticky) .site-crest__image--dark {
    opacity: 1;
}

.menu-btn {
    display: none;
    cursor: pointer;
    z-index: 99;
    font-size: 1.2rem;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
    background-color: var(--color-black);
    transition: all 0.4s ease-in-out;
}

.menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* INICIO */
.home-page header:not(.sticky) .header__menu a,
.home-page header:not(.sticky) .right .btn-secondary {
    color: #f8f3ea;
}

.home-page header:not(.sticky) .header__menu a:hover,
.home-page header:not(.sticky) .header__menu a.active {
    color: var(--primary-color);
}

.home-page header:not(.sticky) .right .btn-secondary {
    border-color: rgba(225, 161, 11, 0.85);
}

.home-page header:not(.sticky) .menu-btn span {
    background-color: #f8f3ea;
}

.home-page header:not(.sticky) .header__menu.show a {
    color: var(--color-black);
}

.home-page header:not(.sticky) .header__menu.show a.active,
.home-page header:not(.sticky) .header__menu.show a:hover {
    color: var(--primary-color);
}

.home-page header:not(.sticky) .menu-btn.open span {
    background-color: var(--color-black);
}

.articles-page header:not(.sticky) .header__menu a,
.articles-page header:not(.sticky) .right .btn-secondary {
    color: #f8f3ea;
}

.articles-page header:not(.sticky) .header__menu a:hover,
.articles-page header:not(.sticky) .header__menu a.active {
    color: var(--primary-color);
}

.articles-page header:not(.sticky) .right .btn-secondary {
    border-color: rgba(225, 161, 11, 0.85);
}

.articles-page header:not(.sticky) .menu-btn span {
    background-color: #f8f3ea;
}

.articles-page header:not(.sticky) .header__menu.show a {
    color: var(--color-black);
}

#hero {
    position: fixed;
    inset: 0 0 auto;
    z-index: 0;
    width: 100%;
    height: 100svh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 !important;
    background:
        linear-gradient(90deg, rgba(10, 14, 15, 0.94) 0%, rgba(10, 14, 15, 0.82) 38%, rgba(10, 14, 15, 0.34) 68%, rgba(10, 14, 15, 0.12) 100%),
        linear-gradient(180deg, rgba(10, 14, 15, 0.18) 0%, rgba(10, 14, 15, 0.72) 100%),
        url("../img/hero-inspiratio-divina.png") center center / cover no-repeat;
}

#hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 8rem;
    background: linear-gradient(180deg, rgba(10, 14, 15, 0), rgba(10, 14, 15, 0.62) 54%, var(--color-white));
    pointer-events: none;
}

.hero__inner {
    height: 100%;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 6rem;
}

body.home-page > section:not(#hero),
body.home-page > footer {
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
}

body.home-page > footer,
body.articles-page > footer {
    transform: none !important;
    opacity: 1 !important;
}

body.home-page > footer[data-aos],
body.articles-page > footer[data-aos] {
    transition: none !important;
}

#about {
    width: 100%;
    max-width: none;
    margin-top: calc(100svh - 4.5rem);
    padding-top: 7rem !important;
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -28px 65px rgba(0, 0, 0, 0.34);
}

#about::before {
    content: "";
    position: absolute;
    top: 1.4rem;
    left: 50%;
    width: 4.75rem;
    height: 0.25rem;
    border-radius: 999px;
    background-color: rgba(225, 161, 11, 0.72);
    transform: translateX(-50%);
}

body.home-page #about[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

#about > * {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#about > .section-subheading,
#about > .section-heading {
    text-align: center;
}

.hero__content {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 660px;
    color: #f8f3ea;
}

.hero__content::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 0.35rem;
    width: 3px;
    height: 8rem;
    background: linear-gradient(180deg, var(--primary-color), rgba(225, 161, 11, 0));
}

.hero__eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero__content h1 {
    font-size: 4.25rem;
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.25rem;
}

.hero__content p {
    width: 100%;
    max-width: 560px;
    font-size: 1.15rem;
    font-weight: 300;
    color: #eadfce;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

#hero .btn-secondary {
    color: #f8f3ea;
    border-color: rgba(248, 243, 234, 0.72);
}

#hero .btn-secondary:hover {
    color: #111111;
    background-color: #f8f3ea;
    border-color: #f8f3ea;
}

/* PAGINA DE ARTIGOS */
.articles-hero {
    position: fixed;
    inset: 0 0 auto;
    z-index: 0;
    width: 100%;
    height: 72svh;
    min-height: 34rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 !important;
    background:
        linear-gradient(90deg, rgba(8, 12, 13, 0.95) 0%, rgba(8, 12, 13, 0.78) 42%, rgba(8, 12, 13, 0.28) 100%),
        linear-gradient(180deg, rgba(8, 12, 13, 0.08) 0%, rgba(8, 12, 13, 0.86) 100%),
        url("../img/mainbg.jpg") center center / cover no-repeat;
}

.articles-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 7rem;
    background: linear-gradient(180deg, rgba(8, 12, 13, 0), rgba(8, 12, 13, 0.72) 62%, var(--color-white));
    pointer-events: none;
}

.articles-hero__inner {
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 5rem;
}

.articles-hero__content {
    position: relative;
    max-width: 760px;
    color: #f8f3ea;
}

.articles-hero__content::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 0.35rem;
    width: 3px;
    height: 8rem;
    background: linear-gradient(180deg, var(--primary-color), rgba(225, 161, 11, 0));
}

.articles-hero__content h1 {
    max-width: 620px;
    font-size: 3.85rem;
    font-weight: 800;
    line-height: 1.04;
    color: #fff;
    margin-bottom: 1.25rem;
}

.articles-hero__content p:last-child {
    max-width: 560px;
    font-size: 1.12rem;
    font-weight: 300;
    color: #eadfce;
}

body.articles-page > section:not(.articles-hero),
body.articles-page > footer {
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
}

.articles-page #services {
    width: 100%;
    margin-top: calc(72svh - 4.5rem);
    padding-top: 7rem !important;
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -28px 65px rgba(0, 0, 0, 0.34);
}

.articles-page #services::before {
    content: "";
    position: absolute;
    top: 1.4rem;
    left: 50%;
    width: 4.75rem;
    height: 0.25rem;
    border-radius: 999px;
    background-color: rgba(225, 161, 11, 0.72);
    transform: translateX(-50%);
}

.articles-page #services .titulo-artigo,
.articles-page #services .titulo-heading {
    text-align: center;
}

.articles-page #services .titulo-heading {
    max-width: none;
    margin-bottom: 3rem;
}

.article-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin: 0 auto 3rem;
}

.article-categories button,
.article-categories span {
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(225, 161, 11, 0.38);
    border-radius: 999px;
    color: #6c665f;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: inherit;
    background-color: rgba(225, 161, 11, 0.06);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.article-categories button:hover,
.article-categories button:focus,
.article-categories button.active,
.article-categories button[aria-pressed="true"] {
    border-color: var(--primary-color);
    color: #fff;
    background-color: var(--primary-color);
}

.article-categories button:hover,
.article-categories button:focus {
    transform: translateY(-1px);
}

.article-search {
    display: grid;
    gap: 0.65rem;
    max-width: 720px;
    margin: -1.25rem auto 2.5rem;
}

.article-search__label {
    color: var(--color-black);
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
}

.article-search__field {
    display: flex;
    align-items: center;
    min-height: 3.35rem;
    gap: 0.8rem;
    padding: 0 1rem;
    border: 1px solid rgba(37, 37, 37, 0.1);
    border-radius: 8px;
    background-color: var(--color-white);
    box-shadow: 0 18px 44px rgba(31, 28, 24, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-search__field:focus-within {
    border-color: rgba(225, 161, 11, 0.58);
    box-shadow: 0 20px 46px rgba(225, 161, 11, 0.13);
}

.article-search__field i {
    flex: 0 0 auto;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.article-search__field input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--color-black);
    font: inherit;
}

.article-search__field input::placeholder {
    color: #8b8580;
}

.article-search__clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background-color: rgba(225, 161, 11, 0.1);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.article-search__clear:hover,
.article-search__clear:focus {
    background-color: rgba(225, 161, 11, 0.18);
    transform: translateY(-1px);
}

.article-search__count {
    margin-bottom: 0;
    color: #746d66;
    font-size: 0.82rem;
    text-align: center;
}

.article-search__empty {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(225, 161, 11, 0.22);
    border-radius: 8px;
    color: #6c665f;
    text-align: center;
    background-color: rgba(225, 161, 11, 0.06);
}

.article-search__clear[hidden],
.article-search__empty[hidden],
.articles-page .service[hidden] {
    display: none;
}

.articles-page .services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.articles-page .service {
    display: flex;
    min-width: 0;
    min-height: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(37, 37, 37, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(31, 28, 24, 0.1);
}

.articles-page .service:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(31, 28, 24, 0.15);
}

.articles-page .service__img {
    height: auto;
    aspect-ratio: 16 / 10;
    border-bottom: 1px solid rgba(37, 37, 37, 0.08);
}

.articles-page .service__img img {
    border-radius: 0;
    margin-bottom: 0;
}

.articles-page .services__title {
    min-height: 4.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem 0;
    font-size: 1.25rem;
    line-height: 1.22;
}

.articles-page .service__text {
    min-height: 4.25rem;
    padding: 0 1.25rem;
    margin-bottom: 1.25rem;
    color: #6c665f;
}

.articles-page .service-btn {
    margin: auto auto 1.25rem;
    border-radius: 6px;
}

body.dark-mode.articles-page .article-categories button,
body.dark-mode.articles-page .article-categories span {
    border-color: rgba(225, 161, 11, 0.24);
    color: #d7cdbf;
    background-color: rgba(225, 161, 11, 0.1);
}

body.dark-mode.articles-page .article-categories button:hover,
body.dark-mode.articles-page .article-categories button:focus,
body.dark-mode.articles-page .article-categories button.active,
body.dark-mode.articles-page .article-categories button[aria-pressed="true"] {
    border-color: var(--primary-color);
    color: #111;
    background-color: var(--primary-color);
}

body.dark-mode.articles-page .article-search__field {
    border-color: rgba(255, 255, 255, 0.12);
    background-color: #171717;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

body.dark-mode.articles-page .article-search__field:focus-within {
    border-color: rgba(225, 161, 11, 0.52);
    box-shadow: 0 20px 46px rgba(225, 161, 11, 0.12);
}

body.dark-mode.articles-page .article-search__field input::placeholder,
body.dark-mode.articles-page .article-search__count {
    color: #aaa197;
}

body.dark-mode.articles-page .article-search__clear {
    background-color: rgba(225, 161, 11, 0.16);
}

body.dark-mode.articles-page .article-search__clear:hover,
body.dark-mode.articles-page .article-search__clear:focus {
    background-color: rgba(225, 161, 11, 0.26);
}

body.dark-mode.articles-page .article-search__empty {
    border-color: rgba(225, 161, 11, 0.28);
    color: #d7cdbf;
    background-color: rgba(225, 161, 11, 0.1);
}

body.dark-mode.articles-page .service {
    border-color: rgba(255, 255, 255, 0.1);
    background: #171717;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

body.dark-mode.articles-page .service:hover {
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
}

body.dark-mode.articles-page .service__img {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode.articles-page .service__meta,
body.dark-mode.articles-page .service__text {
    color: #c9c1b5;
}

body.dark-mode.articles-page .services__title {
    color: #f8f3ea;
}

body.dark-mode.home-page .service {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #171717;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

body.dark-mode.home-page .service:hover {
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
}

body.dark-mode.home-page .services__title {
    color: #f8f3ea;
}

body.dark-mode.home-page .service__text {
    color: #c9c1b5;
}

/* SOBRE */

.feature {
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #ccc;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.feature__counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature__text {
    font-size: 0.9rem;
}

.about__details {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.about__details-content {
    width: 50%;
}

.about__details-content h1,
.about__details-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about__details-content p {
    font-size: 0.9rem;
    font-weight: 400;
}

.about__details-content .btn {
    margin-top: 1rem;
}

.about__details-img {
    width: 40%;
}

.start-section {
    width: 100%;
    max-width: 1200px;
    margin-top: 4rem;
}

.start-section h3 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.start-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.start-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.4rem;
    border: 1px solid rgba(37, 37, 37, 0.08);
    border-radius: 8px;
    background-color: var(--color-white);
    box-shadow: 0 18px 45px rgba(31, 28, 24, 0.08);
}

.start-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-white);
    background-color: var(--primary-color);
}

.start-card h4 {
    font-size: 1.18rem;
    margin-bottom: 0;
}

.start-card p {
    color: #6c665f;
    font-size: 0.94rem;
}

.start-card .btn {
    margin-top: auto;
}

/* LITURGIA */
.liturgia-dia,
.calendario-liturgico {
    scroll-margin-top: 5rem;
    background-color: var(--color-white);
}

.liturgia-dia .section-heading,
.calendario-liturgico .section-heading {
    margin-bottom: 1.25rem;
}

.liturgia-card {
    width: 100%;
    padding: 2rem;
    border: 1px solid rgba(37, 37, 37, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(225, 161, 11, 0.08), rgba(255, 255, 255, 0) 38%),
        var(--color-white);
    box-shadow: 0 18px 45px rgba(31, 28, 24, 0.08);
}

.liturgia-card__cabecalho {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(37, 37, 37, 0.08);
}

.liturgia-card__cabecalho h3 {
    max-width: 780px;
    margin-bottom: 0;
    font-size: 1.8rem;
    line-height: 1.25;
}

.liturgia-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    color: #6c665f;
    font-size: 0.9rem;
}

.liturgia-cor {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: max-content;
    max-width: 100%;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(37, 37, 37, 0.1);
    border-radius: 999px;
    color: #5d5751;
    font-size: 0.82rem;
    font-weight: 600;
    background-color: #fff;
}

.liturgia-cor__marcador {
    width: 0.72rem;
    height: 0.72rem;
    flex: 0 0 0.72rem;
    border-radius: 50%;
    border: 1px solid rgba(37, 37, 37, 0.22);
    background-color: #ddd;
}

.liturgia-cor[data-cor="branco"] .liturgia-cor__marcador,
.liturgia-cor[data-cor="white"] .liturgia-cor__marcador {
    background-color: #f8f1df;
}

.liturgia-cor[data-cor="verde"] .liturgia-cor__marcador,
.liturgia-cor[data-cor="green"] .liturgia-cor__marcador {
    background-color: #2f7d4f;
}

.liturgia-cor[data-cor="vermelho"] .liturgia-cor__marcador,
.liturgia-cor[data-cor="red"] .liturgia-cor__marcador {
    background-color: #b8322a;
}

.liturgia-cor[data-cor="roxo"] .liturgia-cor__marcador,
.liturgia-cor[data-cor="violeta"] .liturgia-cor__marcador,
.liturgia-cor[data-cor="violet"] .liturgia-cor__marcador {
    background-color: #6f4b8b;
}

.liturgia-cor[data-cor="rosa"] .liturgia-cor__marcador,
.liturgia-cor[data-cor="rose"] .liturgia-cor__marcador {
    background-color: #d77893;
}

.liturgia-cor[data-cor="preto"] .liturgia-cor__marcador,
.liturgia-cor[data-cor="black"] .liturgia-cor__marcador {
    background-color: #252525;
}

.liturgia-leitura {
    max-width: 920px;
    margin-top: 1.5rem;
}

.liturgia-leitura h4 {
    margin-bottom: 0.7rem;
    color: var(--color-black);
    font-size: 1.15rem;
}

.liturgia-referencia,
.liturgia-titulo-leitura {
    color: #5f5850;
    font-size: 0.94rem;
    font-weight: 600;
}

.liturgia-texto {
    color: #5d5751;
    font-size: 1rem;
    line-height: 1.8;
}

.liturgia-observacao,
.liturgia-aviso,
.liturgia-loading {
    color: #6c665f;
    font-size: 0.94rem;
}

.liturgia-aviso {
    margin-bottom: 1rem;
    padding: 0.75rem 0.9rem;
    border-left: 3px solid var(--primary-color);
    background-color: rgba(225, 161, 11, 0.08);
}

.liturgia-link {
    margin-top: 1.5rem;
}

.liturgia-erro {
    padding: 1.25rem;
    border: 1px solid rgba(180, 35, 24, 0.16);
    border-radius: 8px;
    color: #7a271a;
    background-color: #fff7f5;
}

.calendario-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.calendario-grid.liturgia-erro {
    display: block;
}

.calendario-grid__aviso {
    grid-column: 1 / -1;
}

.calendario-item {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.35rem;
    border: 1px solid rgba(37, 37, 37, 0.08);
    border-radius: 8px;
    background-color: var(--color-white);
    box-shadow: 0 16px 42px rgba(31, 28, 24, 0.08);
}

.calendario-item__data {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.calendario-item h3 {
    margin-bottom: 0;
    font-size: 1.08rem;
    line-height: 1.35;
}

.calendario-item__botao {
    margin-top: auto;
}

.calendario-item__detalhes {
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(37, 37, 37, 0.08);
}

.calendario-item__detalhes .liturgia-leitura {
    margin-top: 1rem;
}

.calendario-item__detalhes .liturgia-texto {
    font-size: 0.9rem;
    line-height: 1.65;
}

/* PAGINA DE LITURGIA */
.liturgia-page header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(37, 37, 37, 0.08);
    box-shadow: 0 8px 24px rgba(37, 37, 37, 0.06);
}

.liturgia-app {
    display: grid;
    grid-template-columns: minmax(240px, 302px) minmax(0, 1fr) minmax(240px, 302px);
    min-height: 100vh;
    padding-top: 4.55rem;
    background-color: #f7f7f4;
}

.liturgia-app__aside {
    position: sticky;
    top: 4.55rem;
    height: calc(100vh - 4.55rem);
    overflow-y: auto;
    padding: 2rem;
    background-color: #f5f5f2;
}

.liturgia-app__aside--intro {
    border-right: 1px solid rgba(37, 37, 37, 0.12);
}

.liturgia-app__aside--calendar {
    border-left: 1px solid rgba(37, 37, 37, 0.12);
}

.liturgia-brand h1,
.liturgia-page-header h2,
.liturgia-reading-card h3 {
    font-family: var(--secondary-font);
    letter-spacing: 0;
}

.liturgia-brand h1 {
    margin-bottom: 0.8rem;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.1;
}

.liturgia-brand p:not(.section-subheading),
.liturgia-fonte {
    color: #77736d;
    font-size: 0.92rem;
}

.liturgia-indice {
    margin-top: clamp(2rem, 24vh, 14rem);
}

.liturgia-indice ul {
    display: grid;
    gap: 0.35rem;
}

.liturgia-indice a,
.liturgia-indice span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.45rem 0.6rem;
    border-radius: 4px;
    color: #36322e;
    font-size: 0.9rem;
}

.liturgia-indice a:hover,
.liturgia-indice a.active {
    color: var(--color-black);
    background-color: rgba(37, 37, 37, 0.06);
}

.liturgia-fonte {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(37, 37, 37, 0.12);
    font-size: 0.76rem;
}

.liturgia-app__content {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    padding: 2rem 1.8rem 4rem;
}

.liturgia-page-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.liturgia-page-header__date {
    margin-bottom: 0.3rem;
    color: #77736d;
    font-size: 0.88rem;
}

.liturgia-page-header h2 {
    position: relative;
    margin-bottom: 0.6rem;
    padding-left: 1rem;
    color: #111;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.08;
}

.liturgia-page-header h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.18rem;
    width: 5px;
    height: 2.1rem;
    background-color: rgba(37, 37, 37, 0.18);
}

.liturgia-page-header__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.liturgia-page-header__share {
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 2.4rem;
    border-radius: 50%;
    color: #8b8781;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.liturgia-page-header__share:hover,
.liturgia-page-header__share:focus {
    color: var(--primary-color);
    background-color: rgba(225, 161, 11, 0.08);
}

.liturgia-reading-list {
    display: grid;
    gap: 1.25rem;
}

.liturgia-reading-card {
    padding: 1.8rem 1.9rem;
    border: 1px solid rgba(12, 79, 166, 0.13);
    border-radius: 8px;
    background-color: var(--color-white);
    box-shadow: 0 12px 30px rgba(37, 37, 37, 0.04);
    scroll-margin-top: 6rem;
}

.liturgia-reading-card__header {
    margin-bottom: 1.35rem;
}

.liturgia-reading-card__label {
    margin-bottom: 0.45rem;
    color: #8b9198;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.liturgia-reading-card h3 {
    display: inline;
    margin-right: 0.35rem;
    margin-bottom: 0;
    color: #050505;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.25;
}

.liturgia-reading-card__reference {
    color: #77736d;
    font-size: 0.9rem;
    font-weight: 700;
}

.liturgia-reading-card__refrain {
    margin-bottom: 1rem;
    color: #111;
    font-family: var(--secondary-font);
    font-size: 1.16rem;
    font-weight: 700;
    line-height: 1.4;
}

.liturgia-reading-card__text {
    color: #161616;
    font-family: var(--primary-font);
    font-size: 1rem;
    line-height: 1.78;
}

.liturgia-date-button {
    width: 100%;
    min-height: 3.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0 1rem;
    border: 1px solid rgba(37, 37, 37, 0.1);
    border-radius: 6px;
    color: #625e59;
    background-color: #ededeb;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.liturgia-date-button:hover,
.liturgia-date-button:focus {
    border-color: rgba(225, 161, 11, 0.4);
    color: #252525;
    background-color: #e7e4dc;
}

.liturgia-date-picker {
    margin: 0.75rem 0 1rem;
    padding: 0.9rem;
    border: 1px solid rgba(37, 37, 37, 0.08);
    border-radius: 8px;
    background-color: #fefefe;
    box-shadow: 0 16px 36px rgba(37, 37, 37, 0.08);
}

.liturgia-date-picker__header {
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr) 2.25rem;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.8rem;
}

.liturgia-date-picker__header h3 {
    margin-bottom: 0;
    color: #1f1f1f;
    font-family: var(--secondary-font);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.liturgia-date-picker__nav {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    color: #65615b;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.liturgia-date-picker__nav:hover,
.liturgia-date-picker__nav:focus {
    color: var(--primary-color);
    background-color: rgba(225, 161, 11, 0.1);
}

.liturgia-date-picker__weekdays,
.liturgia-date-picker__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.liturgia-date-picker__weekdays {
    margin-bottom: 0.35rem;
    color: #74706a;
    font-size: 0.68rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.liturgia-date-picker__weekdays span {
    min-width: 0;
    padding: 0.35rem 0.1rem;
}

.liturgia-date-picker__grid {
    gap: 0.18rem;
}

.liturgia-date-picker__empty {
    min-height: 2.7rem;
}

.liturgia-date-picker__day {
    position: relative;
    min-width: 0;
    min-height: 2.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.15rem 0.85rem;
    border: 1px solid transparent;
    border-radius: 7px;
    color: #3f3b36;
    background-color: transparent;
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.liturgia-date-picker__day:hover,
.liturgia-date-picker__day:focus {
    border-color: rgba(225, 161, 11, 0.25);
    background-color: rgba(225, 161, 11, 0.08);
}

.liturgia-date-picker__day.today {
    border-color: rgba(225, 161, 11, 0.45);
}

.liturgia-date-picker__day.selected {
    background-color: #ddd9d2;
    color: #191919;
}

.liturgia-date-picker__day::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.42rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background-color: #d9d9d9;
    transform: translateX(-50%);
}

.liturgia-date-picker__day[data-cor="verde"]::after,
.liturgia-date-picker__day[data-cor="green"]::after {
    background-color: #63b56f;
}

.liturgia-date-picker__day[data-cor="vermelho"]::after,
.liturgia-date-picker__day[data-cor="red"]::after {
    background-color: #df5b5d;
}

.liturgia-date-picker__day[data-cor="branco"]::after,
.liturgia-date-picker__day[data-cor="white"]::after {
    border: 1px solid rgba(37, 37, 37, 0.16);
    background-color: #fff;
}

.liturgia-date-picker__day[data-cor="roxo"]::after,
.liturgia-date-picker__day[data-cor="violeta"]::after,
.liturgia-date-picker__day[data-cor="violet"]::after {
    background-color: #7d5ea8;
}

.liturgia-date-picker__day[data-cor="rosa"]::after,
.liturgia-date-picker__day[data-cor="rose"]::after {
    background-color: #d889ad;
}

.liturgia-date-picker__day[data-cor="preto"]::after,
.liturgia-date-picker__day[data-cor="black"]::after {
    background-color: #252525;
}

.liturgia-agenda {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.liturgia-agenda__item {
    width: 100%;
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.65rem;
    align-items: start;
    min-height: 3.8rem;
    padding: 0.75rem;
    border: 0;
    border-left: 4px solid transparent;
    border-radius: 6px;
    color: #625e59;
    background-color: #ebebe9;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.liturgia-agenda__item:hover,
.liturgia-agenda__item:focus {
    background-color: #e3e1dc;
}

.liturgia-agenda__item.active {
    border-left-color: #e76f6f;
    background-color: #d8d8d6;
}

.liturgia-agenda__day {
    color: #66625d;
    font-size: 0.9rem;
    font-weight: 700;
}

.liturgia-agenda__content {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
}

.liturgia-agenda__title {
    display: -webkit-box;
    overflow: hidden;
    color: #66625d;
    font-size: 0.78rem;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.liturgia-agenda .liturgia-cor {
    gap: 0;
    width: 0.72rem;
    padding: 0;
    border: 0;
    background-color: transparent;
}

.liturgia-agenda .liturgia-cor span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

body.dark-mode.liturgia-page,
body.dark-mode.liturgia-page .liturgia-app {
    background-color: #111;
}

body.dark-mode.liturgia-page .liturgia-app__aside {
    background-color: #151515;
    border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode.liturgia-page .liturgia-brand h1,
body.dark-mode.liturgia-page .liturgia-page-header h2,
body.dark-mode.liturgia-page .liturgia-reading-card h3,
body.dark-mode.liturgia-page .liturgia-reading-card__refrain,
body.dark-mode.liturgia-page .liturgia-reading-card__text {
    color: #f8f3ea;
}

body.dark-mode.liturgia-page .liturgia-brand p:not(.section-subheading),
body.dark-mode.liturgia-page .liturgia-fonte,
body.dark-mode.liturgia-page .liturgia-page-header__date,
body.dark-mode.liturgia-page .liturgia-reading-card__reference,
body.dark-mode.liturgia-page .liturgia-agenda__day,
body.dark-mode.liturgia-page .liturgia-agenda__title {
    color: #c9c1b5;
}

body.dark-mode.liturgia-page .liturgia-reading-card {
    border-color: rgba(225, 161, 11, 0.18);
    background-color: #181818;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

body.dark-mode.liturgia-page .liturgia-indice a,
body.dark-mode.liturgia-page .liturgia-indice span {
    color: #f8f3ea;
}

body.dark-mode.liturgia-page .liturgia-indice a:hover,
body.dark-mode.liturgia-page .liturgia-indice a.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode.liturgia-page .liturgia-date-button,
body.dark-mode.liturgia-page .liturgia-agenda__item {
    color: #f8f3ea;
    background-color: #202020;
}

body.dark-mode.liturgia-page .liturgia-date-button:hover,
body.dark-mode.liturgia-page .liturgia-date-button:focus {
    color: #fff;
    background-color: #2a2a2a;
}

body.dark-mode.liturgia-page .liturgia-date-picker {
    border-color: rgba(255, 255, 255, 0.12);
    background-color: #181818;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

body.dark-mode.liturgia-page .liturgia-date-picker__header h3,
body.dark-mode.liturgia-page .liturgia-date-picker__day {
    color: #f8f3ea;
}

body.dark-mode.liturgia-page .liturgia-date-picker__weekdays,
body.dark-mode.liturgia-page .liturgia-date-picker__nav {
    color: #c9c1b5;
}

body.dark-mode.liturgia-page .liturgia-date-picker__day:hover,
body.dark-mode.liturgia-page .liturgia-date-picker__day:focus {
    background-color: rgba(225, 161, 11, 0.14);
}

body.dark-mode.liturgia-page .liturgia-date-picker__day.selected {
    color: #fff;
    background-color: #34302a;
}

body.dark-mode.liturgia-page .liturgia-date-picker__day[data-cor="branco"]::after,
body.dark-mode.liturgia-page .liturgia-date-picker__day[data-cor="white"]::after {
    border-color: rgba(255, 255, 255, 0.28);
    background-color: #f8f3ea;
}

body.dark-mode.liturgia-page .liturgia-agenda__item:hover,
body.dark-mode.liturgia-page .liturgia-agenda__item:focus,
body.dark-mode.liturgia-page .liturgia-agenda__item.active {
    background-color: #292929;
}

body.dark-mode.liturgia-page .liturgia-cor {
    border-color: rgba(255, 255, 255, 0.14);
    color: #f8f3ea;
    background-color: #181818;
}

@media screen and (min-width: 1181px) {
    .liturgia-app {
        --liturgia-side-width: clamp(240px, 15.75vw, 302px);
        display: block;
        padding-left: var(--liturgia-side-width);
        padding-right: var(--liturgia-side-width);
    }

    .liturgia-app__aside {
        position: fixed;
        top: 4.55rem;
        bottom: 0;
        width: var(--liturgia-side-width);
        height: auto;
        z-index: 10;
    }

    .liturgia-app__aside--intro {
        left: 0;
    }

    .liturgia-app__aside--calendar {
        right: 0;
    }

    .liturgia-app__content {
        min-height: calc(100vh - 4.55rem);
    }
}

@media screen and (max-width: 1180px) {
    .liturgia-app {
        grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
    }

    .liturgia-app__aside--calendar {
        grid-column: 1 / -1;
        height: auto;
        position: static;
        border-left: 0;
        border-top: 1px solid rgba(37, 37, 37, 0.12);
    }

    .liturgia-agenda {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* SERVIÇOS */
#services .section-subheading,
#services .section-heading {
    text-align: right;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Serviço Container */
.service {
    padding: 0.5rem;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 16px; /* Arredondamento mais sutil */
    box-shadow: 0 4px 15px rgba(233, 232, 232, 0.1); /* Sombra mais suave e moderna */
    background: linear-gradient(135deg, #e6e6e6, #fafafa);
    transition: transform 0.3s, box-shadow 0.3s; /* Efeito de transição suave */
}

/* Efeito hover moderno */
.service:hover {
    transform: scale(1.05); /* Leve zoom ao passar o mouse */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* Sombra mais forte */
}

/* Imagem */
.service__img {
    height: 200px; /* Alinhado com o tamanho da altura do .project__img */
    overflow: hidden;
}

.service__img img {
    width: 100%; /* Preenche totalmente a largura do contêiner */
    height: 100%; /* Preenche a altura do contêiner */
    object-fit: cover; /* Garante que a imagem se ajuste sem distorção */
    border-radius: 12px; /* Cantos arredondados */
    margin-bottom: 1rem; /* Espaço abaixo da imagem */
}

.service__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.25rem 0;
    color: #7a7169;
    font-size: 0.76rem;
    font-weight: 600;
}

.service__category {
    color: var(--primary-color);
    text-transform: uppercase;
}

/* Título */
.services__title {
    font-size: 1.5rem; /* Aumenta o tamanho do título */
    font-weight: 700; /* Negrito mais marcante */
    text-align: center; /* Centraliza o texto */
    margin-bottom: 0.75rem;
    color: #333;
}

/* Texto */
.service__text {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center; /* Centraliza o texto */
    margin-bottom: 1rem;
    color: #555;
}

/* Botão */
.service-btn {
    display: block;
    margin: 0 auto; /* Centraliza o botão horizontalmente */
    padding: 0.8rem 2rem;
    background-color: #E1A10B;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}


/* Efeito hover no botão */
.service-btn:hover {
    background-color: #ffffff; /* Azul mais escuro no hover */
    color: #E1A10B;
    transform: scale(1.05); /* Leve aumento ao passar o mouse */
}


/* DOCUMENTOS */
.section-intro {
    max-width: 680px;
    color: #6c665f;
    margin-bottom: 2rem;
}

.documentos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
    z-index: auto;
}

.documento-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.45rem;
    border: 1px solid rgba(37, 37, 37, 0.08);
    border-radius: 8px;
    background-color: var(--color-white);
    box-shadow: 0 18px 45px rgba(31, 28, 24, 0.08);
}

.documento-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.documento-card p {
    color: #6c665f;
    font-size: 0.92rem;
}

.documento-card .btn {
    margin-top: auto;
}

.documento-card small {
    color: #8b837b;
    font-size: 0.76rem;
}

.documento {
    display: flex;
    gap: 10%;
    align-items: center;
}

.documento:nth-child(2) {
    flex-direction: row-reverse;
}

.documento__img {
    position: relative;
    min-width: 35%;
    max-width: 550px;
}

.documento__category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.documento__title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.documento__text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn.btn-secondary {
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.3s;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--color-white);
}


/* CONTATO */
.contact {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.contact__form {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__form h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.netlify-honeypot {
    display: none;
}

.contact__form input,
.contact__form textarea {
    padding: 1rem;
    border-radius: 8px;
    border: none;
    outline: none;
    background-color: var(--color-white);
    box-shadow: 0 0 10px rgba(80, 80, 80, 0.4);
}

.contact__form textarea {
    resize: vertical;
}

.contact__status {
    min-height: 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact__status[data-type="success"] {
    color: #18794e;
}

.contact__status[data-type="error"] {
    color: #b42318;
}

.contact__privacy {
    color: var(--color-grey);
    font-size: 0.8rem;
    line-height: 1.45;
}

.contact-success {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
}

.contact-success .text {
    max-width: 560px;
    color: var(--color-grey);
}

.contact__details {
    width: 50%;
}

.contact__details .text {
    font-size: 0.9rem;
    color: var(--color-grey);
    margin-bottom: 2rem;
}

.contact__details .details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__details .detail {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.detail__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 0.8rem;
    background: var(--primary-color);
}

.detail__content h3 {
    margin: 0;
    line-height: 1;
}

.detail__content p {
    color: var(--color-grey);
    font-size: 0.9rem;
}

.detail__content a {
    transition: color 0.25s ease;
}

.detail__content a:hover,
.detail__content a:focus {
    color: var(--primary-color);
}

/* FOOTER */
footer {
    padding: 2rem 0;
}

.footer__content {
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(240px, 2fr) repeat(3, minmax(150px, 1fr));
}

.footer__logo {
    width: 100px;
    margin-bottom: 1rem;
}

.footer__brand {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.footer__text {
    font-size: 0.9rem;
    color: var(--color-grey);
    margin-bottom: 1rem;
}

.footer__newletter {
    position: relative;
}

.footer__newletter input {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    outline: none;
    background-color: var(--color-white);
    box-shadow: 0 0 10px rgba(80, 80, 80, 0.4);
}

.footer__newletter .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
    border: none;
    background: transparent;
    cursor: pointer;
}

.footer__menu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-grey);
}

.footer__menu-list li a:hover {
    color: var(--primary-color);
    transition: color 0.3s;
}

.footer__bottom-icons a:hover {
    color: var(--primary-color);
    transition: color 0.3s;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--color-grey);
    margin-top: 3rem;
}

.footer__bottom-icons {
    display: flex;
    gap: 1rem;
}

.instagram {
    color: #E4405F;
}

.github {
    color: #6e6e6e;
}

.linkedin {
    color: #0A66C2;
}



/* MEDIA QUERIES */
@media screen and (max-width: 768px) {

    /* GLOBAL */
    .container {
        padding: 0 1rem;
    }

    section {
        padding-top: 4rem !important;
        padding-bottom: 3rem !important;
    }

    .color-toggle-button {
        right: 1rem;
        bottom: 1rem;
        left: auto;
    }

    .section-heading {
        font-size: 1.55rem;
    }

    .whatsapp-button {
        position: fixed;
        bottom: 15px;
        right: 15px;
        z-index: 1000;
    }

    /* HEADER */
    .header__menu {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        width: 100%;
        height: 100vh;
        height: 100svh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--color-white);
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .header__menu.show {
        transform: translateX(0);
    }

    .header__menu li {
        margin: 1rem 0;
    }

    .menu-btn {
        display: flex;
        position: fixed;
        top: calc(env(safe-area-inset-top, 0px) + 0.95rem);
        right: 0.95rem;
        width: 2.75rem;
        height: 2.75rem;
        z-index: 1002;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(248, 243, 234, 0.28);
        border-radius: 8px;
        background-color: rgba(10, 14, 15, 0.42);
        backdrop-filter: blur(10px);
    }

    .menu-btn span {
        position: absolute;
        left: 50%;
        width: 1.35rem;
        height: 2px;
        background-color: #f8f3ea;
        margin-bottom: 0;
        transform: translateX(-50%);
    }

    .menu-btn span:nth-child(1) {
        top: 0.9rem;
    }

    .menu-btn span:nth-child(2) {
        top: 1.35rem;
    }

    .menu-btn span:nth-child(3) {
        top: 1.8rem;
    }

    header.sticky .menu-btn span,
    .menu-btn.open span {
        background-color: var(--color-black);
    }

    header.sticky .menu-btn,
    .menu-btn.open {
        border-color: rgba(37, 37, 37, 0.14);
        background-color: rgba(255, 255, 255, 0.92);
    }

    .menu-btn.open span:nth-child(1) {
        top: 1.35rem;
        transform: translateX(-50%) rotate(45deg);
    }

    .menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.open span:nth-child(3) {
        top: 1.35rem;
        transform: translateX(-50%) rotate(-45deg);
    }

    header .right .btn {
        display: none;
    }

    .site-crest {
        position: fixed;
        top: calc(env(safe-area-inset-top, 0px) + 0.7rem);
        left: 50%;
        z-index: 1001;
        width: 4.35rem;
        height: 4.35rem;
        transform: translateX(-50%);
    }

    /* INICIO */
    #hero {
        min-height: 100svh;
        background:
            linear-gradient(90deg, rgba(10, 14, 15, 0.94) 0%, rgba(10, 14, 15, 0.82) 52%, rgba(10, 14, 15, 0.44) 100%),
            linear-gradient(180deg, rgba(10, 14, 15, 0.12) 0%, rgba(10, 14, 15, 0.78) 100%),
            url("../img/hero-inspiratio-divina.png") 62% center / cover no-repeat;
    }

    .hero__inner {
        min-height: 100svh;
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    #about {
        margin-top: calc(100svh - 3.5rem);
        padding-top: 5.75rem !important;
        border-radius: 22px 22px 0 0;
    }

    #about::before {
        top: 1.15rem;
        width: 4rem;
    }

    .hero__content {
        max-width: 20rem;
        padding-left: 0;
        text-align: left;
    }

    .hero__content::before {
        left: 0;
        top: -1.25rem;
        width: 4rem;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), rgba(225, 161, 11, 0));
    }

    .hero__eyebrow {
        font-size: 0.75rem;
    }

    .hero__content h1 {
        font-size: 2.45rem;
    }

    .hero__content p {
        max-width: 19.5rem;
        font-size: 16px;
    }

    .hero__actions {
        align-items: flex-start;
    }

    .hero__actions .btn {
        margin: 0;
    }

    /* ARTIGOS */
    .articles-hero {
        min-height: 100svh;
        height: 100svh;
        background:
            linear-gradient(90deg, rgba(8, 12, 13, 0.94) 0%, rgba(8, 12, 13, 0.82) 54%, rgba(8, 12, 13, 0.48) 100%),
            linear-gradient(180deg, rgba(8, 12, 13, 0.12) 0%, rgba(8, 12, 13, 0.78) 100%),
            url("../img/mainbg.jpg") 68% center / cover no-repeat;
    }

    .articles-hero__inner {
        min-height: 100svh;
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    .articles-hero__content {
        max-width: 20rem;
    }

    .articles-hero__content::before {
        left: 0;
        top: -1.25rem;
        width: 4rem;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), rgba(225, 161, 11, 0));
    }

    .articles-hero__content h1 {
        font-size: 2.45rem;
    }

    .articles-hero__content p:last-child {
        font-size: 16px;
    }

    .articles-page #services {
        margin-top: calc(100svh - 3.5rem);
        padding-top: 5.75rem !important;
        border-radius: 22px 22px 0 0;
    }

    .articles-page #services::before {
        top: 1.15rem;
        width: 4rem;
    }

    .articles-page .services {
        grid-template-columns: 1fr;
    }

    .articles-page .services__title,
    .articles-page .service__text {
        min-height: 0;
    }

    .articles-page .service:hover {
        transform: none;
    }

    .feature {
        padding: 2rem;
    }

    .about__details {
        flex-direction: column;
    }

    .about__details-content,
    .about__details-img {
        width: 100%;
    }

    .start-grid {
        grid-template-columns: 1fr;
    }

    .start-card {
        padding: 1.2rem;
    }

    /* LITURGIA */
    .liturgia-card {
        padding: 1.25rem;
    }

    .liturgia-card__cabecalho h3 {
        font-size: 1.35rem;
    }

    .liturgia-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .liturgia-texto {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .calendario-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .calendario-item {
        width: 100%;
        padding: 1.15rem;
    }

    .calendario-item__botao {
        width: 100%;
        max-width: none;
        min-height: 2.75rem;
        text-align: center;
    }

    .liturgia-app {
        grid-template-columns: 1fr;
        padding-top: 4.4rem;
    }

    .liturgia-app__aside,
    .liturgia-app__aside--calendar {
        position: static;
        height: auto;
        padding: 1rem;
        border-left: 0;
        border-right: 0;
    }

    .liturgia-app__aside--intro {
        border-bottom: 1px solid rgba(37, 37, 37, 0.12);
    }

    .liturgia-brand h1 {
        font-size: 1.75rem;
    }

    .liturgia-indice {
        margin-top: 1.25rem;
    }

    .liturgia-indice ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .liturgia-indice a,
    .liturgia-indice span {
        min-height: 2.5rem;
        font-size: 0.82rem;
    }

    .liturgia-app__content {
        padding: 1.25rem 1rem 2.5rem;
    }

    .liturgia-page-header {
        align-items: flex-start;
    }

    .liturgia-page-header h2 {
        font-size: 1.85rem;
    }

    .liturgia-reading-card {
        padding: 1.2rem;
        scroll-margin-top: 5.25rem;
    }

    .liturgia-reading-card h3 {
        display: block;
        font-size: 1.14rem;
    }

    .liturgia-reading-card__text {
        font-size: 0.94rem;
        line-height: 1.68;
    }

    .liturgia-agenda {
        grid-template-columns: 1fr;
    }

    /* DOCUMENTOS */
    .section-intro {
        font-size: 0.95rem;
    }

    .documentos {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .documento {
        flex-direction: column !important;
        gap: 1.5rem;
    }

    .documento__img {
        width: 100%;
        max-width: 300px;
        border-radius: 8px;
    }

    .documento__title {
        font-size: 1.5rem;
        text-transform: uppercase;
    }

    /* EQUIPE */
    .members {
        flex-direction: column;
        text-align: center;
    }

    .member {
        flex-direction: column;
        align-items: center;
    }

    .member__img {
        flex: 0 0 auto;
        max-width: 300px;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .member__content {
        text-align: left;
    }

    .member__content h1,
    .member__content p {
        margin-left: auto;
        margin-right: auto;
    }

    .skills-list {
        flex-direction: row;
        align-items: start;
    }

    .skills-list ul {
        margin-bottom: 0.5rem;
    }

    /* DEPOIMENTOS */
    .testimonials__img {
        display: none;
    }

    .testimonials-wrapper {
        width: 100%;
    }

    .testimonial__title {
        font-size: 1.5rem;
    }

    /* CONTATO */
    .contact {
        flex-direction: column;
    }

    .contact__form,
    .contact__details {
        width: 100%;
    }

    .contact h1,
    .contact h3 {
        font-size: 1rem;
    }

    /* FOOTER */
    .footer__content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}
