/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

/* Toast */
#toast {
    position: fixed;
    bottom: 20px;
    right: -350px; /* Começa escondido */
    background: #28a745;
    color: white;
    padding: 14px 20px;
    border-radius: 6px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: right 0.5s ease;
}

/* Quando aparece */
#toast.mostrar {
    right: 20px; /* Entra na tela */
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    background: #000000;
    padding: 8px;
    border-radius: 8px;
    color: white;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    line-height: 1;
}

.logo-text p {
    font-size: 12px;
    color: #6B7280;
    line-height: 1;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-desktop a:hover {
    color: #000000;
}

.mobile-menu-btn {
 display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #E5E7EB;
    padding: 16px 0;
}

.mobile-menu a {
    display: block;
    padding: 12px 24px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.2s;
}

.mobile-menu a:hover {
    color: #1E40AF;
    background: #F3F4F6;
}

/* Hero Section */
.hero {
    background:#000000;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 64px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - 64px);
}

#mensagem {
    margin-top: 15px;
    padding: 12px;
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
    border-radius: 4px;
    font-family: Arial;
    width: fit-content;
    display: none; /* Começa escondido */
}

#mensagem.mostrar {
    display: block;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-text .highlight {
    display: block;
    color: #f59f0a;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #DBEAFE;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #F59E0B;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #D97706;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

.service-times {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 600px;
}

.service-card {
    background: rgba(77, 77, 77, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.service-card i {
    font-size: 32px;
    color: #f59f0a;
    margin-bottom: 8px;
}

.service-card h3 {
    font-weight: 600;
    margin-bottom: 4px;
}

.service-card p {
    color: #DBEAFE;
    font-size: 14px;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #F59E0B, #FBBF24);
    border-radius: 16px;
    transform: rotate(6deg);
}

.hero-image img {
    position: relative;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #F9FAFB;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
}

.about-text p {
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.value-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
}

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

.value-icon {
    background: #DBEAFE;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon i {
    font-size: 32px;
    color: #000000;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.value-card p {
    color: #000000;
    line-height: 1.6;
}

.stats-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 8px;
}

.stat-label {
    color: #6B7280;
    font-size: 14px;
}

/* Ministries Section */
.ministries {
    background: white;
}

.ministries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.ministry-card {
    background: #F9FAFB;
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s;
}

.ministry-card:hover {
    background: #EFF6FF;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ministry-icon {
    background: linear-gradient(135deg, #242424, #5f5f5f);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.ministry-card:hover .ministry-icon {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
}

.ministry-icon i {
    font-size: 32px;
    color: white;
}

.ministry-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.ministry-card p {
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.ministry-info {
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.info-item .label {
    font-weight: 600;
    color: #000000;
    width: 80px;
    flex-shrink: 0;
}

.info-item span:last-child {
    color: #6B7280;
}

.btn-ministry {
    width: 100%;
    background: #000000;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-ministry:hover {
    background: #F59E0B;
}

.cta-section {
    background:#000000;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.25rem;
    color: #DBEAFE;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: #F59E0B;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cta:hover {
    background: #D97706;
    transform: translateY(-2px);
}

/* Events Section */
.events {
    background: #F9FAFB;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

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

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

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

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

.event-type {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.culto-regular { background: #DBEAFE; color: #1E40AF; }
.evento-especial { background: #F3E8FF; color: #7C3AED; }
.ministerio-infantil { background: #D1FAE5; color: #059669; }
.capacitacao { background: #FEF3C7; color: #D97706; }
.cerimonia { background: #FCE7F3; color: #EC4899; }
.projeto-social { background: #CCFBF1; color: #0D9488; }

.event-content {
    padding: 24px;
}

.event-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.event-details {
    margin-bottom: 24px;
}

.detail {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #6B7280;
    font-size: 14px;
}

.detail i {
    color: #000000;
    width: 20px;
    margin-right: 12px;
}

.btn-event {
    width: 100%;
    background: #080808;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-event:hover {
    background: #d3b81d;
}

.weekly-schedule {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.weekly-schedule h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 32px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.schedule-card {
    background: #EFF6FF;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.schedule-card h4 {
    font-weight: bold;
    color: #020202;
    margin-bottom: 8px;
}

.schedule-card p {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 4px;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    background: #DBEAFE;
    padding: 12px;
    border-radius: 8px;
    flex-shrink: 0;
}

.info-icon i {
    color: #000000;
    font-size: 24px;
}

.info-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.info-text p {
    color: #6B7280;
    line-height: 1.6;
}

.social-media h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link.facebook { background: #1877F2; color: white; }
.social-link.instagram { background: #E4405F; color: white; }
.social-link.youtube { background: #FF0000; color: white; }

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-form {
    background: #F9FAFB;
    padding: 32px;
    border-radius: 16px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
}

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

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

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-submit {
    width: 100%;
    background: #000000;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #000000;
}

.map-section {
    margin-top: 64px;
}

.map-placeholder {
    background: #E5E7EB;
    height: 400px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    text-align: center;
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 16px;
}

.map-placeholder p {
    font-size: 18px;
    margin-bottom: 8px;
}

.map-placeholder span {
    font-size: 14px;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    background: #1E40AF;
    padding: 8px;
    border-radius: 8px;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.footer-logo p {
    font-size: 12px;
    color: #9CA3AF;
    line-height: 1;
}

.footer-section p {
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 400px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-item i {
    color: #60A5FA;
    font-size: 16px;
    width: 16px;
}

.contact-item span {
    color: #D1D5DB;
    font-size: 14px;
}

.service-times-footer {
    border-top: 1px solid #374151;
    padding-top: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.service-times-footer h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.time-card {
    background: #313131;
    padding: 16px;
    border-radius: 8px;
}

.time-card h5 {
    font-weight: 600;
    color: #f59f0a;
    margin-bottom: 4px;
}

.time-card p {
    color: #D1D5DB;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 14px;
}

/* Responsivo 768px*/
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .service-times {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-card {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ministries-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .times-grid {
        grid-template-columns: 1fr;
    }

  
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
    }

    
    
  
}

