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

/* Aumentar tamanho dos ícones e textos do navbar */
.navbar-nav .nav-link {
    font-size: 1.125rem !important;
    text-transform: capitalize !important;
    position: relative;
    transition: color 0.3s ease;
}

/* Aumentar ícones do navbar */
.navbar-nav .nav-link i,
.navbar .bi {
    font-size: 1.25rem !important;
}

/* Efeito hover - cor vermelha escarlate */
.navbar-nav .nav-link:hover {
    color: #720404 !important;
}

/* Underline animado ao fazer hover */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #720404;
    transition: width 0.4s ease, left 0.4s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
    left: 10%;
}

/* Botão "Começar" - mantém cor vermelha escarlate */
.btn-primary-custom {
    background-color: #720404 !important;
    border-color: #720404 !important;
    color: white !important;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #8B0000 !important;
    border-color: #8B0000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 4, 4, 0.3);
}

/* ============================================
   VALORES SECTION - Ícones Vermelhos
   ============================================ */

/* Ícones da seção de valores em vermelho */
.valores-section .fs-1,
.valores-section .card .fs-1 i,
[class*="valor"] .fs-1 i {
    color: #720404 !important;
}

/* ============================================
   CARDS HR PADRONIZAÇÃO
   ============================================ */

/* Padronizar todos os HR dos cards */
.card hr,
.card-body hr,
hr.card-divider {
    border: 0;
    height: 2px;
    background-color: #720404;
    opacity: 1;
    margin: 1rem auto;
    width: 25%;
}

/* Variação para HR mais fino */
.card hr.hr-thin {
    height: 1px;
}

/* Variação para HR mais largo */
.card hr.hr-wide {
    width: 50%;
}

/* HR nos cards de notícias */
.noticia-card hr,
.news-card hr {
    background: linear-gradient(to right, transparent, #720404, transparent);
}

/* HR nos cards de eventos */
.evento-card hr,
.event-card hr {
    background-color: #720404;
    width: 30%;
}

/* HR nos cards de teólogas */
.teologa-card hr,
.theologian-card hr {
    background-color: #720404;
    width: 40%;
}
