/* ================================================================
   KERIGMA SITE - main.css
   Faithful replica of CBN Kerigma official website design
   Brand: #F5A400 gold, #111 dark, white/light nav
================================================================ */

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, sans-serif;
    background: #F8F9FA;
    color: #1F2937;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ================================================================
   HEADER
================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    /* Premium Glassmorphism */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-page .site-header:not(.scrolled) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Offset for Member Quick Bar */
.has-member-bar .site-header {
    top: 48px;
    /* Height of the sticky member bar */
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.7); /* More translucent for crystal effect */
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 
        0 15px 50px -20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset; /* Crystal Edge Glow */
    border-bottom: 2px solid rgba(245, 164, 0, 0.15); /* Stronger amber anchor */
    padding: 0; 
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .header-inner {
    height: 70px; /* Shrunk from 120px */
}

.site-header.scrolled .site-logo img {
    height: 80px !important; /* Proportional logo shrink */
    top: 50%;
}

/* Logo Switcher Logic */
.site-header .logo-dark,
.site-header .logo-light {
    transition: all 0.4s ease;
}

.site-header .logo-dark {
    display: none;
}

.site-header .logo-light {
    display: block;
}

/* Light Background State (Scrolled OR Context Light) */
.site-header.scrolled .logo-light,
.site-header.context-light .logo-light {
    display: none !important;
}

.site-header.scrolled .logo-dark,
.site-header.context-light .logo-dark {
    display: block !important;
}

/* Dark Background State (Context Dark - At the top of home page) */
.site-header.context-dark:not(.scrolled) .logo-light {
    display: block !important;
}

.site-header.context-dark:not(.scrolled) .logo-dark {
    display: none !important;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    /* Adjusted for icon-only logo */
    gap: 1.5rem;
    position: relative;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    width: 280px;
    /* Space for the larger logo */
    height: 110px;
    /* Match header height */
    position: relative;
    z-index: 10;
}

.site-logo img {
    height: 150px;
    /* Prominent and balanced logo */
    width: auto;
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    pointer-events: none;
}

.logo-icon svg {
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #111;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.logo-dot {
    color: #F5A400;
}

.logo-sub {
    font-size: 0.55rem;
    font-weight: 700;
    color: #6B7280;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 0.5rem;
    color: #9CA3AF;
}

/* Context Aware Logos */
.context-light .logo-light {
    display: none !important;
}

.context-dark {
    background-color: #0B0F19 !important;
    background-image: none !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

.context-dark .logo-dark {
    display: none !important;
}

.context-dark .logo-light {
    display: block !important;
}

.context-dark h1,
.context-dark h2,
.context-dark h3,
.context-dark h4,
.context-dark .text-\[var\(--color-text-primary\)\] {
    color: #ffffff !important;
}

.context-dark p,
.context-dark .text-\[var\(--color-text-secondary\)\] {
    color: rgba(255, 255, 255, 0.7) !important;
}

.context-dark .nav-item>a,
.context-dark .nav-item>.nav-text {
    color: #fff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.context-dark .nav-item>a:hover,
.context-dark .nav-item>.nav-text:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

.context-dark .mobile-menu-btn {
    color: #fff !important;
}

@media (max-width: 768px) {
    .site-logo img {
        height: 75px;
    }
}

/* Nav */
.main-nav {
    flex: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.nav-item>a,
.nav-item>.nav-text {
    padding: 0.5rem 0.85rem;
    border-radius: 12px;
    font-size: 0.82rem;
    /* Slightly smaller for elegance */
    font-weight: 600;
    /* Less chunky than 700 */
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    cursor: pointer;
}

.nav-item>a:hover,
.nav-item>.nav-text:hover,
.nav-item.active>a,
.nav-item.active>.nav-text {
    color: #111;
    background: rgba(245, 164, 0, 0.1);
    box-shadow: inset 0 0 0 1px rgba(245, 164, 0, 0.2);
}

.nav-icon {
    font-style: normal;
    font-size: 0.9rem;
}

.chevron {
    font-size: 0.6rem;
}

/* Dropdown */
.nav-item.has-dropdown {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 0.5rem;
    z-index: 100;
    animation: dropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Invisible bridge to prevent hover loss */
.dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
}

.nav-item.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.dropdown li a:hover {
    color: #F5A400;
    background: #FFF4DD;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-members {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #111;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-members:hover {
    background: #F5A400;
    color: #111;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #374151;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item>a,
    .nav-item>.nav-text {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 0;
        border-bottom: 1px solid #f3f4f6;
    }

    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: #f9fafb;
        padding: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
    }

    .dropdown-rich {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: #f9fafb;
        padding: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
    }

    .nav-item.has-dropdown:hover .dropdown,
    .nav-item.has-dropdown:hover .dropdown-rich {
        display: block;
    }

    .dropdown li a {
        padding: 0.8rem 2.5rem;
        border-bottom: 1px solid #f3f4f6;
    }

    .dropdown-rich-item {
        padding: 1rem 2.5rem;
        border-bottom: 1px solid #f3f4f6;
        border-radius: 0;
    }
}

/* ================================================================
   HERO SLIDER
================================================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 72px;
    overflow: hidden;
}

.has-member-bar .hero-slider {
    /* Already pushed by header offset */
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    text-align: center;
    color: #fff;
    max-width: 760px;
    padding: 2rem;
    animation: none;
}

.slide.active .slide-content {
    animation: slideUp 0.8s ease forwards;
}

.slide-badge {
    display: inline-block;
    padding: 0.4rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
}

.slide-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.slide-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-btn.prev {
    left: 1.5rem;
}

.slider-btn.next {
    right: 1.5rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 50;
}

.dot {
    width: 28px;
    height: 6px;
    border-radius: 3px;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #F5A400;
    width: 40px;
}

/* ================================================================
   BUTTON STYLES
================================================================ */
.btn-gold {
    padding: 0.95rem 2.5rem;
    background: linear-gradient(135deg, #F5A400 0%, #D97706 100%);
    color: #111;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.95rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 20px -6px rgba(245, 164, 0, 0.4), 0 0 0 1px rgba(245, 164, 0, 0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px -5px rgba(245, 164, 0, 0.4);
}

.btn-gold:hover::after {
    left: 150%;
}

.btn-dark-outline {
    padding: 0.9rem 2.2rem;
    background: rgba(15, 23, 42, 0.6);
    color: #fff;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-dark-outline:hover {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.btn-gold-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: #F5A400;
    color: #111;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.85rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-gold-sm:hover {
    background: #E59400;
}

/* ================================================================
   QUICK ACCESS BAR
================================================================ */
.quick-access-bar {
    background: #fff;
    border-bottom: 1px solid #E5E7EB;
    padding: 1.25rem 0;
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.qa-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 2rem;
    border-right: 1px solid #E5E7EB;
}

.qa-item:last-child {
    border-right: none;
}

.qa-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.qa-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: #FFFFFF;
}

.qa-item span {
    font-size: 0.8rem;
    color: #FBBF24;
    /* Improved amber contrast */
    font-weight: 600;
}

/* ================================================================
   PASTORAL MESSAGE
================================================================ */
.pastoral-msg {
    padding: 4rem 0;
    background: #F8F9FA;
}

.pastoral-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.pastoral-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
}

.pastor-photo {
    position: relative;
    background: #E5E7EB;
}

.pastor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}

.pastor-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    padding: 1rem;
    font-weight: 700;
    font-size: 0.85rem;
}

.pastor-name-overlay span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.pastoral-content {
    padding: 3.5rem;
}

.pastoral-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.meta-tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: #F5A400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #FFF4DD;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.meta-date {
    font-size: 0.8rem;
    color: #9CA3AF;
}

.pastoral-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.pastoral-content p {
    color: #374151;
    /* Darker slate for better contrast on white bg */
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.pastoral-link {
    color: #F5A400;
    font-weight: 700;
    font-size: 0.9rem;
}

.pastoral-link:hover {
    text-decoration: underline;
}

.pastoral-footer {
    margin-top: 1.5rem;
}

/* ================================================================
   QUICK ACCESS GRID
================================================================ */
.access-grid-section {
    padding: 3rem 0 4rem;
    background: #F8F9FA;
}

.section-label {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-desc {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.access-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 1.5rem;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.access-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.access-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.access-card:hover::after {
    opacity: 1;
}

.ac-icon,
.ac-label {
    position: relative;
    z-index: 2;
}

.ac-icon {
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 0.6rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.access-card:hover .ac-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(245, 164, 0, 0.9);
}

.ac-label {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ================================================================
   APP CTA
================================================================ */
.app-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.app-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(245, 164, 0, 0.15);
    color: #F5A400;
    border: 1px solid rgba(245, 164, 0, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.app-cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.app-cta-content>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.app-features li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.app-install-btn {
    font-size: 1rem;
}

.app-compat {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Phone Mockup */
.app-cta-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-mockup {
    width: 220px;
    background: #1E293B;
    border-radius: 2.5rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    transform: rotateY(-15deg) rotateX(5deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0px);
    }

    50% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(-15px);
    }

    100% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0px);
    }
}

.phone-screen {
    background: #F8F9FA;
    border-radius: 1.8rem;
    overflow: hidden;
    height: 420px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.phone-header-bar {
    background: #111;
    color: #F5A400;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
}

.phone-content-preview {
    padding: 0.75rem;
}

.phone-card-preview {
    border-radius: 1rem;
    padding: 1rem;
    color: #111;
}

.phone-card-preview strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.phone-card-preview small {
    font-size: 0.6rem;
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.phone-card-preview button {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.35rem 0.8rem;
    font-size: 0.6rem;
    font-weight: 700;
    cursor: pointer;
}

.gold-blob {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: -20px;
    right: -40px;
    background: radial-gradient(circle, rgba(245, 164, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulseBlob 8s ease-in-out infinite alternate;
}

@keyframes pulseBlob {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1) translate(-20px, -20px);
        opacity: 0.8;
    }
}

/* ================================================================
   EVENTS SECTION
================================================================ */
.events-home {
    padding: 4rem 0;
    background: #F8F9FA;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.events-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.events-header p {
    font-size: 0.85rem;
    color: #6B7280;
}

.events-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #F5A400;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.events-all-link:hover {
    text-decoration: underline;
}

.events-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
}

.events-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #D1D5DB;
}

.events-empty p {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.events-empty span {
    font-size: 0.875rem;
    color: #9CA3AF;
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
    background: #0B0F19;
    /* Deep dark premium background */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}



.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-name {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-brand-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    font-size: 1.2rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social a:hover {
    transform: translateY(-3px);
    background: #F5A400;
    color: #111;
}

.footer-powered small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-links-col h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #F5A400;
}

.footer-links-col ul li {
    margin-bottom: 0.85rem;
}

.footer-links-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-links-col a:hover {
    color: #F5A400;
}

.footer-map-col h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-map-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #F5A400;
}

.footer-map iframe {
    width: 100%;
    height: 160px;
    border: none;
    border-radius: 1rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-map iframe:hover {
    opacity: 1;
}

.footer-map-col address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #F5A400;
}

/* ================================================================
   ANIMATIONS
================================================================ */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-map-col {
        grid-column: span 2;
    }

    .app-cta-inner {
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .main-nav,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-btn {
        padding: 0.7rem 1.5rem;
    }

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

    .qa-item {
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
    }

    .qa-item:last-child {
        border-bottom: none;
    }

    .pastoral-card {
        grid-template-columns: 1fr;
    }

    .pastor-photo img {
        min-height: 200px;
    }

    .access-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-cta-inner {
        grid-template-columns: 1fr;
    }

    .app-cta-mockup {
        display: none;
    }

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

    .footer-map-col {
        grid-column: 1;
    }

    .events-header {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Logo & Button Responsive Adjustments */
.mobile-logo {
    display: none !important;
}

@media (max-width: 768px) {
    .header-inner {
        height: auto !important;
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        padding-left: 0.4rem !important;
        padding-right: 1.4rem !important;
        gap: 0.5rem !important;
    }

    .desktop-logo {
        display: none !important;
    }

    .mobile-logo {
        display: flex !important;
        align-items: center;
    }

    .site-logo img.mobile-logo {
        height: 100px !important;
        width: auto !important;
        margin-left: -10px !important;
    }

    .btn-members {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.8rem !important;
        gap: 0.25rem !important;
    }

    .btn-members .hide-mobile {
        display: none !important;
    }

    .btn-members svg {
        width: 14px !important;
        height: 14px !important;
    }
}

/* ================================================================
   UTILITIES
================================================================ */

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.badge-dark {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-light {
    background: #FFF4DD;
    color: #F5A400;
}

.badge-amber {
    background: rgba(245, 164, 0, 0.15);
    color: #F5A400;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(245, 164, 0, 0.2);
}

.badge-indigo {
    background: rgba(99, 102, 241, 0.15);
    color: #A5B4FC;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* ================================================================
   SOBRE PAGE - QUEM SOMOS
================================================================ */

/* --- Hero --- */
.sobre-hero {
    position: relative;
    padding-top: 120px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    background: url('../img/hero-placeholder.jpg') center/cover no-repeat fixed;
}

.sobre-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 100%);
    backdrop-filter: blur(4px);
}

.sobre-hero .container {
    color: #fff;
    position: relative;
    z-index: 10;
}

.sobre-hero-title {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 1rem 0;
}

.sobre-hero-subtitle {
    font-size: 1.2rem;
    color: #E5E7EB;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.sobre-hero-link {
    color: #F5A400;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.sobre-hero-link:hover {
    color: #E09600;
}

/* --- Identity (Bússola) --- */
.sobre-identity {
    padding: 6rem 0;
    background: #fff;
}

.container-identity {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.identity-text {
    position: sticky;
    top: 120px;
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.identity-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.identity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F5A400, #E59400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.identity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: rgba(245, 164, 0, 0.2);
}

.identity-card:hover::before {
    transform: scaleX(1);
}

.identity-icon {
    width: 56px;
    height: 56px;
    background: rgba(245, 164, 0, 0.1);
    color: #F5A400;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(245, 164, 0, 0.2);
}

.identity-card:hover .identity-icon {
    transform: scale(1.1) rotate(5deg);
    background: #F5A400;
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(245, 164, 0, 0.4);
}

.identity-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111;
}

.identity-card p {
    color: #4B5563;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- History Timeline --- */
.sobre-history {
    padding: 6rem 0;
    background: #F8F9FA;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E5E7EB;
}

.timeline-item {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border-color: rgba(245, 164, 0, 0.2);
}

.timeline-item:hover .timeline-icon {
    background: #F5A400;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(245, 164, 0, 0.4);
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #F5A400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5A400;
    font-size: 1.25rem;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-date {
    font-size: 0.75rem;
    font-weight: 800;
    color: #F5A400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #111;
}

.timeline-content p {
    color: #4B5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Leadership (Pastors Grid) --- */
.sobre-leadership {
    padding: 6rem 0;
    background: #fff;
}

.pastors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
    justify-content: center;
}

/* Center the first element in a 3-column layout manually or visually, but standard grid wraps naturally. Let's make it look balanced */
.pastor-card {
    text-align: center;
}

.pastor-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 4/5;
    background: #E5E7EB;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pastor-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pastor-card:hover .pastor-image-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -15px rgba(0, 0, 0, 0.15);
}

.pastor-card:hover .pastor-image {
    transform: scale(1.08);
}

.pastor-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.25rem;
}

.pastor-role {
    font-size: 0.8rem;
    font-weight: 700;
    color: #F5A400;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pastor-desc {
    font-size: 0.85rem;
    color: #6B7280;
    line-height: 1.5;
}

/* --- Premium Gold & Navy Utilities (v3.3) --- */
.bg-gold-gradient {
    background: linear-gradient(135deg, #BD924D 0%, #F5A400 50%, #E7C293 100%);
    box-shadow: 0 10px 30px -10px rgba(189, 146, 77, 0.4);
}

.bg-gold-gradient-hover:hover {
    background: linear-gradient(135deg, #E7C293 0%, #F5A400 50%, #BD924D 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -12px rgba(189, 146, 77, 0.6);
}

.text-gold {
    color: #E7C293;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.bg-navy-pattern {
    background-color: #0A192F;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4v-4H4v4H0v2h4v4h2v-4h4v-2H6zm30 0v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.card-premium-glow {
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-premium-glow:hover {
    box-shadow: 0 35px 80px -20px rgba(189, 146, 77, 0.15);
    transform: translateY(-5px);
}

/* --- Gallery (Bento) --- */
.sobre-gallery {
    padding: 6rem 0;
    background: #F8F9FA;
}

.gallery-header {
    margin-bottom: 3rem;
    align-items: flex-end;
}

.gallery-link {
    color: #F5A400;
    font-weight: 700;
    font-size: 0.95rem;
}

.gallery-link:hover {
    text-decoration: underline;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.25rem;
}

.bento-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-bg {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover .bento-bg {
    transform: scale(1.08);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.bento-overlay h4 {
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

/* --- Beliefs --- */
.sobre-beliefs {
    padding: 6rem 0;
    background: #fff;
    border-top: 1px solid #E5E7EB;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.belief-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.belief-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border-color: rgba(245, 164, 0, 0.2);
}

.belief-card:hover .belief-icon {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
    color: #F5A400;
}

.belief-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.belief-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #111;
    max-width: 80%;
}

.belief-icon {
    font-size: 1.5rem;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.belief-card p {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.belief-ref {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #FFF4DD;
    color: #F5A400;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    align-self: flex-start;
}

/* --- Responsive Sobre --- */
@media (max-width: 1024px) {
    .container-identity {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .identity-text {
        position: relative;
        top: 0;
    }

    .pastors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .beliefs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .identity-grid {
        grid-template-columns: 1fr;
    }

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

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

    .sobre-hero-title {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 4rem;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        left: 0;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .bento-large,
    .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ================================================================
   RICH DROPDOWN (Sobre Menu)
================================================================ */

.dropdown-rich {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    padding: 0.5rem;
    z-index: 100;
}

.dropdown-rich::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 8px;
}

.nav-item.has-dropdown:hover .dropdown-rich {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-rich-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.dropdown-rich-item:hover {
    background: #F9FAFB;
}

.dropdown-rich-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #F3F4F6;
    border-radius: 8px;
    color: #6B7280;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.dropdown-rich-icon svg {
    width: 20px;
    height: 20px;
}

.dropdown-rich-item:hover .dropdown-rich-icon {
    background: #FFF4DD;
    color: #F5A400;
}

.dropdown-rich-text h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.2rem;
}

.dropdown-rich-text p {
    font-size: 0.75rem;
    color: #6B7280;
    line-height: 1.4;
}

/* ================================================================
   LOCALIZAÇÃO PAGE - FALE CONOSCO
================================================================ */

/* --- Hero --- */
.contact-hero {
    position: relative;
    padding: 160px 0 100px;
    background: url('../img/hero-placeholder.jpg') center/cover no-repeat fixed;
    /* Fallback if hands image missing */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.8));
}

.contact-hero .container {
    color: #fff;
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 1rem 0;
}

.contact-hero-subtitle {
    font-size: 1.15rem;
    color: #D1D5DB;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.contact-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-radius: 100px;
    padding: 0.9rem 2rem;
    font-weight: 800;
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* --- Contact Section --- */
.contact-section {
    padding: 6rem 0;
    background: #F8F9FA;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: start;
}

/* Form Container */
.contact-form-container {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 1.25rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.contact-form-container h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
}

.contact-form-container>p {
    color: #4B5563;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-label span.req {
    color: #EF4444;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #111;
    background: #F9FAFB;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #F5A400;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(245, 164, 0, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

/* Info Sidebar */
.contact-info-sidebar {
    position: sticky;
    top: 120px;
}

.info-block {
    background: #F3F4F6;
    border-radius: 1.25rem;
    padding: 2.5rem;
}

.info-block h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #FFF4DD;
    color: #F5A400;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.25rem;
}

.info-content p {
    font-size: 0.85rem;
    color: #6B7280;
    line-height: 1.5;
}

.socials-section {
    margin-top: 2.5rem;
}

.socials-section h4 {
    font-size: 0.75rem;
    font-weight: 800;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.social-links-row {
    display: flex;
    gap: 0.5rem;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    color: #4B5563;
    transition: all 0.2s ease;
    background: #fff;
}

.social-icon-btn:hover {
    border-color: #111;
    color: #111;
}

.social-icon-btn.whatsapp {
    color: #fff;
    background: #25D366;
    border-color: #25D366;
}

.social-icon-btn.whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.map-block {
    margin-top: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    height: 250px;
}

.map-block iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group.half-row {
        margin-bottom: 1.5rem;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}

/* ================================================================
   CONTRIBUA PAGE & DONATION CARDS
================================================================ */

/* --- Contribua Hero --- */
.contribua-hero {
    position: relative;
    padding-top: 120px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    background: #111;
    overflow: hidden;
}

.contribua-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.7) 100%);
}

.contribua-hero .container {
    color: #fff;
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.contribua-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.contribua-hero-title {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contribua-hero-title span {
    color: #F5A400;
    display: block;
}

.contribua-hero-subtitle {
    font-size: 1.15rem;
    color: #E5E7EB;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Donation Cards Section --- */
.donation-cards-section {
    position: relative;
    z-index: 20;
    margin-top: 60px;
    padding-bottom: 5rem;
    background: transparent;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.don-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.don-card-header {
    padding: 2.5rem 2rem;
    text-align: center;
    color: #fff;
}

.don-card-header.pix-bg {
    background: #4DBEAA;
    /* A lively teal/green for PIX */
}

.don-card-header.transfer-bg {
    background: #111827;
    /* Dark elegant for Transfer */
}

.don-card-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.don-card-header p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.don-card-body {
    padding: 2.5rem 2rem;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* PIX Specifics */
.qr-wrapper {
    background: #fff;
    padding: 1rem;
    border-radius: 16px;
    border: 1px dashed #E5E7EB;
    display: inline-block;
    margin-bottom: 2rem;
}

.qr-wrapper img {
    width: 180px;
    height: 180px;
    display: block;
}

.pix-key-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #4B5563;
    margin-bottom: 0.5rem;
    align-self: flex-start;
    width: 100%;
}

.pix-key-box {
    width: 100%;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
    text-align: center;
    margin-bottom: 1.5rem;
}

.btn-pix {
    background: #4DBEAA;
    color: #fff;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-pix:hover {
    background: #3EA694;
}

/* Transfer Specifics */
.transfer-details-list {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.transfer-details-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #F3F4F6;
}

.transfer-details-list li:last-child {
    border-bottom: none;
}

.td-label {
    color: #6B7280;
    font-size: 0.95rem;
}

.td-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #111;
    text-align: right;
}

.note-box {
    background: #FFFBEB;
    border: 1px solid #FEF3C7;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #92400E;
    text-align: center;
    line-height: 1.5;
    margin-top: auto;
}

.note-box strong {
    font-weight: 700;
}

/* --- Why Contribute --- */
.why-give-section {
    padding: 6rem 0 8rem;
    background: #fff;
    text-align: center;
}

.why-give-container {
    max-width: 700px;
    margin: 0 auto;
}

.why-give-icon {
    color: #F5A400;
    margin-bottom: 1.5rem;
}

.why-give-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1.5rem;
}

.why-give-section p {
    color: #4B5563;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* --- Floating Button (Pedido de Oração) --- */
.floating-prayer-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #F5A400;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(245, 164, 0, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-prayer-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 164, 0, 0.5);
    color: #fff;
}

/* Responsive Contribua */
@media (max-width: 992px) {
    .donation-grid {
        margin: 0 1.5rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contribua-hero {
        padding: 140px 1.5rem 120px;
    }

    .contribua-hero-title {
        font-size: 2.75rem;
    }

    .contribua-hero-subtitle {
        font-size: 1.05rem;
    }

    .donation-cards-section {
        margin-top: 20px;
        padding-bottom: 3rem;
    }

    .donation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 0 1.5rem;
    }

    .floating-prayer-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* ================================================================
   CÉLULAS PAGE
================================================================ */

/* --- Celulas Hero --- */
.celulas-hero {
    position: relative;
    padding-top: 120px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    background: #0B0F19;
    overflow: hidden;
}

.celulas-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.85));
}

.celulas-hero .container {
    color: #fff;
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
}

.celulas-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 1rem 0;
    line-height: 1.1;
}

.celulas-hero-subtitle {
    font-size: 1.15rem;
    color: #D1D5DB;
    margin: 1.5rem auto 2.5rem;
    line-height: 1.6;
}

.celulas-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Info & Reasons --- */
.celulas-info-section {
    padding: 5rem 0;
    background: #fff;
}

.info-highlight-box {
    background: #FFF8F0;
    border-radius: 1.5rem;
    padding: 3.5rem;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 5rem;
}

.info-highlight-icon {
    width: 80px;
    height: 80px;
    background: #FFEDD5;
    color: #F5A400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-highlight-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1rem;
}

.info-highlight-content p {
    color: #4B5563;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.reasons-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reasons-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
}

.reasons-header p {
    color: #4B5563;
    font-size: 1.05rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reason-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.reason-img {
    height: 200px;
    background: #E5E7EB;
    width: 100%;
    object-fit: cover;
}

.reason-content {
    padding: 2rem;
}

.reason-icon {
    width: 32px;
    height: 32px;
    background: #FFF4DD;
    color: #F5A400;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.reason-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.75rem;
}

.reason-content p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Map & List Split Layout --- */
.celulas-map-section {
    padding: 4rem 0;
    background: #F9FAFB;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.map-title h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
}

.map-title p {
    color: #4B5563;
}

.map-toggles {
    display: flex;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
    border: 1px solid #E5E7EB;
}

.toggle-btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #6B7280;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toggle-btn.active {
    background: #F5A400;
    color: #fff;
}

.map-layout-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    height: 600px;
}

.map-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.map-search-box {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.search-input-wrapper svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
}

.search-input-wrapper input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

.filter-row {
    display: flex;
    gap: 0.5rem;
}

.filter-select {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 0.85rem;
    background: #F9FAFB;
    color: #4B5563;
}

.cell-results-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 0.5rem;
}

/* Custom Scrollbar for list */
.cell-results-list::-webkit-scrollbar {
    width: 6px;
}

.cell-results-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.cell-results-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.cell-list-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cell-list-card:hover {
    border-color: #F5A400;
}

.cell-list-card h4 {
    font-weight: 700;
    color: #111;
    margin-bottom: 0.25rem;
}

.cell-list-card p {
    font-size: 0.85rem;
    color: #6B7280;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.cell-badge-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.c-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: #F3F4F6;
    color: #4B5563;
}

.map-view-container {
    background: #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.map-view-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Join Section --- */
.join-cell-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.join-cell-card {
    background: #fff;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 1.5rem;
    padding: 3.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.join-cell-icon {
    width: 48px;
    height: 48px;
    background: #FFF4DD;
    color: #F5A400;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.join-cell-card h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
}

.join-cell-card p {
    color: #6B7280;
    margin-bottom: 2.5rem;
}

.join-cell-card .form-group {
    text-align: left;
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 6rem 0;
    background: #fff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #111;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    padding: 2rem;
    position: relative;
}

.quote-icon {
    font-family: serif;
    font-size: 4rem;
    color: #FFF4DD;
    position: absolute;
    top: 0rem;
    left: 1.5rem;
    z-index: 0;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E5E7EB;
    object-fit: cover;
}

.author-info h5 {
    font-weight: 700;
    color: #111;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.author-info span {
    font-size: 0.8rem;
    color: #6B7280;
}

/* Responsive Celulas */
@media (max-width: 1024px) {
    .info-highlight-box {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-layout-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .map-view-container {
        height: 400px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .celulas-hero-title {
        font-size: 2.5rem;
    }

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

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

    .join-cell-card {
        padding: 2.5rem 1.5rem;
    }
}

/* ================================================================
   PREMIUM EXCELLENT UTILITIES
================================================================ */
.premium-grid {
    position: relative;
    overflow: hidden;
}

.premium-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle, #000 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.context-dark .premium-grid::before {
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
}

.glass-card-dark {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
}

.text-premium-gold {
    background: linear-gradient(135deg, #F5A400 0%, #FBBF24 50%, #D97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-premium-dark {
    background-color: #0B0F19;
}

.fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
}

/* ================================================================
   ULTRA-PREMIUM MINISTRY CARDS (Sovereign 2026)
   ================================================================ */
.card-ministry-premium {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    background: #0B0F19;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-ministry-premium:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(245, 164, 0, 0.15);
}

.card-ministry-premium .card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: saturate(0.8) brightness(0.8);
}

.card-ministry-premium:hover .card-bg {
    transform: scale(1.1);
    filter: saturate(1.1) brightness(1);
}

.card-ministry-premium .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0B0F19 0%, rgba(11, 15, 25, 0.4) 40%, transparent 100%);
    opacity: 0.9;
    transition: all 0.5s ease;
}

.card-ministry-premium:hover .card-overlay {
    opacity: 0.7;
}

.card-ministry-premium .card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    z-index: 10;
}

.card-ministry-premium .card-glass-footer {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(245, 164, 0, 0.4);
    border-radius: 1.5rem;
    padding: 1.75rem;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -15px 40px rgba(0,0,0,0.5);
}

.card-ministry-premium:hover .card-glass-footer {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(245, 164, 0, 0.3);
}

.card-ministry-premium h4 {
    color: #FFFFFF !important;
    font-size: 1.85rem !important;
    font-weight: 900 !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: -0.02em !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.card-ministry-premium p {
    color: #FFFFFF !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out !important;
}

.card-ministry-premium:hover p {
    max-height: 100px;
    opacity: 1;
    margin-bottom: 1.25rem;
}

.card-ministry-premium .card-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #F5A400 !important;
    font-size: 0.75rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease 0.1s;
}

.card-ministry-premium:hover .card-btn {
    opacity: 1;
    transform: translateX(0);
}