/* ===== CORES IPB - APENAS VERDE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ipb-green-dark: #0D4D1A;
    --ipb-green-medium: #1A6B2A;
    --ipb-green-light: #2E8B3C;
    --ipb-green-soft: #4CAF50;
    --ipb-green-pale: #E8F5E9;
    --ipb-gray-bg: #FAF9F6;
    --ipb-card-white: #FFFFFF;
    --ipb-text-dark: #1A1A1A;
    --ipb-text-gray: #555555;
    --ipb-text-light: #777777;
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 25px 45px rgba(13,77,26,0.12);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ipb-text-dark);
    background: var(--ipb-gray-bg);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo, .nav-links a, .btn {
    font-family: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: white;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;  /* Isso joga o menu para a direita */
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

/* ===== LOGO COM IMAGEM ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 12px;
}

.logo-texto h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ipb-green-dark);
    margin: 0;
}

.logo-texto p {
    font-size: 0.7rem;
    color: var(--ipb-green-medium);
    letter-spacing: 1px;
    font-weight: 500;
    margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-texto h1 {
        font-size: 1.2rem;
    }
    
    .logo-texto p {
        font-size: 0.55rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 30px;
        height: 32px;
    }
    
    .logo-texto h1 {
        font-size: 1rem;
    }
}

/* ===== LOGO ===== */
.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ipb-green-dark);
}

.logo p {
    font-size: 0.8rem;
    color: var(--ipb-green-medium);
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Links do desktop */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--ipb-text-dark);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--ipb-green-dark);
}

.nav-links a.active {
    color: var(--ipb-green-dark);
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: var(--ipb-green-dark);
    border-radius: 2px;
}

/* ===== BOTÃO DO MENU ===== */
.menu-toggle {
    display: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--ipb-green-dark);
    background: white;
    width: 30px;
    height: 30px; 
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: none;
    z-index: 1001;
}

.menu-toggle:hover {
    background: var(--ipb-green-dark);
    color: white;
}

/* ===== BOTÃO DO MENU - DIREITA ===== */
.nav-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--ipb-green-dark);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: none;
    z-index: 1001;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}

/* ===== HERO ===== */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--ipb-green-dark) 0%, var(--ipb-green-medium) 50%, var(--ipb-green-light) 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.08)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin: 0.5rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ipb-green-dark), var(--ipb-green-medium));
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, var(--ipb-green-medium), var(--ipb-green-light));
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: var(--ipb-green-dark);
    transform: translateY(-3px);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--ipb-green-dark);
    position: relative;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--ipb-green-dark);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ===== CARDS CULTOS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--ipb-card-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--ipb-green-dark);
    z-index: -1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card i {
    font-size: 3rem;
    color: var(--ipb-green-dark);
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--ipb-green-dark);
}

.schedule {
    background: var(--ipb-green-pale);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.schedule p {
    margin: 0.3rem 0;
    color: var(--ipb-text-gray);
}

/* ===== PROJETOS ===== */
.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.projeto-item {
    background: var(--ipb-card-white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.projeto-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, var(--ipb-green-dark), var(--ipb-green-medium));
    transition: height 0.4s ease;
    z-index: 0;
    border-radius: 20px;
}

.projeto-item:hover::before {
    height: 100%;
}

.projeto-item i, 
.projeto-item h3, 
.projeto-item p {
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.projeto-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--ipb-green-dark);
}

.projeto-item h3 {
    margin-bottom: 0.5rem;
    color: var(--ipb-text-dark);
}

.projeto-item p {
    font-size: 0.9rem;
    color: var(--ipb-text-gray);
}

.projeto-item:hover i,
.projeto-item:hover h3,
.projeto-item:hover p {
    color: white;
}

/* ===== NOSSAS ATIVIDADES - ESTILO BONITO ===== */
.cards-atividades {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card-atividade {
    background: var(--ipb-card-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
}

.card-atividade:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-atividade-header {
    background: linear-gradient(135deg, var(--ipb-green-dark), var(--ipb-green-medium));
    padding: 1.5rem;
    text-align: center;
    color: white;
}

.card-atividade-header i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.card-atividade-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.card-atividade-content {
    padding: 1.5rem;
}

.card-atividade-content p {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--ipb-text-gray);
    font-size: 1rem;
}

.card-atividade-content p i {
    width: 30px;
    color: var(--ipb-green-dark);
    font-size: 1.1rem;
}

/* ===== CÉLULAS ESTILO BONITO ===== */
.celulas-wrapper {
    background: linear-gradient(135deg, var(--ipb-green-pale), #ffffff);
    border-radius: 24px;
    padding: 2rem;
    margin-top: 1rem;
}

.celulas-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--ipb-green-dark);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.celulas-title i {
    margin-right: 0.5rem;
}

.celulas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.celula-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border-left: 4px solid var(--ipb-green-dark);
}

.celula-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.celula-dia {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--ipb-green-dark);
    margin-bottom: 0.8rem;
    display: inline-block;
    background: var(--ipb-green-pale);
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.celula-endereco, .celula-lideres, .celula-contato {
    margin: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--ipb-text-gray);
    font-size: 0.9rem;
}

.celula-endereco i, .celula-lideres i, .celula-contato i {
    width: 22px;
    color: var(--ipb-green-dark);
}

.celula-contato {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid #eee;
}

/* Responsivo */
@media (max-width: 768px) {
    .cards-atividades {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-atividade-header h3 {
        font-size: 1.2rem;
    }
    
    .celulas-grid {
        grid-template-columns: 1fr;
    }
    
    .celulas-wrapper {
        padding: 1.2rem;
    }
}

/* ===== CÉLULAS ===== */
.celulas-section {
    margin-top: 3rem;
    background: var(--ipb-green-pale);
    border-radius: 24px;
    padding: 2rem;
}

.celulas-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--ipb-green-dark);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.celulas-title i {
    margin-right: 0.5rem;
}

.celulas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.celula-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border-left: 4px solid var(--ipb-green-dark);
}

.celula-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.celula-dia {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--ipb-green-dark);
    margin-bottom: 0.8rem;
    display: inline-block;
    background: var(--ipb-green-pale);
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.celula-endereco, .celula-lideres, .celula-contato {
    margin: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--ipb-text-gray);
    font-size: 0.9rem;
}

.celula-endereco i, .celula-lideres i, .celula-contato i {
    width: 22px;
    color: var(--ipb-green-dark);
}

.celula-contato {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid #eee;
}

/* ===== NOSSA MISSÃO ===== */
.missao-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.missao-card {
    background: linear-gradient(135deg, var(--ipb-green-dark), var(--ipb-green-medium));
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.missao-card .section-title {
    color: white;
    margin-bottom: 2rem;
}

.missao-card .section-title:after {
    background: white;
}

.missao-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.missao-texto {
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-style: italic;
}

.missao-valores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.valor {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.valor:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.valor i {
    margin-right: 0.5rem;
}

/* ===== SEÇÃO YOUTUBE ===== */
.youtube-info {
    margin-top: 1.5rem;
}

.youtube-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
}

.stat {
    background: var(--ipb-green-pale);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--ipb-green-dark);
    font-weight: 500;
}

.stat i {
    margin-right: 0.3rem;
}

.btn-youtube {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.btn-youtube i {
    margin-right: 0.5rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .youtube-stats {
        gap: 1rem;
    }
    
    .stat {
        font-size: 0.7rem;
    }
    
    .btn-youtube {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ===== ÁLBUNS ===== */
.albuns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.album-card {
    background: var(--ipb-card-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.4s;
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.album-capa {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.album-capa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.album-card:hover .album-capa img {
    transform: scale(1.08);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,77,26,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-overlay i {
    font-size: 2.5rem;
    color: white;
}

.album-info {
    padding: 1.2rem;
    text-align: center;
}

.album-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--ipb-green-dark);
}

.album-info p {
    color: var(--ipb-text-light);
    font-size: 0.8rem;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--ipb-card-white);
    margin: 40px auto;
    width: 90%;
    max-width: 1100px;
    border-radius: 24px;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    padding: 1.2rem 1.8rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-radius: 24px 24px 0 0;
}

.modal-header h3 {
    color: var(--ipb-green-dark);
    font-size: 1.3rem;
    margin: 0;
}

.close-modal {
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--ipb-text-light);
    transition: color 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--ipb-green-dark);
}

.modal-body {
    padding: 1.8rem;
}

.fotos-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
}

.foto-modal-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--ipb-gray-bg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.foto-modal-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.foto-modal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== LIGHTBOX ===== */
#customLightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
}

.lightbox-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 50px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--ipb-green-light);
    transform: rotate(90deg);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--ipb-green-dark);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.6);
    padding: 10px 20px;
    font-size: 0.9rem;
    width: fit-content;
    margin: 0 auto;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

/* ===== CONTATO ===== */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contato-info i {
    margin-right: 0.8rem;
    color: var(--ipb-green-dark);
    width: 25px;
}

.contato-info p {
    margin: 0.8rem 0;
    color: var(--ipb-text-gray);
}

.contato-info h3 {
    color: var(--ipb-green-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.mapa h3 {
    color: var(--ipb-green-dark);
    margin-bottom: 0.8rem;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--ipb-green-dark), var(--ipb-green-medium));
    color: white;
    text-align: center;
    padding: 2.5rem;
    margin-top: 2rem;
}

.social-icons a {
    color: white;
    margin: 0 0.6rem;
    font-size: 1.5rem;
    transition: all 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--ipb-green-soft);
    transform: translateY(-5px);
}

/* ===== MENU MOBILE LATERAL ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, var(--ipb-green-dark), var(--ipb-green-medium));
    z-index: 2001;
    transition: right 0.3s ease;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    margin-bottom: 2rem;
}

.mobile-menu-header h3 {
    color: white;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.mobile-menu-close {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    flex: 1;
}

.mobile-nav-links li {
    margin: 0.8rem 0;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.8rem 0;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-links a:hover {
    transform: translateX(10px);
    color: var(--ipb-green-soft);
    border-bottom-color: var(--ipb-green-soft);
}

.mobile-menu-footer {
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255,255,255,0.2);
    text-align: center;
}

.social-icons-mobile {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons-mobile a {
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-icons-mobile a:hover {
    color: var(--ipb-green-soft);
    transform: translateY(-3px);
}

body.menu-open {
    overflow: hidden;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .evento {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .evento-titulo {
        margin-left: 0;
    }
    
    .albuns-grid {
        grid-template-columns: 1fr;
    }
    
    .fotos-modal-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.8rem;
    }
    
    .atividades-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .celulas-grid {
        grid-template-columns: 1fr;
    }
    
    .missao-texto {
        font-size: 1rem;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .logo p {
        font-size: 0.65rem;
    }
    
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cards-grid, .projetos-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        display: block;
        margin: 0.5rem auto;
        width: 80%;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .fotos-modal-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 0.6rem;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .logo p {
        font-size: 0.55rem;
    }
    
    .missao-valores {
        gap: 0.5rem;
    }
    
    .valor {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}

/* ===== DEVOCIONAL DO DIA ===== */
.devocional-section {
    margin: 2rem auto;
}

.devocional-card {
    background: linear-gradient(135deg, var(--ipb-card-white), var(--ipb-green-pale));
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
    border: 1px solid rgba(13,77,26,0.1);
}

.devocional-card:hover {
    transform: translateY(-3px);
}

.devocional-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--ipb-green-dark);
}

.devocional-header i {
    font-size: 2rem;
    color: var(--ipb-green-dark);
}

.devocional-data {
    display: flex;
    flex-direction: column;
}

.dia-semana-dev {
    font-size: 0.9rem;
    color: var(--ipb-green-medium);
    font-weight: 500;
}

.data-dev {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--ipb-green-dark);
}

.devocional-titulo {
    font-size: 1.8rem;
    color: var(--ipb-green-dark);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.devocional-versiculo {
    background: var(--ipb-green-pale);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    position: relative;
    font-style: italic;
}

.devocional-versiculo i {
    color: var(--ipb-green-dark);
    opacity: 0.5;
    font-size: 1.2rem;
}

.devocional-versiculo i:first-child {
    float: left;
    margin-right: 10px;
}

.devocional-versiculo i:last-child {
    float: right;
    margin-left: 10px;
}

.devocional-versiculo p {
    color: var(--ipb-text-dark);
    line-height: 1.6;
}

.devocional-mensagem {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--ipb-text-gray);
    text-align: justify;
}

.devocional-reflexao, .devocional-oracao, .devocional-intercessao {
    margin-bottom: 1.2rem;
    padding: 1rem;
    border-radius: 12px;
}

.devocional-reflexao {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid var(--ipb-green-dark);
}

.devocional-oracao {
    background: rgba(13, 77, 26, 0.05);
    border-left: 4px solid var(--ipb-green-medium);
}

.devocional-intercessao {
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--ipb-green-light);
}

.devocional-reflexao h4, .devocional-oracao h4, .devocional-intercessao h4 {
    color: var(--ipb-green-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.devocional-reflexao h4 i, .devocional-oracao h4 i, .devocional-intercessao h4 i {
    color: var(--ipb-green-dark);
}

.devocional-reflexao p, .devocional-oracao p, .devocional-intercessao p {
    color: var(--ipb-text-gray);
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
    .devocional-card {
        padding: 1.2rem;
    }
    
    .devocional-titulo {
        font-size: 1.3rem;
    }
    
    .devocional-header i {
        font-size: 1.5rem;
    }
    
    .devocional-versiculo {
        padding: 1rem;
    }
    
    .devocional-versiculo p {
        font-size: 0.9rem;
    }
    
    .devocional-mensagem {
        font-size: 0.9rem;
    }
}

/* ===== SAUDAÇÃO COM HORÁRIO ===== */
.saudacao-section {
    margin-top: 0;
    padding-top: 1rem;
}

.saudacao-card {
    background: linear-gradient(135deg, var(--ipb-green-dark), var(--ipb-green-medium));
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.saudacao-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.saudacao-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: wave 2s infinite;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

.saudacao-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.saudacao-card p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsivo */
@media (max-width: 768px) {
    .saudacao-card {
        padding: 1.2rem;
    }
    
    .saudacao-card h2 {
        font-size: 1.4rem;
    }
    
    .saudacao-card i {
        font-size: 2rem;
    }
}
/* ===== LOGO COMO FUNDO DO SITE ===== */
body {
    background-color: var(--ipb-gray-bg);
    background-image: url('logo_fundo.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: 700px;
    opacity: 1;
}

/* Deixa o fundo mais suave (opcional) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(250, 249, 246, 0.9);
    z-index: -1;
}

/* Para tablets */
@media (max-width: 768px) {
    body {
        background-size: 400px;
    }
}

/* Para celulares */
@media (max-width: 480px) {
    body {
        background-size: 400px;
    }
}

/* ===== GALERIA DE FOTOS – VISUAL ARRUMADINHO (SEM LEGENDAS) ===== */
.albuns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.album-card {
    background: var(--ipb-card-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.4s ease;
}

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.album-capa {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f0f0e8;
}

.album-capa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover .album-capa img {
    transform: scale(1.05);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,77,26,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-overlay i {
    font-size: 2.5rem;
    color: white;
}

.album-info {
    padding: 1rem;
    text-align: center;
}

.album-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--ipb-green-dark);
}

.album-info p {
    color: var(--ipb-text-light);
    font-size: 0.8rem;
}

/* ===== MODAL DAS FOTOS – VISUAL LIMPO E ARRUMADINHO ===== */
.modal-body {
    padding: 1rem;
}

.fotos-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.foto-modal-item {
    position: relative;
    background: #f5f5e8;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.foto-modal-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.foto-modal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

/* Responsivo para telas pequenas */
@media (max-width: 768px) {
    .albuns-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .fotos-modal-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .fotos-modal-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 0.6rem;
    }
}