/*
Theme Name: Igreja Batista
Theme URI: https://example.com
Author: Maicon
Author URI: https://example.com
Description: Tema moderno compatível com Elementor para igrejas batistas. Inclui post types personalizados para sermões, eventos, ministérios e equipe. Inspirado em Church Themes.
Version: 2.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: igreja-batista
Tags: church, religious, two-columns, custom-colors, custom-logo, custom-menu, elementor, featured-images, flexible-header, full-width-template, theme-options, translation-ready

Igreja Batista Theme, Copyright 2025
Igreja Batista Theme is distributed under the terms of the GNU GPL

This theme is compatible with Elementor Page Builder
*/

/* ===================================
   VARIÁVEIS CSS
   =================================== */
:root {
    --primary-color: #0052CC;
    --secondary-color: #CC0000;
    --text-color: #333333;
    --text-light: #666666;
    --background-white: #FFFFFF;
    --background-light: #F8F9FA;
    --border-color: #E0E0E0;
    --font-primary: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

/* ===================================
   RESET E BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

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

/* ===================================
   BOTÕES
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: #003d99;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #990000;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ===================================
   HEADER
   =================================== */
.site-header {
    background-color: var(--background-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info span {
    margin-right: 20px;
}

.header-info i {
    margin-right: 5px;
}

.header-social a {
    color: white;
    margin-left: 15px;
    font-size: 1.1rem;
}

.header-social a:hover {
    opacity: 0.8;
}

.header-main {
    padding: 20px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo {
    max-height: 80px;
    width: auto;
}

.site-title {
    margin: 0;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.site-title a {
    color: var(--primary-color);
}

.site-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   NAVEGAÇÃO
   =================================== */
.primary-navigation {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    margin-left: 30px;
}

.menu-list a {
    color: var(--text-color);
    font-weight: 600;
    padding: 10px 0;
    display: block;
}

.menu-list a:hover {
    color: var(--primary-color);
}

/* ===================================
   SEÇÕES
   =================================== */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===================================
   SCHEDULE SECTION
   =================================== */
.schedule-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.schedule-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.schedule-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.schedule-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.schedule-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.schedule-description {
    color: var(--text-light);
}

/* ===================================
   WELCOME SECTION
   =================================== */
.welcome-section {
    padding: 80px 0;
}

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

.welcome-image img {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.welcome-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.welcome-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* ===================================
   EVENTS
   =================================== */
.events-preview,
.upcoming-events {
    padding: 80px 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.event-date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.event-date-badge .month {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.event-content {
    padding: 25px;
}

.event-meta {
    margin-bottom: 10px;
}

.event-category {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.event-title {
    margin-bottom: 15px;
}

.event-title a {
    color: var(--text-color);
}

.event-title a:hover {
    color: var(--primary-color);
}

.event-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.event-info .icon {
    margin-right: 5px;
}

.event-excerpt {
    margin: 15px 0;
    color: var(--text-light);
}

.event-date {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

/* ===================================
   MISSÕES
   =================================== */
.mission-vision,
.missionaries-section,
.projects-section {
    padding: 80px 0;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vision-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.vision-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.vision-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vision-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.missionaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.missionary-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.missionary-image {
    height: 250px;
    overflow: hidden;
}

.missionary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.missionary-content {
    padding: 25px;
}

.missionary-location {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* ===================================
   CONTATO
   =================================== */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-info-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    background: var(--background-light);
    padding: 40px;
    border-radius: 10px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: start;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input {
    margin-right: 10px;
    margin-top: 4px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.map-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.map-wrapper {
    margin-top: 40px;
}

.church-map iframe {
    border-radius: 10px;
}

/* ===================================
   CTA SECTIONS
   =================================== */
.cta-section,
.missions-cta,
.events-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer-widgets {
    padding: 60px 0 40px;
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-widget h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: #cccccc;
}

.footer-widget a:hover {
    color: white;
}

.footer-bottom {
    background-color: #0d0d0d;
    padding: 25px 0;
    border-top: 1px solid #333;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer-menu a {
    color: #999;
    font-size: 0.9rem;
}

.back-to-top-link {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.back-to-top-link:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .welcome-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .menu-list.active {
        display: flex;
    }
    
    .menu-list li {
        margin: 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .menu-list a {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    
    .hero-text h1,
    .page-title {
        font-size: 2rem;
    }
    
    .schedule-grid,
    .vision-grid,
    .events-grid,
    .missionaries-grid {
        grid-template-columns: 1fr;
    }
    
    .header-top .container,
    .footer-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ===================================
   UTILITÁRIOS
   =================================== */
.text-center {
    text-align: center;
}

.section-link {
    text-align: center;
    margin-top: 40px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-content {
    padding: 60px 0;
}

/* ===================================
   ELEMENTOR COMPATIBILITY
   =================================== */

/* Canvas Template - Página em branco */
.elementor-canvas {
    padding: 0;
    margin: 0;
}

.elementor-canvas .site-content {
    padding: 0;
    margin: 0;
}

/* Full Width Template */
.elementor-full-width .entry-content {
    max-width: 100%;
    padding: 0;
}

.elementor-full-width .entry-content > .elementor {
    width: 100%;
}

/* Elementor Page */
.elementor-page .site-main {
    padding: 0;
}

.elementor-page .entry-content {
    margin: 0;
}

/* Container Width */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px;
}

/* Elementor Widgets Customization */
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4,
.elementor-widget-heading h5,
.elementor-widget-heading h6 {
    font-family: var(--font-heading);
}

.elementor-widget-text-editor {
    font-family: var(--font-primary);
}

/* Elementor Button */
.elementor-button {
    padding: 12px 30px;
    border-radius: 5px;
    transition: var(--transition);
}

.elementor-button.elementor-size-sm {
    padding: 8px 20px;
}

.elementor-button.elementor-size-lg {
    padding: 15px 40px;
}

/* Elementor Icon */
.elementor-icon {
    transition: var(--transition);
}

/* Elementor Image */
.elementor-widget-image img {
    border-radius: 10px;
}

/* Elementor Columns Spacing */
.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 15px;
}

/* Fix for Elementor Editor */
.elementor-editor-active .site-header {
    position: relative;
}

/* Custom Post Types Styling */
.post-type-archive-sermao .sermao-item,
.post-type-archive-evento .evento-item,
.post-type-archive-ministerio .ministerio-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: var(--transition);
}

.post-type-archive-sermao .sermao-item:hover,
.post-type-archive-evento .evento-item:hover,
.post-type-archive-ministerio .ministerio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

/* Single Post Types */
.single-sermao .entry-header,
.single-evento .entry-header,
.single-ministerio .entry-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.single-sermao .entry-title,
.single-evento .entry-title,
.single-ministerio .entry-title {
    color: white;
    margin-bottom: 20px;
}

/* Elementor Pro Compatibility */
.elementor-posts-container .elementor-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.elementor-posts-container .elementor-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

/* Theme Builder Support */
.elementor-location-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.elementor-location-footer {
    background-color: #1a1a1a;
    color: white;
}

/* Mobile Optimization for Elementor */
@media (max-width: 768px) {
    .elementor-section .elementor-container {
        padding: 15px;
    }
    
    .elementor-column {
        margin-bottom: 20px;
    }
}

/* ===================================
   HOME PAGE - FUNDO BRANCO
   =================================== */

/* Hero Section Branco */
.hero-section-white {
    background-color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Schedule Section Branco */
.schedule-section-white {
    background-color: #F8F9FA;
    padding: 80px 0;
}

.section-title-white {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.schedule-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid #E8E8E8;
}

.schedule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.schedule-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.schedule-icon.blue {
    background-color: rgba(0, 82, 204, 0.1);
    color: var(--primary-color);
}

.schedule-icon.red {
    background-color: rgba(204, 0, 0, 0.1);
    color: var(--secondary-color);
}

.schedule-card h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.schedule-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.schedule-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Welcome Section Branco */
.welcome-section-white {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.welcome-grid-white {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-image-white {
    border-radius: 15px;
    overflow: hidden;
}

.welcome-image-white img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.placeholder-image {
    background: linear-gradient(135deg, #F8F9FA, #E8E8E8);
    padding: 100px;
    text-align: center;
    border-radius: 15px;
    color: var(--text-light);
}

.welcome-content-white h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.welcome-content-white p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.welcome-features {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-icon.blue {
    background-color: rgba(0, 82, 204, 0.1);
    color: var(--primary-color);
}

.feature-text h4 {
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Events Preview Branco */
.events-preview-white {
    background-color: #F8F9FA;
    padding: 80px 0;
}

.events-grid-white {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.event-card-white {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid #E8E8E8;
}

.event-card-white:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.event-image-white {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image-white img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-image-white.placeholder {
    background: linear-gradient(135deg, #F8F9FA, #E8E8E8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.event-content-white {
    padding: 30px;
}

.event-content-white h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.event-info-white p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.event-info-white i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 18px;
}

.event-excerpt-white {
    color: var(--text-light);
    margin: 20px 0;
    line-height: 1.6;
}

/* Sermons Preview Branco */
.sermons-preview-white {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.sermons-grid-white {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.sermon-card-white {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid #E8E8E8;
}

.sermon-card-white:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.sermon-image-white {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sermon-image-white img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sermon-image-white.placeholder {
    background: linear-gradient(135deg, #F8F9FA, #E8E8E8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.sermon-content-white {
    padding: 30px;
}

.sermon-badge {
    display: inline-block;
    background-color: rgba(204, 0, 0, 0.1);
    color: var(--secondary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.sermon-content-white h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.sermon-meta-white {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.sermon-meta-white span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.sermon-meta-white i {
    color: var(--primary-color);
    margin-right: 6px;
}

.sermon-excerpt-white {
    color: var(--text-light);
    margin: 20px 0;
    line-height: 1.6;
}

/* CTA Section Branco */
.cta-section-white {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.05), rgba(204, 0, 0, 0.05));
    padding: 80px 0;
    text-align: center;
}

.cta-content-white h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-content-white p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mensagem de Sem Conteúdo */
.no-content-message {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-content-message i {
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-content-message p {
    font-size: 1.1rem;
    margin: 0;
}

/* Botões Melhorados */
.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn-outline-dark:hover {
    background-color: var(--text-color);
    color: white;
}

/* Responsive - Home Branco */
@media (max-width: 992px) {
    .welcome-grid-white {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-title-white {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .schedule-section-white,
    .welcome-section-white,
    .events-preview-white,
    .sermons-preview-white,
    .cta-section-white {
        padding: 60px 0;
    }
    
    .events-grid-white,
    .sermons-grid-white {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: row;
        align-items: center;
    }
}
