:root {
    --primary-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --error-red: #ef4444;
    --accent-gold: #f59e0b;
    --spiritual-purple: #8b5cf6;
    --warm-coral: #f97316;
    
    /* Novas cores para programações - PALETA EQUILIBRADA */
    --domingo-gradient-start: #667eea;
    --domingo-gradient-end: #764ba2;
    --terca-gradient-start: #3b82f6;
    --terca-gradient-end: #2563eb;
    --quarta-gradient-start: #10b981;
    --quarta-gradient-end: #059669;
    --homens-gradient-start: #1e3a8a;
    --homens-gradient-end: #172554;
    --jovens-gradient-start: #6366f1;
    --jovens-gradient-end: #4f46e5;
    --juniores-gradient-start: #a78bfa;
    --juniores-gradient-end: #8b5cf6;
    --mulheres-gradient-start: #db2777;
    --mulheres-gradient-end: #be185d;
    --vigilia-gradient-start: #7c3aed;
    --vigilia-gradient-end: #6d28d9;
    --casais-gradient-start: #dc2626;
    --casais-gradient-end: #b91c1c;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* ========== NAVBAR PREMIUM ========== */
.navbar {
    background: #0f2368;
    padding: 0.6rem 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.5s ease;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    border-bottom: none;
}

.navbar.navbar-scrolled {
    padding: 0.4rem 0 !important;
    background: #0a1a50 !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: white !important;
    transition: opacity 0.2s ease, transform 0.2s ease;
    padding: 0;
}

.navbar-brand:hover {
    opacity: 0.88;
    transform: scale(1.03);
}

.navbar-logo {
    height: 52px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    opacity: 0.85;
}

.nav-link {
    color: rgba(255,255,255,0.88) !important;
    font-weight: 500;
    margin: 0 6px;
    padding: 6px 10px !important;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: white !important;
    background: rgba(255,255,255,0.10);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #60a5fa;
    transition: all 0.25s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 60%;
}

/* ========== HERO SLIDER ========== */
.hero-section {
    position: relative;
    margin-top: 71px;
    height: calc(100vh - 71px);
    overflow: hidden;
    color: white;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Ken Burns em cada slide */

    filter: saturate(1.25) brightness(1.05) contrast(1.06);
}

@keyframes kenBurns {
    0%   { transform: scale(1.00) translateX(0px); }
    50%  { transform: scale(1.06) translateX(-10px); }
    100% { transform: scale(1.04) translateX(8px); }
}

/* Overlay base — escuro topo/base, aberto no centro */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 10, 40, 0.38) 0%,
        rgba(5, 10, 40, 0.08) 25%,
        rgba(5, 10, 40, 0.08) 65%,
        rgba(5, 10, 40, 0.62) 100%
    );
    z-index: 1;
}

/* Overlay slide de domingo — contraste forte no centro */
.hero-slide-overlay--domingo {
    background:
        linear-gradient(
            to bottom,
            rgba(5, 10, 40, 0.72) 0%,
            rgba(5, 10, 55, 0.50) 25%,
            rgba(5, 10, 55, 0.42) 60%,
            rgba(5, 10, 40, 0.82) 100%
        );
}

/* Overlay slide de terça — azul consistente com domingo */
.hero-slide-overlay--terca {
    background:
        linear-gradient(
            to bottom,
            rgba(5, 10, 40, 0.70) 0%,
            rgba(5, 15, 60, 0.45) 25%,
            rgba(5, 15, 60, 0.40) 60%,
            rgba(5, 10, 40, 0.80) 100%
        );
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 40px 20px;
}

/* Background dos slides hero (sem inline style) */
.hero-slide--1 {
    background-image: url('images/imagem_igreja_hero.png');
}

.hero-slide--2 {
    background-image: url('images/imagem_igreja_hero_2.png');
    background-position: center 55%;
    filter: saturate(1.1) brightness(0.82) contrast(1.08);
}

.hero-slide--3 {
    background-image: url('images/imagem_igreja_hero_3.png');
    background-position: center 40%;
    filter: saturate(1.0) brightness(0.85) contrast(1.1);
}

/* Tag acima do título */
.hero-slide-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fde68a;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    animation: none;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 25px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.9);
    animation: fadeInUp 0.9s ease 0.15s both;
    letter-spacing: -1px;
    line-height: 1.15;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.7);
    animation: fadeInUp 0.9s ease 0.3s both;
    font-weight: 400;
    line-height: 1.6;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    color: white;
}

.hero-buttons {
    animation: fadeInUp 0.9s ease 0.45s both;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Horários dentro do slide */
.hero-schedule {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 0.9s ease 0.45s both;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.14);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 14px;
    padding: 14px 22px;
    min-width: 110px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(255,255,255,0.24);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.schedule-time {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fde68a;
    line-height: 1;
    margin-bottom: 4px;
}

.schedule-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Navegação do hero slider */
.hero-swiper-next,
.hero-swiper-prev {
    color: white !important;
    background: rgba(255,255,255,0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 48px !important;
    height: 48px !important;
    transition: background 0.3s ease;
}

.hero-swiper-next:hover,
.hero-swiper-prev:hover {
    background: rgba(255,255,255,0.3);
}

.hero-swiper-next::after,
.hero-swiper-prev::after {
    font-size: 1rem !important;
    font-weight: 700;
}

/* Paginação do hero slider */
.hero-swiper-pagination {
    bottom: 24px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ========== CARDS DE PROGRAMAÇÃO ========== */
.prog-card {
    border-radius: 24px;
    padding: 40px 35px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.prog-card--domingo {
    background: linear-gradient(145deg, #1e3a8a 0%, #3b82f6 100%);
}

.prog-card--terca {
    background: linear-gradient(145deg, #4c1d95 0%, #7c3aed 100%);
}

.prog-card__icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 2rem;
}

.prog-card__badge {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #fde68a;
}

.prog-card__title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.prog-card__desc {
    font-size: 1rem;
    opacity: 0.88;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 300px;
}

.prog-card__times {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.prog-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.15);
}

.prog-time__hour {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fde68a;
}

.prog-time__name {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.95;
}

.prog-card__btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.45);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.prog-card__btn:hover {
    background: white;
    color: var(--primary-blue);
    border-color: white;
    transform: translateY(-2px);
}

/* ========== BOTÕES MELHORADOS ========== */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline-light {
    border: 2px solid white;
    border-radius: 50px;
    padding: 14px 38px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-blue) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.4);
}

/* ========== TÍTULOS DE SEÇÃO MELHORADOS ========== */
.section-title {
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 3.5rem;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue), var(--spiritual-purple));
    margin: 20px auto;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* ========== CARDS GERAIS SUPER VISÍVEIS ========== */
.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue), var(--spiritual-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.25);
    border-color: rgba(59, 130, 246, 0.3);
}


/* ========== PASTOR ========== */
.pastor-img {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.25);
    transition: all 0.4s ease;
    width: 100%;
    max-width: 450px;
    height: 500px;
    object-fit: cover;
}

.pastor-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(30, 58, 138, 0.35);
}

.quote-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    padding: 35px;
    border-radius: 18px;
    color: white;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    position: relative;
}

.quote-card::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 120px;
    font-weight: 900;
    opacity: 0.18;
    line-height: 1;
}

.quote-text {
    font-size: 1.35rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0 0 15px 0;
}

.quote-author {
    text-align: right;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* ========== ENVOLVA-SE ========== */
.involve-card {
    background: white;
    border-radius: 25px;
    padding: 45px 35px;
    box-shadow: 0 15px 45px rgba(30, 58, 138, 0.12);
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid transparent;
    height: 100%;
}

.involve-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.2);
    border-color: var(--light-blue);
}

.involve-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: all 0.4s ease;
}

.involve-icon i {
    font-size: 2.5rem;
    color: white;
}

.involve-card:hover .involve-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 45px rgba(59, 130, 246, 0.45);
}

.involve-card h4 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.involve-card p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.involve-card ul li {
    text-align: left;
    padding: 10px 0;
    color: #475569;
    font-weight: 500;
}

/* ========== FORMULÁRIO DE ORAÇÃO ========== */
.prayer-form-card {
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
    border: none;
    overflow: hidden;
}

.prayer-form-card .card-body {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.form-label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.form-control.is-invalid {
    border-color: var(--error-red);
}

/* ========== PIX ========== */
.pix-card-compact {
    background: white;
    border-radius: 25px;
    padding: 35px 30px;
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.12);
    transition: all 0.3s ease;
}

.pix-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 55px rgba(30, 58, 138, 0.18);
}

.pix-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pix-header i {
    font-size: 2.5rem;
    color: var(--success-green);
}

.pix-header h4 {
    margin: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.pix-description {
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.pix-key-compact {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    align-items: center;
}

.pix-key-text {
    flex: 1;
    background: #f1f5f9;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
    border: 2px solid #e2e8f0;
}

.btn-copy-compact {
    background: var(--success-green);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.btn-copy-compact:hover {
    background: #059669;
    transform: scale(1.05);
}

.btn-copy-compact.copied {
    background: var(--light-blue);
}

.pix-details {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--success-green);
}

.pix-details p {
    margin-bottom: 8px;
    color: #475569;
}

/* ========== CONTRIBUA - LAYOUT PROFISSIONAL ========== */
.pix-header i {
    font-size: 2.2rem;
    color: #e11d48;
    flex-shrink: 0;
}

.pix-header h4 {
    margin: 0 0 2px;
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1.4rem;
}

/* Cabeçalho sem ícone */
.contribua-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.contribua-header h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

/* Seção PIX em destaque */
.contribua-pix-section {
    margin-bottom: 20px;
}

.contribua-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 10px;
}

/* Divisor "ou transferência bancária" */
.contribua-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contribua-divider::before,
.contribua-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* Título dos dados bancários */
.contribua-bank-title {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.9rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grid dos dados bancários — 2 colunas */
.contribua-bank-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contribua-bank-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contribua-bank-item--full {
    grid-column: 1 / -1;
}

.contribua-bank-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
}

.contribua-bank-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

/* ========== SOCIAL LINKS ========== */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
    color: white;
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue), var(--spiritual-purple));
}

footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

footer p, footer a {
    color: #cbd5e1;
}

footer a:hover {
    color: var(--light-blue);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    transition: all 0.3s ease;
}

.footer-links a:hover {
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--light-blue);
    transform: translateY(-5px);
}

.culto-times p {
    line-height: 1.8;
}

/* ========== MAPA ========== */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(30, 58, 138, 0.15);
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.25);
}

/* ========== SCROLL TO TOP ========== */
.btn-scroll-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    border: none;
    border-radius: 50%;
    padding: 18px;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
    z-index: 1000;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-scroll-top.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-scroll-top:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--spiritual-purple));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

/* ========== NOTIFICAÇÃO ========== */
.custom-notification {
    position: fixed;
    top: 100px;
    right: 35px;
    z-index: 9999;
    min-width: 350px;
    max-width: 500px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-radius: 15px;
    border: none;
    animation: slideInRight 0.5s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* ========== ANIMAÇÕES ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== LOADING ========== */
.form-loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading-text {
    display: none;
}

.form-loading .submit-text {
    display: none;
}

.form-loading .loading-text {
    display: inline-block;
}

/* ========== ACESSIBILIDADE ========== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.btn:focus, .form-control:focus, .nav-link:focus {
    outline: 3px solid var(--light-blue);
    outline-offset: 3px;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-section {
        min-height: 80vh;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 80px 20px 40px;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 8px 0;
    }
    
    
    .card-icon {
        width: 80px;
        height: 80px;
    }
    
    .card-icon i {
        font-size: 2.5rem;
    }
    
    .card-day {
        font-size: 1.5rem;
    }
    
    .pastor-img {
        margin-bottom: 30px;
        height: 350px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .involve-card {
        padding: 35px 25px;
        margin-bottom: 20px;
    }
    
    .pix-card-compact {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .pix-header h4 {
        font-size: 1.2rem;
    }
    
    .pix-key-compact {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .btn-copy-compact {
        width: 100%;
    }
    
    .custom-notification {
        right: 20px;
        left: 20px;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 60px 15px 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary, .btn-outline-light {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-scroll-top {
        bottom: 25px;
        right: 25px;
        padding: 15px;
        font-size: 1.1rem;
        width: 50px;
        height: 50px;
    }
    
    .map-container {
        height: 350px;
    }
    
    
    .event-item {
        padding: 12px;
    }
}

/* ========== PRINT ========== */
@media print {
    
    .hero-section {
        background: white !important;
        color: black !important;
        padding: 50px 0 !important;
    }
    
}
/* ========== DEVOCIONAIS ========== */
.devocional-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.devocional-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.18);
}

.devocional-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
    flex: 1;
}

.devocional-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.devocional-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.devocional-verse {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
}

.devocional-verse span {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-ler-mais {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 0 0 20px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-ler-mais:hover {
    background: linear-gradient(135deg, #172554, #1e3a8a);
}

/* ========== MODAL DEVOCIONAL ========== */
.devocional-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 10, 40, 0.75);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.devocional-modal.active {
    opacity: 1;
    pointer-events: all;
}

.devocional-modal__box {
    background: white;
    border-radius: 24px;
    max-width: 640px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: modalIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

/* Fallback scrollbar para Chrome/Safari */
.devocional-modal__box::-webkit-scrollbar {
    width: 6px;
}

.devocional-modal__box::-webkit-scrollbar-track {
    background: transparent;
}

.devocional-modal__box::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 10px;
}

.devocional-modal.active .devocional-modal__box {
    animation: modalIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes modalIn {
    from { transform: scale(0.88) translateY(20px); opacity: 0; }
    to   { transform: scale(1) translateY(0);      opacity: 1; }
}

.devocional-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #1e3a8a;
    transition: all 0.2s ease;
    z-index: 10;
}

.devocional-modal__close:hover {
    background: #1e3a8a;
    color: white;
    transform: scale(1.1);
}

.devocional-modal__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(30,58,138,0.3);
}

.devocional-modal__title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.3;
    padding: 0 40px;
}

.devocional-modal__verse {
    text-align: center;
    font-style: italic;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
    padding: 0 40px;
}

.devocional-modal__verse span {
    display: block;
    margin-top: 6px;
    font-weight: 600;
    font-style: normal;
    color: #1e3a8a;
    font-size: 0.9rem;
}

.devocional-modal__body {
    padding: 0 40px 40px;
}

.devocional-modal__icon {
    margin-top: 40px;
}

.devocional-modal__body p {
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 1rem;
}

.devocional-modal__reflection {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #1e3a8a;
    padding: 20px;
    border-radius: 12px;
    margin-top: 8px;
    color: #374151;
    line-height: 1.7;
}

.devocional-modal__reflection strong {
    color: #1e3a8a;
    display: block;
    margin-bottom: 6px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .devocional-card {
        margin-bottom: 30px;
    }
    .devocional-title {
        font-size: 1.2rem;
    }
    .devocional-modal__title {
        font-size: 1.25rem;
        padding: 0 20px;
    }
    .devocional-modal__verse,
    .devocional-modal__body {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ========== AJUSTES PARA SWIPER - PROGRAMAÇÃO ========== */

/* ========== CONFIGURAÇÕES DO SWIPER - PROGRAMAÇÃO ========== */





/* Todos os cards com altura uniforme - incluindo domingo */




/* Todos os cards com altura uniforme - incluindo domingo */

/* ========== MELHORIAS DE RESPONSIVIDADE ========== */
@media (max-width: 1200px) {
}

@media (max-width: 992px) {
    
    .card-day-v2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    
    .card-icon-v2 {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .card-day-v2 {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    
    .event-v2 {
        padding: 8px 12px;
    }
}

@media (max-width: 576px) {
    
    .card-top-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
}

/* ========== CORREÇÃO DAS SETAS DO SWIPER ========== */

/* Mostrar setas quando passar o mouse no container do swiper */





/* Container com espaço suficiente para as setas */

/* Permitir que setas fiquem visíveis */


/* Mobile - ocultar setas (swipe funciona) */
@media (max-width: 768px) {    
}
/* ========== BOTÃO VER MENSAGENS (seção devocionais) ========== */
.btn-ver-mensagens {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 24px rgba(59,130,246,0.3);
    transition: all 0.3s ease;
}

.btn-ver-mensagens:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(59,130,246,0.4);
}
/* ========== SEÇÃO SOBRE — imagem menor, mais destaque ao texto ========== */
#sobre .img-fluid {
    max-height: 380px;
    width: 100%;
    object-fit: cover;
    object-position: center 30%;
}