/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Variáveis CSS - Tema Escuro Moderno */
:root {
    /* Cores escuras */
    --dark-bg: #0a0e17;
    --dark-bg-secondary: #111827;
    --dark-bg-card: #1a2332;
    
    /* Azuis */
    --blue-dark: #0f172a;
    --blue-primary: #1e3a5f;
    --blue-light: #3b82f6;
    --blue-soft: #60a5fa;
    
    /* Lilás */
    --purple-primary: #7c3aed;
    --purple-light: #a78bfa;
    --purple-soft: #c4b5fd;
    
    /* Cores principais */
    --primary-color: var(--blue-light);
    --secondary-color: var(--purple-light);
    --accent-color: var(--purple-primary);
    
    /* Cores de texto */
    --text-light: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    
    /* Cores de fundo */
    --bg-dark: var(--dark-bg);
    --bg-card: var(--dark-bg-card);
    
    /* Sombras */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-purple: 0 10px 40px rgba(124, 58, 237, 0.2);
    
    /* Transições */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-large: 16px;
}

/* Reset Import */
@import 'reset.css';

/* ==================== BASE STYLES ==================== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HERO SECTION (Simplificado) ==================== */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
    color: var(--text-light);
    padding: 80px 20px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--purple-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ==================== PHOTO CAROUSEL ==================== */
.carousel-section {
    padding: 60px 0;
    background: var(--dark-bg-secondary);
}

.carousel-section .container {
    max-width: 1400px;
    padding: 0;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    flex: 0 0 33.333%;
    padding: 15px;
    opacity: 1;
    transition: var(--transition-smooth);
}

.carousel-slide.edge {
    opacity: 0.4;
    filter: blur(0.5px);
}

.carousel-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    border: 3px solid transparent;
}

.carousel-slide:hover .carousel-image {
    transform: scale(1.02);
    border-color: var(--purple-primary);
}

.carousel-slide.edge:hover .carousel-image {
    transform: scale(1);
    opacity: 0.4;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--purple-primary);
    opacity: 0.4;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    padding: 0;
}

.carousel-dot.active {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--purple-light);
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-bg-card);
    border: 2px solid var(--purple-primary);
    color: var(--purple-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
    background: var(--purple-primary);
    color: var(--text-light);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-purple);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-btn-prev {
    left: 15px;
}

.carousel-btn-next {
    right: 15px;
}

/* ==================== CELULA SECTION ==================== */
.celula-section {
    padding: 80px 0;
    background: var(--dark-bg-secondary);
}

.celula-section .container {
    max-width: 1200px;
}

.celula-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.celula-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.celula-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-purple);
}

.celula-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.celula-image-wrapper:hover .celula-image {
    transform: scale(1.05);
}

.celula-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.celula-image-wrapper:hover .celula-overlay {
    opacity: 1;
}

.celula-overlay-text {
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.celula-overlay-text svg {
    width: 20px;
    height: 20px;
}

.celula-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.celula-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.celula-detail svg {
    width: 28px;
    height: 28px;
    color: var(--purple-light);
    flex-shrink: 0;
    margin-top: 4px;
}

.celula-detail h4 {
    font-size: 1rem;
    color: var(--purple-light);
    margin-bottom: 6px;
    font-weight: 600;
}

.celula-detail p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ==================== CULTOS SECTION ==================== */
.cultos-section {
    padding: 80px 0;
    background: var(--dark-bg-secondary);
}

.cultos-section .container {
    max-width: 1400px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 10px;
}

.cultos-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.culto-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    border-radius: var(--border-radius-large);
    padding: 30px 35px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(59, 130, 246, 0.2);
    min-width: 180px;
    flex: 0 0 auto;
}

.culto-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-purple);
    border-color: var(--purple-light);
    background: linear-gradient(135deg, #2d4a6f 0%, #3d5a7f 100%);
}

.culto-card h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.culto-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(124, 58, 237, 0.3);
    color: var(--purple-soft);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 10px;
}

.culto-time svg {
    width: 14px;
    height: 14px;
}

/* ==================== MAP SECTION ==================== */
.map-section {
    padding: 0 0 60px;
    background: var(--dark-bg-secondary);
}

.map-section .container {
    max-width: 1400px;
}

.cultos-map-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.cultos-map {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ==================== LINKS / FOOTER ==================== */
.links-section {
    padding: 50px 0 30px;
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.links-section .container {
    max-width: 1000px;
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--dark-bg-card);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: var(--text-light);
}

.link-card:hover {
    background: var(--blue-primary);
    border-color: var(--purple-light);
    transform: translateY(-3px);
}

.link-card svg {
    width: 20px;
    height: 20px;
    color: var(--purple-light);
}

.link-card span {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 50%;
    }
    
    .cultos-grid {
        gap: 15px;
    }
    
    .culto-card {
        padding: 25px 30px;
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: 60px 20px;
    }
    
    .carousel-section {
        padding: 40px 0;
    }
    
    .carousel-slide {
        flex: 0 0 50%;
    }
    
    .carousel-image {
        height: 220px;
    }
    
    .celula-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .celula-image {
        height: 300px;
    }
    
    .celula-info {
        order: -1;
    }
    
    .cultos-section {
        padding: 60px 0;
    }
    
    .cultos-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 20px;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
    }
    
    .culto-card {
        min-width: 150px;
        flex: 0 0 auto;
    }
    
    .cultos-map {
        height: 300px;
    }
    
    .links-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .link-card {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    .carousel-image {
        height: 200px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cultos-map {
        height: 250px;
    }
}

