/*--------------------------------------------------------------
# Variavéis e Estilos Globais
--------------------------------------------------------------*/
:root {
    --color-gold: #B89633;
    --color-cream: #FFF6E1;
    --color-maroon: #890000;
    --color-text-dark: #333333;
    
    --font-primary: 'Lora', serif;
    --font-secondary: 'Montserrat', sans-serif;
}

body {
    background-color: var(--color-cream);
    color: var(--color-text-dark);
    font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary), sans-serif;
    color: var(--color-gold);
}

h2 {
    font-weight: 700;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    padding-bottom: 40px;
}

/*--------------------------------------------------------------
# Botões Customizados
--------------------------------------------------------------*/
.btn-gold {
    background-color: var(--color-gold);
    color: white;
    border: 2px solid var(--color-gold);
    padding: 10px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: #a18228;
    border-color: #a18228;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    padding: 10px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: white;
}

/*--------------------------------------------------------------
# Header / Navbar
--------------------------------------------------------------*/
.navbar {
    transition: background-color 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
    background-color: var(--color-cream);
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-brand img {
    max-height: 50px;
}
.nav-link {
    color: #333;
    font-weight: 700;
}
.navbar-dark .nav-link {
    color: white;
}
.navbar.scrolled .nav-link {
    color: var(--color-text-dark);
}
.dropdown-menu {
    background-color: var(--color-cream);
    border: 1px solid var(--color-gold);
}
.dropdown-item {
    color: var(--color-text-dark);
}
.dropdown-item:hover {
    background-color: var(--color-gold);
    color: white;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}
#hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.hero-container {
    position: relative;
    z-index: 2;
}
#hero h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
#hero .slogan {
    color: white;
    font-size: 1.5rem;
}

#hero-presbiterio {
    height: 60vh;
    width: 100%;
    background: url('../images/presbiterio.webp') no-repeat center center;
    background-size: cover;
    position: relative;
}

#hero-presbiterio::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

#hero-presbiterio .hero-container {
    position: relative;
    z-index: 2;
}

#hero-presbiterio h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#hero-presbiterio .slogan {
    color: white;
    font-size: 1.5rem;
}

#hero-igrejas {
    height: 60vh;
    width: 100%;
    background: url('../images/Image_fx\ \(19\).jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

#hero-igrejas::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

#hero-igrejas .hero-container {
    position: relative;
    z-index: 2;
}

#hero-igrejas h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#hero-igrejas .slogan {
    color: white;
    font-size: 1.5rem;
}

#hero-page {
    height: 60vh;
    width: 100%;
    background: url('../images/new_church_01.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

#hero-page::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

#hero-page .hero-container {
    position: relative;
    z-index: 2;
}

.img-ajuste {
    height: 350px !important;
}

#hero-page h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#hero-page .slogan {
    color: white;
    font-size: 1.5rem;
}

#hero-declaracao {
    height: 60vh;
    width: 100%;
    background: url('../images/biblia-aberta.webp') no-repeat center center;
    background-size: cover;
    position: relative;
}

#hero-declaracao::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

#hero-declaracao .hero-container {
    position: relative;
    z-index: 2;
}

#hero-declaracao h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#hero-declaracao .slogan {
    color: white;
    font-size: 1.5rem;
}

/* Accordion Styles */
.accordion-item {
    border: 1px solid var(--color-gold);
    margin-bottom: 15px;
    border-radius: 8px;
}

.accordion-button {
    background-color: var(--color-cream);
    color: var(--color-text-dark);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-gold);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(184, 150, 51, 0.5);
}

.accordion-body {
    background-color: white;
}

#hero-afirmacoes {
    height: 60vh;
    width: 100%;
    background: url('../images/afirmacao-negacao.webp') no-repeat center center;
    background-size: cover;
    position: relative;
}

#hero-afirmacoes::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

#hero-afirmacoes .hero-container {
    position: relative;
    z-index: 2;
}

#hero-afirmacoes h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#hero-afirmacoes .slogan {
    color: white;
    font-size: 1.5rem;
}

.affirmation-card {
    background-color: white;
    padding: 30px;
    border-left: 5px solid var(--color-gold);
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/*--------------------------------------------------------------
# Outras Seções
--------------------------------------------------------------*/
.schedule-card {
    background: white;
    border-left: 5px solid var(--color-gold);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.schedule-card i {
    font-size: 2rem;
    color: var(--color-gold);
}

#nossa-fe .nav-tabs .nav-link {
    color: var(--color-text-dark);
    border-color: transparent;
    border-bottom: 3px solid transparent;
}
#nossa-fe .nav-tabs .nav-link.active {
    color: var(--color-gold);
    border-bottom: 3px solid var(--color-gold);
    background-color: transparent;
}

#presbiterio .card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

#presbiterio .card .card-img-top {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--color-gold);
    object-fit: cover;
    margin: 20px auto 0;
}

#membros-presbiterio .card .card-img-top {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid var(--color-gold);
    object-fit: cover;
    margin: 20px auto 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.text-gold {
    color: var(--color-gold);
}

.church-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.church-card:hover {
    transform: translateY(-5px);
}

.church-card .card-body {
    padding: 30px;
}

.church-card .social-links a {
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-right: 15px;
    transition: color 0.3s;
}

.church-card .social-links a:hover {
    color: var(--color-gold);
}

#meditacao .blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-text-dark);
}

#meditacao .blockquote-footer {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-style: normal;
}

#contribuir {
    background-color: #faf3e8; /* Variação do creme */
}
#contribuir .contribution-box {
    border: 2px dashed var(--color-gold);
    padding: 30px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background-color: var(--color-text-dark);
    color: rgba(255,255,255,0.7);
}
#footer h5 {
    color: var(--color-gold);
}
#footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
#footer a:hover {
    color: white;
}
#footer .social-links a {
    font-size: 1.5rem;
}

.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

/*--------------------------------------------------------------
# WhatsApp Float Button
--------------------------------------------------------------*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}
