/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    background-image: url('fundo_landpage.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.container > * {
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    padding: 20px 0;
    text-align: center;
}

.logo-container {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

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

/* Conteúdo Principal */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Seção da Igreja */
.church-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.church-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.church-description p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
    line-height: 1.8;
}

.tradition {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: 30px !important;
}

.hashtag {
    color: #e74c3c;
    font-weight: 700;
}

/* Seção de Horários */
.schedule-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.schedule-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.schedule-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-item {
    margin-bottom: 15px;
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.time {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.description {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

/* Rodapé */
.footer {
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 40px 20px;
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-item i {
    color: #3498db;
    font-size: 1.2rem;
    width: 20px;
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
}

.address i {
    color: #3498db;
    font-size: 1.2rem;
    width: 20px;
    margin-top: 5px;
}

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

.social-media h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook:hover {
    background: linear-gradient(135deg, #3b5998, #2d4373);
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #e1306c, #c13584);
}

.social-icon.youtube:hover {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Links do Rodapé */
.footer-links {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-link:hover {
    color: #3498db;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-link i {
    font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .church-title {
        font-size: 2rem;
    }
    
    .church-info,
    .schedule-section {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .address {
        justify-content: center;
    }
    
    .logo {
        height: 60px;
    }
    
    .main-content {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .church-title {
        font-size: 1.7rem;
    }
    
    .schedule-title {
        font-size: 1.8rem;
    }
    
    .church-info,
    .schedule-section {
        padding: 20px;
    }
    
    .schedule-card {
        padding: 25px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.church-info,
.schedule-section {
    animation: fadeInUp 0.8s ease-out;
}

.schedule-card {
    animation: fadeInUp 0.8s ease-out;
}

.schedule-card:nth-child(1) { animation-delay: 0.1s; }
.schedule-card:nth-child(2) { animation-delay: 0.2s; }
.schedule-card:nth-child(3) { animation-delay: 0.3s; }
.schedule-card:nth-child(4) { animation-delay: 0.4s; }