/* Estilos gerais */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Mapa Mundial */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* Ticker de Orações */
.ticker-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.ticker-label {
    font-weight: 600;
    margin-right: 1rem;
    color: #1e3c72;
}

.ticker-content {
    white-space: nowrap;
    overflow: hidden;
    animation: ticker 20s linear infinite;
}

/* Portais de Oração */
.portals-grid {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.portal-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 0.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 150px;
}

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

.portal-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.portal-status {
    font-size: 0.9rem;
    color: #666;
}

/* Calendário */
.fc {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.fc-timegrid-slot {
    height: 40px !important;
}

.fc-event {
    cursor: pointer;
    border-radius: 5px;
}

/* Animações */
@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsividade */
@media (max-width: 768px) {
    .portal-card {
        width: calc(50% - 1rem);
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .ticker-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .ticker-label {
        margin-bottom: 0.5rem;
    }
}
