/* static/css/main.css */
.search-highlight {
    background-color: #fffde7;
    padding: 0.1em 0.2em;
    border-radius: 3px;
}

.search-section {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}
/* Estilo para a página de detalhes do evento */
.event-header {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.event-image {
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.event-sidebar-card {
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.event-sidebar-card .card-header {
    border-radius: 0.375rem 0.375rem 0 0 !important;
}

.share-buttons .btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
/* Estilos para a página de contato */
.contact-form-card {
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border: none;
}

.contact-info-card {
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    border: none;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(44, 62, 80, 0.05);
    color: #2c3e50;
    font-size: 1.25rem;
}

.contact-social-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-social-icon:hover {
    transform: translateY(-3px);
    color: #1a252f !important;
}
