/* CSS Base Customizado do Site Público */
:root {
    --primary-color: #0b2e59; /* Azul Católico */
    --secondary-color: #cfd8dc;
    --accent-color: #d4af37; /* Dourado */
    --text-dark: #333;
}
body {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
}
.navbar-custom {
    background-color: var(--primary-color) !important;
}
.navbar-custom .nav-link, .navbar-custom .navbar-brand {
    color: rgba(255, 255, 255, 0.85) !important;
}
.navbar-custom .nav-link.active, .navbar-custom .nav-link:hover {
    color: var(--accent-color) !important;
}
.hero-section {
    background: linear-gradient(rgba(11, 46, 89, 0.85), rgba(11, 46, 89, 0.7)), url('https://images.unsplash.com/photo-1548625361-ec4616216dd5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}
.shadow-text {
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.card-local {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.card-local:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}
.bg-light-blue { background-color: #f7f9fc; }

/* Timeline Moderna */
.timeline {
    position: relative;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
}
.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 80px;
}
.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--accent-color);
    transition: transform 0.3s ease;
}
.timeline-content:hover {
    transform: translateX(5px);
}

/* Premium Cards */
.card-premium {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 46, 89, 0.15) !important;
}
.card-premium .card-img-overlay {
    background: linear-gradient(to top, rgba(11, 46, 89, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.card-premium:hover .card-img-overlay {
    opacity: 1;
}

/* WhatsApp Floating */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.float-whatsapp:hover { color: #fff; background-color: #20b858; transform: scale(1.1); }
