/* Estilos customizados para o site da igreja */

:root {
    --primary-color: #1e40af;
    --secondary-color: #f59e0b;
    --accent-color: #dc2626;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
}

/* Header Styles */
.header-section {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-links .social-link {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links .social-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Navigation Styles */
.navbar-dark .navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Carousel Styles */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-carousel .carousel-caption {
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    padding: 2rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Events Carousel */
.events-carousel .event-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 0 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.events-carousel .event-item:hover {
    transform: translateY(-5px);
}

.event-date {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.event-date .day {
    font-size: 1.5rem;
    line-height: 1;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* About Section */
.about-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.about-section h2 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 2rem;
}

/* Projects Carousel */
.projects-carousel .project-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 0 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.projects-carousel .project-item:hover {
    transform: translateY(-5px);
}

.project-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

/* Prayer Section */
.prayer-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.prayer-section .verse-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

.prayer-section .verse-text::first-letter {
    font-size: 3rem;
    font-weight: bold;
    float: left;
    line-height: 1;
    margin-right: 8px;
    margin-top: 4px;
}

.prayer-section .verse-reference {
    font-weight: bold;
    margin-top: 1rem;
}

.prayer-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Buttons */
.btn-custom {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-carousel .carousel-item img {
        height: 300px;
    }
    
    .hero-carousel .carousel-caption {
        padding: 1rem;
    }
    
    .event-date {
        width: 60px;
        height: 60px;
    }
    
    .event-date .day {
        font-size: 1.2rem;
    }
    
    .project-logo {
        width: 60px;
        height: 60px;
    }
    
    .prayer-section .verse-text::first-letter {
        font-size: 2rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Section Spacing */
.section-padding {
    padding: 4rem 0;
}

.section-title {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}


/* Estilos para a seção de vídeos */
.videos-grid .video-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.videos-grid .video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Estilos para a seção de localização */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    border-radius: 15px;
}

.map-placeholder {
    background: #f8f9fa;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
}

.location-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.location-info span{
    margin-left: 0px !important;
}

/* Estilos para a seção de contato */
.contact-section {
    background: var(--bg-light);
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
}

/* Botões de redes sociais */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.facebook:hover {
    background: #166fe5;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.youtube {
    background: #ff0000;
}

.social-btn.youtube:hover {
    background: #cc0000;
}

.social-btn i {
    margin-right: 0.5rem;
}

/* Logo da igreja */
.church-logo img {
    max-height: 120px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

/* Copyright bar */
.copyright-bar {
    background: var(--text-dark);
    color: white;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.copyright-bar a {
    color: var(--secondary-color);
    text-decoration: none;
}

.copyright-bar a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsividade para as novas seções */
@media (max-width: 768px) {
    .video-thumbnail img {
        height: 150px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-card {
        margin-bottom: 2rem;
    }
    
    .social-buttons {
        align-items: center;
    }
    
    .social-btn {
        width: 200px;
    }
    
    .location-info {
        margin-top: 2rem;
    }
    
    .map-container {
        margin-top: 2rem;
    }
}

