/* Estilos gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

a {
    color: #0d6efd;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #0a58ca;
    text-decoration: none;
}

/* Cards */
.card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

/* Botões */
.btn {
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Formulários */
.form-control, .form-select {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Navbar */
.navbar {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 0.75rem 1rem;
}

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

/* Links do menu: negrito e sublinhado no hover */
.navbar .nav-link {
    font-weight: 700;
    text-transform: uppercase;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

/* Estado ativo/selecionado do menu */
.navbar .nav-link.active,
.navbar .nav-link[aria-current="page"] {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

/* Dashboard cards */
.card-dashboard {
    border-left: 4px solid #0d6efd;
}

.card-dashboard .card-body {
    padding: 1.25rem;
}

.card-dashboard .card-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.card-dashboard .card-value {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* Tabelas */
.table {
    margin-bottom: 0;
}

.table thead th {
    border-top: none;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: #6c757d;
}

.table tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: 0.25rem;
}

/* Alertas */
.alert {
    border: none;
    border-radius: 0.375rem;
    padding: 1rem 1.25rem;
}

/* Indicação de campo obrigatório */
.required-asterisk {
    color: #dc3545; /* Bootstrap danger */
    margin-left: 0.25rem;
    font-weight: 700;
}

/* Página de login */
.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo img {
    max-width: 150px;
    height: auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .card-dashboard {
        margin-bottom: 1rem;
    }
    
    .table-responsive {
        border: none;
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

/* Utilitários */
.cursor-pointer {
    cursor: pointer;
}

/* Estilo para os cards de estatísticas no dashboard */
.border-left-primary {
    border-left: 4px solid #4e73df !important;
}

.border-left-success {
    border-left: 4px solid #1cc88a !important;
}

.border-left-info {
    border-left: 4px solid #36b9cc !important;
}

.border-left-warning {
    border-left: 4px solid #f6c23e !important;
}

/* Estilo para os ícones nos cards de estatísticas */
.text-gray-300 {
    color: #dddfeb !important;
    font-size: 2rem;
}

/* Estilo para o breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: #4e73df;
}

.breadcrumb-item.active {
    color: #5a5c69;
}

/* Estilo para os botões de ação nas tabelas */
.btn-action {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
    margin-right: 0.25rem;
}

/* Estilo para os modais */
.modal-content {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.15rem 0.5rem rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid #e3e6f0;
    padding: 1rem 1.5rem;
}

.modal-footer {
    border-top: 1px solid #e3e6f0;
    padding: 1rem 1.5rem;
}

/* Estilo para os tooltips */
.tooltip-inner {
    background-color: #4e73df;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, 
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #4e73df;
}

/* Estilo para os dropdowns */
.dropdown-menu {
    border: none;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    border-radius: 0.35rem;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: #3a3b45;
    transition: all 0.2s;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: #f8f9fc;
    color: #2e59d9;
}

.dropdown-divider {
    border-top: 1px solid #eaecf4;
    margin: 0.5rem 0;
}

/* Estilo para os badges de status */
.badge-success {
    background-color: #1cc88a;
}

.badge-warning {
    background-color: #f6c23e;
    color: #1f2d3d;
}

.badge-danger {
    background-color: #e74a3b;
}

.badge-info {
    background-color: #36b9cc;
}

/* Estilo para os formulários de filtro */
.filter-form {
    background-color: #f8f9fc;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 0.35rem;
    border: 1px solid #e3e6f0;
}

/* Estilo para os cards de resumo */
.summary-card {
    border-left: 4px solid #4e73df;
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Estilo para os ícones de ação rápida */
.quick-action-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    color: #fff;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

/* Estilo para os cards de gráficos */
.chart-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #e3e6f0;
    border-radius: 0.35rem;
}

.chart-card .card-header {
    background-color: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
    padding: 1rem 1.25rem;
    margin-bottom: 0;
    background-color: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
}

.chart-card .card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}

/* Estilo para os tootips personalizados */
.custom-tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.custom-tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #4e73df;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
    line-height: 1.4;
}

.custom-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Estilo para os cards de perfil */
.profile-card {
    position: relative;
    overflow: hidden;
}

.profile-cover {
    height: 120px;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    position: relative;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid #fff;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    padding-top: 70px;
    text-align: center;
}

/* Estilo para os cards de progresso */
.progress-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #e3e6f0;
    border-radius: 0.35rem;
    margin-bottom: 1.5rem;
}

.progress-sm {
    height: 0.5rem;
}

/* Estilo para as abas de navegação */
.nav-tabs .nav-link {
    color: #6e707e;
    border: 1px solid transparent;
    border-top-left-radius: 0.35rem;
    border-top-right-radius: 0.35rem;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
}

.nav-tabs .nav-link.active {
    color: #4e73df;
    background-color: #fff;
    border-color: #dddfeb #dddfeb #fff;
}

/* Estilo para os cards de métricas */
.metric-card {
    border-left: 4px solid #4e73df;
    transition: all 0.3s ease;
}

.metric-card .card-body {
    padding: 1.25rem;
}

.metric-card .metric-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.metric-card .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.metric-card .metric-change {
    font-size: 0.8rem;
    color: #1cc88a;
}

.metric-card .metric-change.negative {
    color: #e74a3b;
}

/* Estilo para os cards de atividade recente */
.activity-item {
    position: relative;
    padding: 1rem 1.5rem 1rem 3rem;
    border-left: 1px solid #e3e6f0;
}

.activity-item:first-child {
    padding-top: 0;
}

.activity-item:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
}

.activity-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 1.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4e73df;
    border: 2px solid #fff;
}

.activity-time {
    font-size: 0.8rem;
    color: #b7b9cc;
}

/* Estilo para os cards de status */
.status-card {
    position: relative;
    overflow: hidden;
    padding: 1.25rem;
    border-radius: 0.35rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.status-card .status-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5rem;
    opacity: 0.2;
}

.status-card .status-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.status-card .status-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.status-card.primary {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
}

.status-card.success {
    background: linear-gradient(135deg, #1cc88a 0%, #13855c 100%);
}

.status-card.info {
    background: linear-gradient(135deg, #36b9cc 0%, #258391 100%);
}

.status-card.warning {
    background: linear-gradient(135deg, #f6c23e 0%, #dda20a 100%);
}

.status-card.danger {
    background: linear-gradient(135deg, #e74a3b 0%, #be2617 100%);
}

/* Estilo para os cards de progresso circular */
.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.progress-circle canvas {
    position: absolute;
    top: 0;
    left: 0;
}

.progress-circle .progress-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 1.5rem;
    color: #5a5c69;
}

/* Estilo para os cards de mensagem */
.message-card {
    position: relative;
    padding: 1.25rem;
    border-left: 4px solid #4e73df;
    background-color: #f8f9fc;
    margin-bottom: 1.5rem;
    border-radius: 0.35rem;
}

.message-card .message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.message-card .message-title {
    font-weight: 600;
    margin: 0;
}

.message-card .message-time {
    font-size: 0.8rem;
    color: #6c757d;
}

.message-card .message-content {
    color: #5a5c69;
    margin-bottom: 0;
}

/* Estilo para os cards de perfil de usuário */
.user-profile-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    margin-bottom: 1.5rem;
}

.user-profile-card .user-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 5px solid #f8f9fc;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.user-profile-card .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-profile-card .user-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.user-profile-card .user-title {
    color: #6c757d;
    margin-bottom: 1rem;
}

.user-profile-card .user-details {
    margin: 1.5rem 0;
    text-align: left;
}

.user-profile-card .user-detail {
    display: flex;
    margin-bottom: 0.75rem;
}

.user-profile-card .user-detail i {
    width: 24px;
    text-align: center;
    margin-right: 0.5rem;
    color: #4e73df;
}

/* Estilo para os cards de estatísticas */
.stats-card {
    position: relative;
    padding: 1.25rem;
    border-radius: 0.35rem;
    background-color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.stats-card .stats-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2rem;
    opacity: 0.3;
}

.stats-card .stats-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.stats-card .stats-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5a5c69;
    margin-bottom: 0.25rem;
}

.stats-card .stats-change {
    font-size: 0.8rem;
}

.stats-card .stats-change.positive {
    color: #1cc88a;
}

.stats-card .stats-change.negative {
    color: #e74a3b;
}

/* Estilo para os cards de progresso de meta */
.goal-card {
    position: relative;
    padding: 1.25rem;
    border-radius: 0.35rem;
    background-color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
}

.goal-card .goal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.goal-card .goal-title {
    font-weight: 600;
    margin: 0;
}

.goal-card .goal-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4e73df;
}

.goal-card .progress {
    height: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: #eaecf4;
    border-radius: 0.25rem;
    overflow: hidden;
}

.goal-card .progress-bar {
    background-color: #4e73df;
}

.goal-card .goal-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6c757d;
}

/* Estilo para os cards de notificação */
.notification-card {
    position: relative;
    padding: 1.25rem;
    border-left: 4px solid #4e73df;
    background-color: #fff;
    margin-bottom: 1rem;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    transition: all 0.3s ease;
}

.notification-card:hover {
    transform: translateX(5px);
}

.notification-card .notification-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.notification-card .notification-title {
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
}

.notification-card .notification-time {
    font-size: 0.75rem;
    color: #6c757d;
}

.notification-card .notification-content {
    color: #5a5c69;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.notification-card.unread {
    background-color: #f8f9fc;
    border-left-color: #4e73df;
}

.notification-card.success {
    border-left-color: #1cc88a;
}

.notification-card.warning {
    border-left-color: #f6c23e;
}

.notification-card.danger {
    border-left-color: #e74a3b;
}

/* Estilo para os cards de perfil de equipe */
.team-card {
    text-align: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.team-card .team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 5px solid #f8f9fc;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.team-card .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card .team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-card .team-title {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-card .team-social {
    margin-top: 1rem;
}

.team-card .team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8f9fc;
    color: #6c757d;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.team-card .team-social a:hover {
    background-color: #4e73df;
    color: #fff;
    text-decoration: none;
}

/* Estilo para os cards de preço */
.pricing-card {
    text-align: center;
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.pricing-card .pricing-header {
    padding: 1.5rem;
    background-color: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
}

.pricing-card .pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.pricing-card .pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4e73df;
    margin: 0;
}

.pricing-card .pricing-period {
    font-size: 0.9rem;
    color: #6c757d;
}

.pricing-card .pricing-features {
    padding: 1.5rem;
    margin: 0;
}

.pricing-card .pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eaecf4;
    list-style: none;
}

.pricing-card .pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .pricing-footer {
    padding: 1.5rem;
    background-color: #f8f9fc;
    border-top: 1px solid #e3e6f0;
}

.pricing-card.featured {
    border: 2px solid #4e73df;
    position: relative;
    overflow: visible;
}

.pricing-card.featured .featured-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #f6c23e;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    box-shadow: 0 0.15rem 0.5rem 0 rgba(0, 0, 0, 0.1);
}

/* Estilo para os cards de depoimento */
.testimonial-card {
    position: relative;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
}

.testimonial-card .testimonial-content {
    position: relative;
    padding: 0 0 1rem 1.5rem;
    border-left: 3px solid #4e73df;
    margin-bottom: 1rem;
    font-style: italic;
    color: #5a5c69;
}

.testimonial-card .testimonial-content::before {
    content: '"\201C"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 3rem;
    color: #e3e6f0;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-card .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-card .testimonial-author-info h6 {
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.testimonial-card .testimonial-author-info p {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
}

/* Estilo para os cards de blog */
.blog-card {
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.blog-card .blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card .blog-content {
    padding: 1.5rem;
}

.blog-card .blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #f8f9fc;
    color: #4e73df;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card .blog-category:hover {
    background-color: #4e73df;
    color: #fff;
}

.blog-card .blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.blog-card .blog-title a {
    color: #5a5c69;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card .blog-title a:hover {
    color: #4e73df;
}

.blog-card .blog-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.blog-card .blog-meta span {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.blog-card .blog-meta i {
    margin-right: 0.25rem;
}

.blog-card .blog-excerpt {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.blog-card .blog-read-more {
    font-weight: 600;
    color: #4e73df;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card .blog-read-more:hover {
    color: #224abe;
    text-decoration: none;
}

/* Estilo para os cards de recurso */
.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.feature-card .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f8f9fc;
    color: #4e73df;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: #4e73df;
    color: #fff;
    transform: scale(1.1);
}

.feature-card .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: #5a5c69;
}

.feature-card .feature-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.feature-card .feature-link {
    font-weight: 600;
    color: #4e73df;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-card .feature-link:hover {
    color: #224abe;
    text-decoration: none;
}

/* Estilo para os cards de contagem regressiva */
.countdown-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    border-radius: 0.35rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.countdown-card .countdown-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
}

.countdown-card .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.countdown-card .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-card .countdown-value {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.countdown-card .countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.countdown-card .countdown-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Estilo para os cards de vídeo */
.video-card {
    position: relative;
    border-radius: 0.35rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
}

.video-card .video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

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

.video-card .play-button:hover {
    background-color: #4e73df;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card .video-content {
    padding: 1.5rem;
    background-color: #fff;
}

.video-card .video-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #5a5c69;
}

.video-card .video-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0;
}

.video-card .video-meta span {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.video-card .video-meta i {
    margin-right: 0.25rem;
}

/* Estilo para os cards de áudio */
.audio-card {
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.audio-card .audio-cover {
    height: 200px;
    background-color: #f8f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4e73df;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.audio-card .audio-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.audio-card .audio-player {
    padding: 1.5rem;
    background-color: #fff;
}

.audio-card .audio-info {
    margin-bottom: 1rem;
}

.audio-card .audio-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: #5a5c69;
}

.audio-card .audio-artist {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.audio-card .progress {
    height: 5px;
    background-color: #eaecf4;
    margin: 1rem 0;
    border-radius: 2.5px;
    overflow: hidden;
}

.audio-card .progress-bar {
    background-color: #4e73df;
}

.audio-card .audio-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.audio-card .audio-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.audio-card .control-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fc;
    border: none;
    color: #5a5c69;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.audio-card .control-button:hover {
    background-color: #4e73df;
    color: #fff;
}

.audio-card .play-button {
    width: 50px;
    height: 50px;
    background-color: #4e73df;
    color: #fff;
}

.audio-card .play-button:hover {
    background-color: #224abe;
}

/* Estilo para os cards de produto */
.product-card {
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.product-card .product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #e74a3b;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    z-index: 1;
}

.product-card .product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-wishlist {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a5c69;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.product-card .product-wishlist:hover {
    background-color: #4e73df;
    color: #fff;
}

.product-card .product-content {
    padding: 1.5rem;
}

.product-card .product-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4e73df;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-card .product-category:hover {
    color: #224abe;
    text-decoration: none;
}

.product-card .product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.product-card .product-title a {
    color: #5a5c69;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-card .product-title a:hover {
    color: #4e73df;
    text-decoration: none;
}

.product-card .product-rating {
    color: #f6c23e;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.product-card .product-rating .text-muted {
    color: #b7b9cc !important;
    margin-left: 0.5rem;
}

.product-card .product-price {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.product-card .current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4e73df;
    margin-right: 0.75rem;
}

.product-card .original-price {
    font-size: 0.9rem;
    color: #b7b9cc;
    text-decoration: line-through;
}

.product-card .discount {
    display: inline-block;
    background-color: #f8f9fc;
    color: #4e73df;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}

.product-card .product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-card .btn-add-to-cart {
    flex: 1;
    background-color: #4e73df;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .btn-add-to-cart i {
    margin-right: 0.5rem;
}

.product-card .btn-add-to-cart:hover {
    background-color: #224abe;
    color: #fff;
}

.product-card .btn-wishlist {
    width: 40px;
    height: 40px;
    border-radius: 0.25rem;
    background-color: #f8f9fc;
    border: 1px solid #e3e6f0;
    color: #5a5c69;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-card .btn-wishlist:hover {
    background-color: #4e73df;
    color: #fff;
    border-color: #4e73df;
}

/* Estilo para os cards de depoimento de cliente */
.testimonial-card-2 {
    position: relative;
    padding: 2rem;
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
}

.testimonial-card-2 .testimonial-rating {
    color: #f6c23e;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card-2 .testimonial-content {
    font-style: italic;
    color: #5a5c69;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-card-2 .testimonial-content::before {
    content: '"\201C"';
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 3rem;
    color: #e3e6f0;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card-2 .testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-card-2 .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-card-2 .testimonial-author-info h6 {
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: #5a5c69;
}

.testimonial-card-2 .testimonial-author-info p {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
}

/* Estilo para os cards de fatos em destaque */n.fact-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.fact-card .fact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f8f9fc;
    color: #4e73df;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.fact-card:hover .fact-icon {
    background-color: #4e73df;
    color: #fff;
    transform: scale(1.1);
}

.fact-card .fact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4e73df;
    margin: 0 0 0.5rem;
    line-height: 1;
}

.fact-card .fact-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5a5c69;
    margin: 0;
}

/* Estilo para os cards de preço alternativo */
.pricing-card-2 {
    text-align: center;
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.pricing-card-2 .pricing-header {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-card-2 .pricing-popular {
    position: absolute;
    top: 1rem;
    right: -2.5rem;
    background-color: #f6c23e;
    color: #1f2d3d;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 2.5rem;
    transform: rotate(45deg);
}

.pricing-card-2 .pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card-2 .pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1;
}

.pricing-card-2 .pricing-period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-card-2 .pricing-features {
    padding: 1.5rem;
    margin: 0;
    border-bottom: 1px solid #eaecf4;
}

.pricing-card-2 .pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fc;
    list-style: none;
}

.pricing-card-2 .pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card-2 .pricing-footer {
    padding: 1.5rem;
}

.pricing-card-2 .btn-pricing {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #4e73df;
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.pricing-card-2 .btn-pricing:hover {
    background-color: #224abe;
    color: #fff;
    transform: translateY(-2px);
}

/* Estilo para os cards de depoimento em destaque */
.testimonial-card-3 {
    position: relative;
    padding: 2rem;
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-card-3 .testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 5px solid #f8f9fc;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.testimonial-card-3 .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card-3 .testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #5a5c69;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-card-3 .testimonial-quote::before,
.testimonial-card-3 .testimonial-quote::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 3rem;
    color: #e3e6f0;
    position: absolute;
    line-height: 1;
}

.testimonial-card-3 .testimonial-quote::before {
    top: -10px;
    left: -15px;
}

.testimonial-card-3 .testimonial-quote::after {
    bottom: -30px;
    right: -15px;
}

.testimonial-card-3 .testimonial-author {
    margin-top: 2rem;
}

.testimonial-card-3 .testimonial-author h6 {
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: #5a5c69;
}

.testimonial-card-3 .testimonial-author p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-card-3 .testimonial-rating {
    color: #f6c23e;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Estilo para os cards de equipe em destaque */
.team-card-2 {
    text-align: center;
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.team-card-2 .team-cover {
    height: 120px;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    position: relative;
}

.team-card-2 .team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid #fff;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.team-card-2 .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-2 .team-content {
    padding: 5rem 1.5rem 2rem;
}

.team-card-2 .team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: #5a5c69;
}

.team-card-2 .team-position {
    color: #4e73df;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-card-2 .team-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.team-card-2 .team-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.team-card-2 .team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f8f9fc;
    color: #5a5c69;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-card-2 .team-social a:hover {
    background-color: #4e73df;
    color: #fff;
    transform: translateY(-3px);
}

.team-card-2 .team-contact {
    padding: 1rem;
    background-color: #f8f9fc;
    border-top: 1px solid #eaecf4;
}

.team-card-2 .team-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #5a5c69;
}

.team-card-2 .team-contact-item:last-child {
    margin-bottom: 0;
}

.team-card-2 .team-contact-item i {
    width: 20px;
    color: #4e73df;
    margin-right: 0.5rem;
}

/* Estilo para os cards de portfólio */
.portfolio-card {
    position: relative;
    border-radius: 0.35rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.portfolio-card .portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-card .portfolio-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-card .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(78, 115, 223, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 1.5rem;
    text-align: center;
    color: #fff;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card .portfolio-overlay h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.portfolio-card .portfolio-overlay p {
    font-size: 0.9rem;
    margin: 0 0 1rem;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
    opacity: 0;
}

.portfolio-card .portfolio-overlay .btn {
    transform: translateY(20px);
    transition: all 0.3s ease 0.3s;
    opacity: 0;
}

.portfolio-card:hover .portfolio-overlay h4,
.portfolio-card:hover .portfolio-overlay p,
.portfolio-card:hover .portfolio-overlay .btn {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-card .portfolio-caption {
    padding: 1.25rem;
    background-color: #fff;
}

.portfolio-card .portfolio-category {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4e73df;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.portfolio-card .portfolio-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.portfolio-card .portfolio-title a {
    color: #5a5c69;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-card .portfolio-title a:hover {
    color: #4e73df;
    text-decoration: none;
}

/* Estilo para os cards de estatísticas em destaque */
.stats-card-2 {
    position: relative;
    padding: 1.5rem;
    border-radius: 0.35rem;
    color: #fff;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(0, 0, 0, 0.1);
}

.stats-card-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.stats-card-2 .stats-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    opacity: 0.2;
    z-index: 1;
}

.stats-card-2 .stats-content {
    position: relative;
    z-index: 2;
}

.stats-card-2 .stats-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.5rem;
    opacity: 0.9;
}

.stats-card-2 .stats-value {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1;
}

.stats-card-2 .stats-change {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.stats-card-2 .stats-change i {
    margin-right: 0.25rem;
}

.stats-card-2.primary {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
}

.stats-card-2.success {
    background: linear-gradient(135deg, #1cc88a 0%, #13855c 100%);
}

.stats-card-2.info {
    background: linear-gradient(135deg, #36b9cc 0%, #258391 100%);
}

.stats-card-2.warning {
    background: linear-gradient(135deg, #f6c23e 0%, #dda20a 100%);
}

.stats-card-2.danger {
    background: linear-gradient(135deg, #e74a3b 0%, #be2617 100%);
}

.stats-card-2.secondary {
    background: linear-gradient(135deg, #858796 0%, #60616f 100%);
}

.stats-card-2.dark {
    background: linear-gradient(135deg, #5a5c69 0%, #3a3b45 100%);
}

/* Estilo para os cards de blog em destaque */
.blog-card-2 {
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.blog-card-2 .blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-2 .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-2:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card-2 .blog-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #4e73df;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.blog-card-2 .blog-date span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

.blog-card-2 .blog-content {
    padding: 1.5rem;
}

.blog-card-2 .blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.blog-card-2 .blog-meta a {
    color: #4e73df;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-2 .blog-meta a:hover {
    color: #224abe;
    text-decoration: none;
}

.blog-card-2 .blog-meta span {
    margin: 0 0.5rem;
    color: #dddfeb;
}

.blog-card-2 .blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.blog-card-2 .blog-title a {
    color: #5a5c69;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-2 .blog-title a:hover {
    color: #4e73df;
    text-decoration: none;
}

.blog-card-2 .blog-excerpt {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.blog-card-2 .blog-read-more {
    font-weight: 600;
    color: #4e73df;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.blog-card-2 .blog-read-more i {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.blog-card-2 .blog-read-more:hover {
    color: #224abe;
    text-decoration: none;
}

.blog-card-2 .blog-read-more:hover i {
    transform: translateX(3px);
}

/* Estilo para os cards de depoimento em destaque */
.testimonial-card-4 {
    position: relative;
    padding: 2rem;
    background-color: #fff;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card-4:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.testimonial-card-4 .testimonial-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f8f9fc;
    color: #4e73df;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card-4:hover .testimonial-icon {
    background-color: #4e73df;
    color: #fff;
    transform: rotateY(180deg);
}

.testimonial-card-4 .testimonial-content {
    font-style: italic;
    color: #5a5c69;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 1.5rem;
}

.testimonial-card-4 .testimonial-content::before,
.testimonial-card-4 .testimonial-content::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 3rem;
    color: #e3e6f0;
    position: absolute;
    line-height: 1;
}

.testimonial-card-4 .testimonial-content::before {
    top: -15px;
    left: 0;
}

.testimonial-card-4 .testimonial-content::after {
    bottom: -30px;
    right: 0;
}

.testimonial-card-4 .testimonial-author {
    margin-top: 1.5rem;
}

.testimonial-card-4 .testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid #f8f9fc;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    object-fit: cover;
}

.testimonial-card-4 .testimonial-author h6 {
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: #5a5c69;
}

.testimonial-card-4 .testimonial-author p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-card-4 .testimonial-rating {
    color: #f6c23e;
    font-size: 1rem;
    margin-top: 0.5rem;
}
