/* Estilos personalizados para la página de inicio */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
}

.feature-card {
    transition: transform 0.3s ease;
    border: none;
    border-radius: 15px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Estilos para optgroups en selects */
select optgroup {
    font-weight: normal;
    color: #999;
    font-size: 0.9em;
}

/* Estilos para paginador con círculos */
.pagination-circle {
    gap: 8px;
}

.pagination-circle .page-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: 1px solid #dee2e6;
    color: #6c757d;
    background: #fff;
    transition: .2s;
}

.pagination-circle .page-link:hover {
    background: #f8f9fa;
    color: #0d6efd;
}

.pagination-circle .page-item.active .page-link {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.pagination-circle .page-item.disabled .page-link {
    opacity: .45;
    pointer-events: none;
}
