/*
* Igreja Assembléia de Deus Betel - Estilos Aprimorados
* Versão: 1.1
*/

/* =================== Modal Informativo =================== */
.info-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    align-items: center;
    justify-content: center;
}

.info-modal .modal-content {
    position: relative;
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

.info-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #444;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.info-modal .close-modal:hover {
    color: var(--primary-color);
}

.info-modal .modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.info-modal .modal-header h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin: 0;
    padding-right: 30px;
}

.info-modal .modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Estilos específicos para diferentes tipos de conteúdo modal */

/* Horários */
.schedule-details .schedule-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.schedule-details .schedule-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.schedule-details .day-time {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 5px;
}

.schedule-details .day {
    color: var(--secondary-color);
    font-size: 18px;
}

.schedule-details .time {
    color: var(--primary-color);
}

/* Visão e Ministérios */
.vision-details h4, 
.event-detail-description h4 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
    font-family: 'Montserrat', sans-serif;
}

.vision-details ul, 
.event-detail-description ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.vision-details ul li, 
.event-detail-description ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
}

/* Detalhes de Eventos */
.event-detail {
    display: flex;
    flex-direction: column;
}

.event-detail-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    max-height: 300px;
}

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

.event-detail-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    z-index: 1;
}

.event-detail-date .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.event-detail-date .month {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
}

.event-detail-category {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
}

.event-detail-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.event-detail-meta span {
    margin-right: 20px;
    color: #666;
}

.event-detail-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.event-detail-description {
    margin-bottom: 30px;
}

.event-detail-description p {
    margin-bottom: 15px;
}

.event-detail-share {
    margin-bottom: 25px;
}

.event-detail-share h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.social-share {
    display: flex;
}

.social-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition);
}

.social-share a.facebook-share {
    color: #3b5998;
}

.social-share a.twitter-share {
    color: #1da1f2;
}

.social-share a.whatsapp-share {
    color: #25d366;
}

.social-share a:hover {
    transform: translateY(-3px);
}

.event-detail-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.event-detail-buttons .btn {
    flex: 1;
    min-width: 150px;
}

/* Formulário de lembrete */
.reminder-form {
    margin-top: 15px;
    animation: fadeIn 0.3s ease;
}

.reminder-form form {
    display: flex;
    gap: 10px;
}

.reminder-form .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* =================== Notificações =================== */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #28a745;
}

.notification.info {
    border-left: 4px solid #17a2b8;
}

.notification.warning {
    border-left: 4px solid #ffc107;
}

.notification.error {
    border-left: 4px solid #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
}

.notification-content i {
    font-size: 20px;
    margin-right: 10px;
}

.notification-content i.fa-check-circle {
    color: #28a745;
}

.notification-content i.fa-info-circle {
    color: #17a2b8;
}

.notification-content i.fa-exclamation-circle {
    color: #ffc107;
}

.notification-content i.fa-times-circle {
    color: #dc3545;
}

.notification-content p {
    margin: 0;
    font-size: 14px;
}

.notification-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

/* =================== Animações =================== */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* =================== Media Queries =================== */
@media (min-width: 768px) {
    .event-detail {
        flex-direction: row;
        gap: 30px;
    }
    
    .event-detail-image {
        flex: 0 0 40%;
        margin-bottom: 0;
        height: 300px;
    }
    
    .event-detail-info {
        flex: 0 0 55%;
    }
}

@media (max-width: 767px) {
    .event-detail-buttons {
        flex-direction: column;
    }
    
    .social-share {
        justify-content: center;
    }
    
    .notification {
        left: 20px;
        right: 20px;
        transform: translateY(110%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}
/* Estilos para o Lightbox da Galeria */

/* Animação de zoom para a imagem do lightbox */
@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    transform: rotate(90deg);
    color: var(--primary-color);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border: 5px solid white;
    border-radius: 3px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.lightbox-content .image-title {
    color: white;
    padding: 15px;
    text-align: center;
    background: rgba(0,0,0,0.5);
    margin-top: 10px;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
}

/* Controles de navegação para lightbox múltiplo (futura implementação) */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox-nav button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav button:hover {
    background: var(--primary-color);
}

/* Animação para os novos itens ao carregar mais conteúdo */
@keyframes newItemFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-card.new-item,
.sermon-card.new-item,
.pastor-profile.new-item,
.gallery-item.new-item {
    animation: newItemFade 0.5s ease forwards;
}

/* Melhorias nos botões "Ver Mais/Ver Todos" */
.ver-mais-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ver-mais-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.ver-mais-btn:hover::before {
    left: 100%;
}

/* Contador de itens carregados */
.counter-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    padding: 2px 8px;
    font-size: 12px;
    margin-left: 5px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.counter-badge.show {
    opacity: 1;
    transform: scale(1);
}
/* 
 * Estilos Modificados para Vídeos de Testemunhos Compactos
 * Adicione estes estilos ao seu arquivo enhanced-styles.css
 */

/* Contêiner para os 2 vídeos de testemunhos compactos */
.testimonial-videos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Estilo para cada vídeo compacto */
.testimonial-video-compact {
    width: 250px; /* Tamanho reduzido */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-video-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Wrapper para a miniatura do vídeo */
.video-wrapper-compact {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
}

.video-wrapper-compact img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay para o botão de play */
.video-overlay-compact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.testimonial-video-compact:hover .video-overlay-compact {
    background: rgba(0, 0, 0, 0.5);
}

/* Botão de play menor */
.play-button-compact {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 16px;
    transform: scale(1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 2;
}

.testimonial-video-compact:hover .play-button-compact {
    transform: scale(1.1);
}

/* Informações do vídeo */
.testimonial-video-info-compact {
    padding: 12px;
    text-align: center;
    color: var(--light-color);
}

.testimonial-video-info-compact h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-video-info-compact p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

/* Modal de vídeo (mantido igual) */
.testimonial-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.testimonial-video-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

/* Conteúdo do modal */
.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    animation: zoomIn 0.3s ease;
}

/* Wrapper para vídeo responsivo */
.modal-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.modal-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Botão para fechar o modal */
.close-video-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--light-color);
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-video-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Título do vídeo no modal */
.video-modal-title {
    color: var(--light-color);
    text-align: center;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
}

/* Responsividade para tablets e dispositivos móveis */
@media (max-width: 767px) {
    .testimonial-videos-container {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-video-compact {
        width: 280px; /* Ligeiramente maior em dispositivos móveis */
    }
}

/* Animações */
@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* 
 * Estilos para Lightbox da Galeria
 * Adicione este código ao seu arquivo enhanced-styles.css
 */

/* Contentor principal do lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery-lightbox.show {
    display: flex;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Conteúdo do lightbox */
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

/* Contentor da imagem */
.lightbox-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

/* Imagem dentro do lightbox */
#lightboxImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease;
}

#lightboxImage.fade-out {
    opacity: 0;
}

/* Legenda da imagem */
.lightbox-caption {
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}

/* Botão de fechar */
.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    z-index: 10;
}

.close-lightbox:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Navegação do lightbox */
.lightbox-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 5;
}

.lightbox-prev,
.lightbox-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Contador de imagens */
.lightbox-counter {
    position: absolute;
    bottom: -30px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 14px;
}

/* Melhorias para os itens da galeria */
.gallery-item {
    cursor: pointer;
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Responsividade para dispositivos móveis */
@media screen and (max-width: 768px) {
    .lightbox-navigation {
        position: relative;
        margin-top: 15px;
        justify-content: center;
        gap: 20px;
    }
    
    #lightboxImage {
        max-height: 70vh;
    }
    
    .lightbox-caption {
        font-size: 16px;
    }
}

/* Efeito de zoom para o cursor */
.gallery-item:hover {
    cursor: zoom-in;
}
/* 
 * Estilos para Player de Áudio dos Sermões
 * Adicione este código ao seu arquivo enhanced-styles.css
 */

/* Ajustes para a seção de sermões */
.sermon-card {
    position: relative;
    transition: all 0.3s ease;
}

/* Destaque para o sermão em reprodução */
.sermon-card.playing {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--primary-color);
}

.sermon-card.playing .sermon-thumb::after {
    content: 'Em reprodução';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

/* Ajuste para o botão de play na miniatura */
.sermon-overlay {
    cursor: pointer;
}

.sermon-play {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    transform: scale(1);
}

.sermon-play:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

/* Ajustes para os links de download */
.sermon-links {
    display: flex;
    justify-content: flex-end;
}

.sermon-links a {
    width: 40px;
    height: 40px;
    background-color: var(--gray-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sermon-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Ocultar o elemento de áudio nativo */
.sermon-audio {
    display: none;
}

/* Player de áudio flutuante */
.floating-audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.floating-audio-player.show {
    transform: translateY(0);
}

.player-content {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    position: relative;
}

/* Informações do sermão em reprodução */
.now-playing {
    flex: 0 0 30%;
    overflow: hidden;
    padding-right: 10px;
}

.sermon-title {
    display: block;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sermon-pastor {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Controles do player */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex: 0 0 20%;
}

.audio-control {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.audio-control:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.play-pause {
    background-color: var(--primary-color);
    width: 45px;
    height: 45px;
}

.play-pause:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Barra de progresso */
.progress-container {
    flex: 1;
    margin: 0 20px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    margin-bottom: 5px;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    width: 0%;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Botão de fechar */
.close-player {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.close-player:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Responsividade para tablets e mobile */
@media screen and (max-width: 991px) {
    .player-content {
        flex-wrap: wrap;
        padding: 10px;
    }
    
    .now-playing {
        flex: 0 0 100%;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .player-controls {
        flex: 0 0 100%;
        margin-bottom: 10px;
    }
    
    .progress-container {
        flex: 0 0 100%;
        margin: 0 0 10px 0;
    }
    
    .close-player {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

@media screen and (max-width: 576px) {
    .sermon-card.playing .sermon-thumb::after {
        content: '▶';
        padding: 2px 8px;
    }
}

/*------------------------------- Carousel Container Styles *-------------------------*/
/* Carousel Container Styles */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 60px; /* Aumentado para dar mais espaço aos botões */
    margin-bottom: 60px;
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Carousel Track - MANTÉM TODOS EM UMA LINHA */
.carousel-track {
    display: flex;
    flex-wrap: nowrap; /* Garante que não haja quebra para uma nova linha */
    transition: transform 0.5s ease;
    gap: 20px;
    margin: 0;
    padding: 20px 0;
    width: max-content; /* Permite que a largura seja determinada pelo conteúdo */
}

/* Individual Slide */
.carousel-slide {
    flex: 0 0 250px; /* Largura fixa para cada card */
    max-width: 250px; /* Impede que os cards fiquem maiores */
    transition: all 0.3s ease;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 5px;
}

.next-btn {
    right: 5px;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Enhanced hover effect for pastor profiles in carousel */
.pastor-profile.carousel-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Animation for sliding effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-slide.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsividade - Ajustamos para manter o formato de linha única */
@media screen and (max-width: 1200px) {
    .carousel-slide {
        flex: 0 0 220px;
        max-width: 220px;
    }
}

@media screen and (max-width: 991px) {
    .carousel-slide {
        flex: 0 0 200px;
        max-width: 200px;
    }
}

@media screen and (max-width: 767px) {
    .carousel-container {
        padding: 0 40px; /* Reduzido para telas menores */
    }
    
    .carousel-slide {
        flex: 0 0 180px;
        max-width: 180px;
    }
}






/* Estilos completos para App e Rádio lado a lado */

/* Seção App - fundo claro */
.app-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

/* Ajustes do layout principal */
.app-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

/* Lado Esquerdo - App (Aumentado) */
.app-content-side {
    flex: 0 0 65%;
    padding: 30px;
    position: relative;
}

.app-content-side h2 {
    color: var(--secondary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* Layout flexível para mockup e descrição */
.app-content-flex {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    align-items: center;
}

/* Mockup do App à ESQUERDA */
.app-mockup {
    flex: 0 0 45%;
}

.app-screenshot {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    max-height: 550px;
}

/* Descrição do App e recursos à DIREITA */
.app-description {
    flex: 0 0 50%;
}

.app-description p {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Features App */
.app-features {
    margin: 25px 0;
}

.app-feature {
    display: flex;
    margin-bottom: 20px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.feature-text h4 {
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    font-size: 16px;
}

.feature-text p {
    margin-bottom: 0;
    font-size: 14px;
    color: #666;
}

/* Botão de download */
.app-download {
    margin-top: 25px;
}

.app-download h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.download-buttons {
    display: flex;
    gap: 15px;
}

.download-btn {
    display: inline-block;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
}

.download-btn img {
    height: 40px;
}

/* Lado Direito - Web Rádio (Diminuído) */
.web-radio-side {
    flex: 0 0 30%;
    padding: 20px;
    position: relative;
}

.web-radio-side h2 {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

/* Box do player de rádio */
.radio-player-box {
    background: linear-gradient(145deg, #1e3a58, #2d4f6c);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.radio-player-box h3 {
    font-size: 22px;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.radio-player-box p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* Círculo do logo de rádio com animação */
.radio-player-circle {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    /* Adiciona a animação de pulso ao círculo externo */
    animation: circleGlow 3s infinite;
}

/* Animação para o círculo pulsar */
@keyframes circleGlow {
    0% {
        box-shadow: 0 0 5px rgba(241, 90, 41, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(241, 90, 41, 0.7);
    }
    100% {
        box-shadow: 0 0 5px rgba(241, 90, 41, 0.3);
    }
}

/* Ondas de animação em torno do círculo */
.radio-player-circle::before,
.radio-player-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(241, 90, 41, 0.3);
    animation: waveAnimation 3s infinite;
}

.radio-player-circle::after {
    animation-delay: 1.5s;
}

@keyframes waveAnimation {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* Ajuste do logo dentro do círculo */
.radio-logo-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2; /* Garantir que fique acima das animações */
}

.radio-logo {
    width: 80%;
    height: auto;
}

/* Indicador de ao vivo */
.radio-status {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    padding: 4px 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #f15a29;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.live-text {
    font-size: 12px;
    font-weight: 600;
}

@keyframes pulse {
    0% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.2);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Controles de áudio */
.radio-controls {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.radio-btn {
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn {
    background-color: #f15a29;
    font-size: 18px;
}

.volume-btn {
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.radio-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(241, 90, 41, 0.4);
}

.play-btn:hover {
    background-color: #e04d1d;
}

.radio-btn:active {
    transform: scale(0.95);
}

/* Barra de informações da rádio */
.radio-info-bar {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 8px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 12px;
}

/* Responsividade */
@media screen and (max-width: 1200px) {
    .app-content-side {
        flex: 0 0 60%;
    }
    
    .web-radio-side {
        flex: 0 0 35%;
    }
}

@media screen and (max-width: 991px) {
    .app-content-side, .web-radio-side {
        flex: 0 0 100%;
    }
    
    .app-content-flex {
        flex-direction: row; /* Manter layout em tablets */
    }
    
    .web-radio-side {
        margin-top: 40px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 767px) {
    .app-content-side, .web-radio-side {
        padding: 15px 10px;
    }
    
    .app-content-flex {
        flex-direction: column; /* Em mobile, empilhar */
    }
    
    .app-mockup, .app-description {
        flex: 0 0 100%;
    }
    
    .app-mockup {
        margin: 0 auto 30px;
        text-align: center;
    }
    
    .app-screenshot {
        max-height: 400px;
    }
    
    .app-content-side h2, .web-radio-side h2 {
        font-size: 26px;
        text-align: center;
    }
}