/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background: #f5f5f5; color: #333; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* HEADER */
.header {
    background: #1a365d;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}
.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #f6ad55;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* NAV */
.nav-list {
    display: flex;
    gap: 8px;
}
.nav-link {
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
    background: #f6ad55;
    color: #1a365d;
}

/* HAMBURGUER */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: #f6ad55;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* BANNER */
.banner {
    background: linear-gradient(135deg, #f6ad55, #ed8936);
    color: #1a365d;
    text-align: center;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 1.05rem;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}
.hero h1 {
    font-size: 2.8rem;
    color: #f6ad55;
    margin-bottom: 16px;
}
.hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

/* BOTAO */
.btn {
    display: inline-block;
    background: #f6ad55;
    color: #1a365d;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s;
}
.btn:hover { transform: scale(1.05); }

/* RADIO */
.radio {
    background: #e2e8f0;
    padding: 60px 20px;
    text-align: center;
}
.radio h2 { color: #1a365d; margin-bottom: 24px; }
.radio iframe { max-width: 100%; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

/* EVENTOS */
.eventos {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}
.eventos h2 { color: #1a365d; margin-bottom: 30px; }
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* CARD */
.card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}
.card h3 { color: #1a365d; margin-bottom: 8px; }
.card .meta { color: #f6ad55; font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; }

/* FOOTER */
.footer {
    background: #1a365d;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}
.social { margin-bottom: 16px; }
.social a {
    color: #f6ad55;
    font-size: 1.8rem;
    margin: 0 12px;
    transition: color 0.2s;
}
.social a:hover { color: #fff; }

/* CHAT */
.chat-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #319795;
    color: #fff;
    border-radius: 50%;
    border: 3px solid #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 998;
}

/* MOBILE */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    
    .nav {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #1a365d;
        padding: 0;
        display: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    
    .nav.open { display: block; }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: #fff;
    }
    
    .nav-link:hover { background: #f6ad55; color: #1a365d; }
    
    .hero h1 { font-size: 2rem; }
    .grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) {
    .nav { display: block !important; }
    .hamburger { display: none !important; }
    .grid { grid-template-columns: repeat(3, 1fr); }
}

/* MURAL ORAÇÃO */
.mural-oracao {
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
.mural-oracao h2 { color: #fff; margin-bottom: 30px; }
.mural-oracao form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: left;
}
.mural-oracao input,
.mural-oracao textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 1rem;
}
.mural-oracao input:focus,
.mural-oracao textarea:focus {
    border-color: #f6ad55;
    outline: none;
}
.oracao-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}
.oracao-card {
    background: rgba(255,255,255,0.1);
    border-left: 5px solid #f6ad55;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}
.oracao-card h4 { color: #f6ad55; margin-bottom: 8px; }

/* SOBRE */
.sobre {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}
.sobre h2 { color: #1a365d; margin-bottom: 30px; }
.content-section {
    background: #f7fafc;
    padding: 30px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.content-section p { margin-bottom: 16px; line-height: 1.7; }
.horarios {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.horarios .card { text-align: center; }
.horarios .card h3 { color: #1a365d; margin-bottom: 8px; }
.horarios .card p { color: #666; }

@media (min-width: 769px) {
    .oracao-cards { grid-template-columns: repeat(2, 1fr); }
    .horarios { grid-template-columns: repeat(3, 1fr); }
}

/* CHAT SECTION */
.chat-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}
.chat-section h2 { color: #1a365d; margin-bottom: 30px; }
.chat-embed {
    max-width: 900px;
    margin: 0 auto;
    min-height: 500px;
    background: #f7fafc;
    border-radius: 12px;
    padding: 20px;
}
.powered-by-minnit {
    font-size: 0.8rem;
    color: #999;
    margin-top: 10px;
}
.powered-by-minnit a { color: #999; }

/* LATEST POSTS SECTION */
.latest-posts {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f7fafc, #fff);
    text-align: center;
}
.latest-posts h2 { color: #1a365d; margin-bottom: 30px; }
.post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: transform 0.3s;
}
.post-card:hover { transform: translateY(-5px); }
.post-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.post-card-content { padding: 20px; }
.post-card h3 {
    color: #1a365d;
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.3;
}
.post-card .meta {
    color: #f6ad55;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.post-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 12px;
}
.post-card .btn-sm {
    display: inline-block;
    background: #f6ad55;
    color: #1a365d;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}
.post-card .btn-sm:hover {
    background: #1a365d;
    color: #fff;
}

/* POSTS PAGE */
.eventos .card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s;
}
.eventos .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.eventos .card h3 {
    color: #1a365d;
    margin-bottom: 8px;
    font-size: 1.2rem;
}
.eventos .card .meta {
    color: #f6ad55;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
}
.eventos .card p {
    color: #666;
    line-height: 1.6;
}

/* BLOG POST LAYOUT - WordPress style */
.blog-post {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    max-width: 780px;
    margin: 0 auto 40px;
    transition: box-shadow 0.3s;
}
.blog-post:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.14); }
.blog-post img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.blog-post-body { padding: 32px; }
.blog-post-body .badge {
    display: inline-block;
    background: #f6ad55;
    color: #1a365d;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.blog-post-body h3 {
    color: #1a365d;
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 10px;
}
.blog-post-body .meta {
    color: #999;
    font-size: 0.88rem;
    margin-bottom: 16px;
    display: block;
}
.blog-post-body p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 20px;
}
.blog-post-body .btn-post {
    display: inline-block;
    background: #1a365d;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.blog-post-body .btn-post:hover { background: #f6ad55; color: #1a365d; }
