/* 
 * Design System e Estilos Premium Refinados - Igreja Batista Reformada de Buritizal
 * Paleta: Azul Marinho (#001848), Azul Profundo (#001130), Dourado (#C8A45D), Branco (#FFFFFF), Cinza de Fundo (#F8FAFC)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
    --primary: #001848;
    --primary-dark: #000b20; /* Tom de azul profundo e solene */
    --secondary: #6F8098; /* Cinza azulado elegante */
    --accent: #C8A45D; /* Dourado discreto */
    --accent-light: #F7F3EB;
    --bg-light: #F5F7FA; /* Cinza claro */
    --bg-white: #FFFFFF;
    --text-dark: #001848; /* Tom azul escuro para títulos e textos principais */
    --text-body: #334155; /* Slate 700 - Alta legibilidade e suavidade */
    --text-muted: #5E6E85; /* Slate-blue para textos secundários */
    --border: rgba(111, 128, 152, 0.15); /* Bordas discretas em tom azulado */
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Sombras cromáticas refinadas (azuladas) */
    --shadow-sm: 0 4px 20px rgba(0, 24, 72, 0.02), 0 1px 3px rgba(0, 24, 72, 0.01);
    --shadow-md: 0 12px 30px rgba(0, 24, 72, 0.04), 0 2px 8px rgba(0, 24, 72, 0.01);
    --shadow-lg: 0 24px 60px rgba(0, 24, 72, 0.07), 0 4px 16px rgba(0, 24, 72, 0.02);
    --border-radius: 8px; /* Cantos mais tradicionais, sérios e elegantes */
}

/* Reset e Estrutura Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.85;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Espaçamento e Respiro (Air) */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 130px 0; /* Aumentado o espaçamento para mais respiro e nobreza */
    position: relative;
}

/* Divisores Elegantes entre seções */
.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 164, 93, 0.2), transparent);
    pointer-events: none;
}

.section.no-divider::after, .bg-dark::after {
    display: none;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary);
    color: var(--bg-white);
}

.bg-dark h2, .bg-dark h3 {
    color: var(--bg-white);
}

.bg-dark p {
    color: rgba(255, 255, 255, 0.8);
}

/* Tipografia e Hierarquia Fina */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 1.8rem;
}

p.lead {
    font-size: 1.25rem;
    line-height: 1.85;
    color: var(--primary);
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
}

.text-center { text-align: center; }

/* Títulos de Seção Premium */
.section-header {
    text-align: center;
    margin-bottom: 90px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.section-header h2 {
    font-size: 3rem; /* Imponência visual */
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--secondary);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: 15px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

/* Botões Modernos e Nobres */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 24, 72, 0.15);
}

.btn-primary:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 93, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(200, 164, 93, 0.2);
}

.btn-accent:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background-color: var(--bg-white);
    color: var(--primary);
    border-color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Header & Navegação Translúcida */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
    background-color: rgba(0, 11, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(200, 164, 93, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    transition: var(--transition);
}

.site-header.scrolled .nav-container {
    height: 85px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--bg-white);
    gap: 16px;
}

.logo svg {
    filter: drop-shadow(0 2px 8px rgba(200, 164, 93, 0.25));
    transition: var(--transition);
}

.logo a:hover svg {
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.15;
    display: flex;
    flex-direction: column;
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 24px;
}

/* Menu Mobile Hamburguer */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--bg-white);
    position: absolute;
    transition: var(--transition);
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 11px; }
.mobile-menu-toggle span:nth-child(3) { top: 22px; }

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
}

/* Hero Section Premium Impactante */
.hero {
    position: relative;
    height: 100vh;
    min-height: 850px;
    background: linear-gradient(135deg, rgba(0, 24, 72, 0.85) 0%, rgba(0, 11, 32, 0.96) 100%), url('../images/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed; /* Parallax nativo */
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--bg-white);
    padding-top: 110px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll; /* Fallback para mobile */
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(200, 164, 93, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--bg-white), transparent);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--bg-white);
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero p {
    font-size: 1.45rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 55px;
    font-family: var(--font-heading);
    font-style: italic;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Grid de Quem Somos (Home e Interna) */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.35rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1.5px solid var(--accent);
    z-index: 1;
    pointer-events: none;
    border-radius: calc(var(--border-radius) - 4px);
    opacity: 0.8;
}

/* No que Cremos - Bloco */
.creeds-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 60px 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    max-width: 950px;
    margin: 0 auto;
}

.creeds-badge {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Programação - Cards Premium */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.schedule-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(111, 128, 152, 0.12);
    padding: 40px 35px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(200, 164, 93, 0.15);
    transition: var(--transition);
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 164, 93, 0.3);
}

.schedule-card:hover::before {
    background-color: var(--accent);
}

.schedule-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(200, 164, 93, 0.2);
    transition: var(--transition);
}

.schedule-card:hover .schedule-icon {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    transform: scale(1.05);
}

.schedule-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.schedule-day {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.schedule-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
}

.schedule-time {
    margin-top: auto;
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
    border-top: 1px solid rgba(111, 128, 152, 0.12);
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-time svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    stroke-width: 2.5;
    fill: none;
}

/* Seção Pastor */
.pastor-profile {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: flex-start;
    max-width: 1140px;
    margin: 0 auto;
}

.pastor-image {
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary);
    border: 1px solid rgba(200, 164, 93, 0.2);
}

.pastor-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent);
    z-index: -1;
    border-radius: var(--border-radius);
    transition: var(--transition);
    pointer-events: none;
}

.pastor-image::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(111, 128, 152, 0.2);
    z-index: -1;
    border-radius: var(--border-radius);
    transition: var(--transition);
    pointer-events: none;
}

.pastor-profile:hover .pastor-image::before {
    transform: translate(-6px, -6px);
}

.pastor-profile:hover .pastor-image::after {
    transform: translate(-3px, -3px);
}

.pastor-image img {
    width: 100%;
    display: block;
    border-radius: var(--border-radius);
    object-fit: cover;
    height: 500px;
    transition: var(--transition);
    filter: brightness(0.95) contrast(1.05);
}

.pastor-profile:hover .pastor-image img {
    filter: brightness(1) contrast(1.05);
    transform: scale(1.02);
}

.pastor-name {
    font-size: 2.75rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.pastor-title {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 35px;
    display: block;
    font-family: var(--font-body);
}

.pastor-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--primary);
    border-left: 3px solid var(--accent);
    padding-left: 24px;
    margin: 35px 0;
    line-height: 1.8;
}

.drop-cap {
    font-family: var(--font-heading);
    font-size: 4.25rem;
    line-height: 0.8;
    float: left;
    margin-top: 4px;
    margin-right: 12px;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 1px 1px 0px rgba(0, 24, 72, 0.1);
}

/* Eventos - Cards Modernos e Nobres */
.event-card {
    display: grid;
    grid-template-columns: 450px 1fr;
    background-color: var(--bg-white);
    border: 1px solid rgba(111, 128, 152, 0.12);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.event-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(200, 164, 93, 0.35);
}

.event-image-container {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.event-image-container img, .event-image-container svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.event-card:hover .event-image-container img, .event-card:hover .event-image-container svg {
    transform: scale(1.05);
    opacity: 0.85;
}

.event-date-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 14px 20px;
    text-align: center;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent);
    border-top: 1px solid rgba(200, 164, 93, 0.2);
    border-right: 1px solid rgba(200, 164, 93, 0.2);
    border-bottom: 1px solid rgba(200, 164, 93, 0.2);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.event-date-day {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-body);
}

.event-date-month {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    margin-top: 4px;
}

.event-body {
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-title {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.event-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(111, 128, 152, 0.12);
    padding-bottom: 20px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.event-meta svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    stroke-width: 2.5;
    fill: none;
}

/* Pregações */
.sermons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.sermon-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.sermon-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(200, 164, 93, 0.25);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-container iframe, .video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 24, 72, 0.92), rgba(0, 17, 48, 0.96));
    color: var(--bg-white);
    text-align: center;
    padding: 24px;
}

.video-placeholder svg {
    width: 52px;
    height: 52px;
    fill: var(--accent);
    margin-bottom: 15px;
}

.sermon-details {
    padding: 30px;
}

.sermon-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.sermon-title {
    font-size: 1.35rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.sermon-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

/* Páginas Internas - Banners */
.page-banner {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(rgba(0, 24, 72, 0.9), rgba(0, 11, 32, 0.95)), url('../images/banner-bg.jpg') center/cover no-repeat;
    color: var(--bg-white);
    text-align: center;
    border-bottom: 3px solid var(--accent);
}

.page-banner h1 {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    list-style: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs li::after {
    content: '/';
    margin: 0 12px;
    color: var(--accent);
}

.breadcrumbs li:last-child::after {
    content: none;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--accent);
}

/* Formulários e Inputs Premium */
.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: start;
}

.info-list {
    margin-top: 40px;
}

.info-item {
    display: flex;
    gap: 24px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.info-icon {
    width: 54px;
    height: 54px;
    background-color: var(--bg-light);
    border-radius: 50%; /* Redondo premium */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(111, 128, 152, 0.12);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    color: var(--primary);
}

.info-item:hover .info-icon {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--accent);
    transform: translateY(-3px) scale(1.05);
}

.info-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: var(--transition);
}

.info-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.info-text p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-body);
}

.info-text a {
    color: var(--text-body);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.info-text a:hover {
    color: var(--accent);
}

.form-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(111, 128, 152, 0.12);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--accent);
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-family: var(--font-body);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid rgba(111, 128, 152, 0.18);
    border-radius: var(--border-radius);
    color: var(--primary);
    transition: var(--transition);
    background-color: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(200, 164, 93, 0.18);
}

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

/* Status do Formulário */
.form-status {
    padding: 16px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    font-size: 0.95rem;
    display: none;
    font-weight: 500;
    line-height: 1.5;
}

.form-status.success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-status.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Detalhes do Evento */
.event-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
}

.event-rich-content h3 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.event-rich-content ul {
    list-style: none;
    margin-bottom: 35px;
}

.event-rich-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.event-rich-content ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent);
    font-size: 1.6rem;
    line-height: 1;
    top: -2px;
}

.event-info-box {
    background-color: var(--accent-light);
    border: 1px solid rgba(200, 164, 93, 0.25);
    padding: 35px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    border-left: 4px solid var(--accent);
}

/* Rodapé Escuro Premium */
.site-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 110px 0 50px;
    border-top: 4px solid var(--accent);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 65px;
    margin-bottom: 80px;
}

.footer-col h3, .footer-col h4 {
    color: var(--bg-white);
    font-family: var(--font-heading);
    margin-bottom: 30px;
    font-size: 1.35rem;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-col h3::after, .footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--bg-white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(200, 164, 93, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(6px);
}

.footer-schedule {
    list-style: none;
}

.footer-schedule li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
}

.footer-schedule span:first-child {
    font-weight: 500;
}

.footer-schedule span:last-child {
    color: var(--accent);
    font-weight: 600;
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-contact-info svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* Botão WhatsApp Flutuante com Pulsar */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.4;
    z-index: -1;
    animation: wave 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-4px);
    background-color: #20BA5A;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
    overflow: visible;
}

@keyframes wave {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Animações Scroll (Intersection Observer) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Página de Erro */
.error-page {
    text-align: center;
    padding: 100px 0;
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 25px;
}

/* Responsividade de Alta Fidelidade (Mobile / Tablet) */
@media (max-width: 1100px) {
    .container {
        padding: 0 30px;
    }
    
    .about-grid {
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 100px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .pastor-profile {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .pastor-image {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .event-card {
        grid-template-columns: 1fr;
    }
    
    .event-image-container {
        height: 280px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .event-detail-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .hero h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 310px;
        height: 100vh;
        background-color: rgba(0, 11, 32, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid rgba(200, 164, 93, 0.15);
        flex-direction: column;
        padding: 140px 40px 40px;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.4);
        z-index: 1000;
        gap: 28px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.05rem;
        display: block;
        letter-spacing: 2px;
    }
    
    .nav-link::after {
        left: 0;
        transform: none;
    }
    
    .nav-link:hover::after, .nav-link.active::after {
        width: 20px;
    }
    
    .site-header {
        background-color: rgba(0, 11, 32, 0.96);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(200, 164, 93, 0.1);
    }
    
    .form-card {
        padding: 35px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .whatsapp-float {
        bottom: 30px;
        right: 30px;
        width: 54px;
        height: 54px;
    }
}
